Aasq GAMP Figures (Version 2)

Copyright (c) 2016-2017, Christian Schou Oxvig, Thomas Arildsen, and Torben Larsen
All rights reserved.

This is an updated version of the "Aasq GAMP Figures.ipynb" notebook available at http://dx.doi.org/10.5278/240710282. It has been updated in connection with a revision of the paper "Entrywise Squared Transforms for High Dimensional Signal Reconstruction via Generalized Approximate Message Passing" which is part of the thesis "Algorithms for Reconstruction of Undersampled Atomic Force Microscopy Images" available at http://dx.doi.org/10.5278/vbn.phd.engsci.00158. The notebook corresponding to the version of the paper which is part of the thesis is the original "Aasq GAMP Figures.ipynb" notebook.

This notebook shows figures detailing noiseless emperical phase transition curves for various Generalized Approximate Message Passing (GAMP) algorithms. The figures are based on the dataset "Generalized Approximate Message Passing Practical 2D Phase Transition Simulations Dataset 2" by Christian Schou Oxvig, Thomas Arildsen, and Torben Larsen licensed under CC BY 4.0 (http://creativecommons.org/licenses/by/4.0/). The full dataset along with its license conditions is available at https://dx.doi.org/10.5281/zenodo.574258.

Furthermore, parts of the results from "Replication of certain details from J. P. Vila and P. Schniter: "Expectation-Maximization Bernoulli-Gaussian Approximate Message Passing"" by Thomas Arildsen licensed under the BSD 2-Clause license are used in Figure 1. The full deposition along with its license conditions is available at https://doi.org/10.5281/zenodo.160700.

In [1]:
%matplotlib inline

from __future__ import division
import itertools

import cycler
import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np
import scipy.io
import tables as tb

import magni

mpl.style.use('ggplot')
fig_size = mpl.rcParams['figure.figsize']
cb3 = magni.utils.plotting._ColourCollection(
    {'PuOr': ((230, 97, 1), (253, 184, 99), (94, 60, 153))})
cb5 = magni.utils.plotting._ColourCollection(
    {'BuYlRd': ((44, 123, 182), (171, 217, 233), (255, 255, 191), (253, 174, 97), (215, 25, 28))})
color_cycle = cycler.cycler('color', cb3['PuOr'])
style_cycle_errorbar = cycler.cycler('ls', magni.utils.plotting.linestyles[:2])
magni.utils.plotting.setup_matplotlib({'figure': {'dpi': 800, 'figsize': [fs * 2 for fs in fig_size]},
                                       'axes': {'prop_cycle': color_cycle * style_cycle_errorbar},
                                       'grid': {'alpha': 0.25}})
<matplotlib.figure.Figure at 0x7f90b82e5cf8>
In [2]:
#Monkey Patching of Phase Transition plot function to workaround Matplotlib 2.0.0 bug
magni_170_pt_plot = magni.cs.phase_transition.plotting.plot_phase_transitions
def matplotlib_200_mpatched_pt_plot(*args, **kwargs):
    magni_170_pt_plot(*args, **kwargs)
    linestyles = style_cycle_errorbar.by_key()['ls']
    
    if len(style_cycle_errorbar) == 1:
        pass
    
    elif len(style_cycle_errorbar) == 2:
        for line in plt.gcf().gca().axes.lines[1::2]:
            # Manually set linestyle for Matplotlib 2.0.0 errorbar function
            # See bug report: https://github.com/matplotlib/matplotlib/issues/7074
            if line.get_marker() == 'None':
                line.set_linestyle(linestyles[1])
     
    elif len(style_cycle_errorbar) == 3:
        for line in plt.gcf().gca().axes.lines[1::3]:
            # Manually set linestyle for Matplotlib 2.0.0 errorbar function
            # See bug report: https://github.com/matplotlib/matplotlib/issues/7074
            if line.get_marker() == 'None':
                line.set_linestyle(linestyles[1])

        for line in plt.gcf().gca().axes.lines[2::3]:
            # Manually set linestyle for Matplotlib 2.0.0 errorbar function
            # See bug report: https://github.com/matplotlib/matplotlib/issues/7074
            if line.get_marker() == 'None':
                line.set_linestyle(linestyles[2])
    
    else:
        raise ValueError('Unable to monkeypatch errorbar with more than 3 linestyles.')
        
magni.cs.phase_transition.plotting.plot_phase_transitions = matplotlib_200_mpatched_pt_plot

Data paths

In [3]:
# Paths to "gamp_practical_2d_phase_transitions_ID_[0-4]_of_5.hdf5" from https://dx.doi.org/10.5281/zenodo.574258.
# File                                                MD5SUM                            SHA256SUM
# gamp_practical_2d_phase_transitions_ID_0_of_5.hdf5  3eadb9c6840b1a857097c49547fa0675  18ba9a8647c9af9555aaab6e6bd5ee6adbd4f641ef98760f53d9e0fa272faa78
# gamp_practical_2d_phase_transitions_ID_1_of_5.hdf5  14dfff08e652fca19b8b185cfb73155d  d422a42e38fb9cf38a64123e9e401d7202933089812b507bec8bc03239b91978 
# gamp_practical_2d_phase_transitions_ID_2_of_5.hdf5  a112c9483eab9b8cbb52b11fac5ac7ff  76f3e28eabf1d10b47e87c707bac3ba738591ed35dd8c329ec47a44ccb36df1f
# gamp_practical_2d_phase_transitions_ID_3_of_5.hdf5  9fbeb6754c948d21cf44c40addb079e7  5c95f26cbe32c79543b33730648d28312fc9a7d1d706967f1108c63a6db448a7
# gamp_practical_2d_phase_transitions_ID_4_of_5.hdf5  f7f929ea747b0635d55654592b69524d  e21d3c10ba0d7fae3e3dde938964434a6ae5f9087dc199248519800b8b672ea8
hdf5_database_paths = ['gamp_practical_2d_phase_transitions_ID_0_of_5.hdf5',
                       'gamp_practical_2d_phase_transitions_ID_1_of_5.hdf5',
                       'gamp_practical_2d_phase_transitions_ID_2_of_5.hdf5',
                       'gamp_practical_2d_phase_transitions_ID_3_of_5.hdf5',
                       'gamp_practical_2d_phase_transitions_ID_4_of_5.hdf5',]


# Path to "vila2011_results_old_not_unif.mat" from https://doi.org/10.1109/ACSSC.2011.6190117
# MD5SUM: 2cf3713c31ddb69de84f3fc5eb3fe94b
# SHA256SUM: a7e6361a31099fa9abb7cb669f97c9ac1a3dddcbba23a8fafb89f95ffd19af6d
vila2011_reference_path = 'vila2011_results_old_not_unif.mat'

algorithm_names = {'GAMPFullwnBG_USE': 'USE for BG GAMP using $|\mathbf{A}|^{\\circ 2}$',
                   'GAMPFullwnBG_RandomDCT2D': 'SEM for BG GAMP using $|\mathbf{A}|^{\\circ 2}$',
                   'GAMPFullwnBG_EX3D': 'EX3D for BG GAMP using $|\mathbf{A}|^{\\circ 2}$',
                   'GAMPSAKrzaFrobwnBG_USE': 'USE for BG GAMP using $||\mathbf{A}||_F^2$ SA',
                   'GAMPSAKrzaFrobwnBG_RandomDCT2D': 'SEM for BG GAMP using $||\mathbf{A}||_F^2$ SA',
                   'GAMPSAKrzaFrobwnBG_EX3D': 'EX3D for BG GAMP using $||\mathbf{A}||_F^2$ SA'}

mismatches = [str(x).replace('.', 'd') + '_' for x in [0.75, 0.8, 0.85, 0.9, 0.95, 1.0, 1.05, 1.1, 1.15, 1.20, 1.5, 2.0, 3.0]]

Load data

In [4]:
skips = ['annotations', 'chases', 'fileset', 'gamp_pt_tools', 'parameter_values']

pt_curves = {}
pt_dists = {}
pt_times = {}
pt_norms = {}
pt_mses = {}
pt_percentiles = {}

for hdf5_database_path in hdf5_database_paths:
    with tb.File(hdf5_database_path, mode='r') as h5_file:
        for group in h5_file.walk_groups('/'):
            label = group._v_name
            if any([skip in label for skip in skips]) or group is h5_file.root:
                continue

            pt_dists[label] = h5_file.get_node('/' + '/'.join([label, 'dist'])).read()
            pt_times[label] = h5_file.get_node('/' + '/'.join([label, 'time'])).read()
            pt_norms[label] = h5_file.get_node('/' + '/'.join([label, 'norm'])).read()
            pt_mses[label] = h5_file.get_node('/' + '/'.join([label, 'mse'])).read()
            pt_percentiles[label] = h5_file.get_node('/' + '/'.join([label, 'phase_transition_percentiles'])).read()
            pt_curves[label] = magni.cs.phase_transition.io.load_phase_transition(hdf5_database_path, label=label)

Figure 1

All problem suites with genie knowledge of true signal prior and sum approximation constant

In [5]:
select_criterions = ['BG', 'gaussian', 'genie', mismatches[5]]
fig_1_pt_curves = []

for curve_label, pt in sorted(pt_curves.items()):
    if all([select_criterion in curve_label for select_criterion in select_criterions]):
        fig_1_pt_curves.append(
            {'delta': pt[0],
             'rho': pt[1],
             'yerr': np.vstack([pt_percentiles[curve_label][0, :], pt_percentiles[curve_label][3, :]]),  # 90/10 errorbars
             'label': algorithm_names['_'.join([curve_label.split('_')[k] for k in [0, 1]])]})

# Sort curves for display
fig_1_pt_curves = sorted(fig_1_pt_curves, key=lambda t: t['label'].replace('$|\mathbf{A}|^{\\circ 2}', '$$'))
        
# Reference markers
vila_2011_reference_data = scipy.io.loadmat(vila2011_reference_path)
vila_2011_reference_pt_curves = [
    {'delta': vila_2011_reference_data['delta_values'].ravel(),
     'rho': vila_2011_reference_data['transition_rho_values_EMBGAMP'].ravel(),
     'label': 'EM-BG-GAMP (USE)',
     'style': {'color': (0.99, 0.68, 0.38), 'marker': '*', 'linestyle':'None', 'ms': 12, 'zorder': 10, 'color': '#b2abd2'}}
]

# Plot everything
magni.cs.phase_transition.plotting.plot_phase_transitions(
    fig_1_pt_curves, plot_l1=True, errorevery=2, reference_curves=vila_2011_reference_pt_curves)

plt.gcf().gca().legend(loc='upper left')
plt.gcf().gca().get_legend().get_frame().set_alpha(0)
handles, labels = plt.gcf().gca().axes.get_legend_handles_labels()

plt.savefig('fig1.pdf')
_ = ! pdfcrop 'fig1.pdf'

plt.show()

Figure 2

All problem suites with genie knowledge of true signal prior but mismatched sum approximation constant

In [6]:
select_criterions = ['BG', 'gaussian', 'vilatruncate']
select_mismatches = [mismatches[k] for k in [2, 4]]
fig_2_pt_curves = []

for curve_label, pt in sorted(pt_curves.items()):
    if (all([select_criterion in curve_label for select_criterion in select_criterions]) and
        ('KrzaFrob' in curve_label and any([select_mismatch in curve_label for select_mismatch in select_mismatches])
         or 'Full' in curve_label)):
        fig_2_pt_curves.append(
            {'delta': pt[0],
             'rho': pt[1],
             'yerr': np.vstack([pt_percentiles[curve_label][0, :], pt_percentiles[curve_label][3, :]]),  # 90/10 errorbars
             'label': algorithm_names['_'.join([curve_label.split('_')[k] for k in [0, 1]])].replace(
                 '$||\\mathbf{A}||_F^2$', '${}\\cdot||\\mathbf{{A}}||_F^2$'.format(
                     float(curve_label.split('_')[5].replace('d', '.'))))})

# Sort curves for display
fig_2_pt_curves = sorted(fig_2_pt_curves, key=lambda t: t['label'].replace('$|\mathbf{A}|^{\\circ 2}', '$$'))
fig_2_pt_curves = [fig_2_pt_curves[k] for k in [0, 2, 1, 3, 5, 4, 6, 8, 7]]
        
# Reference markers
vila_2011_reference_data = scipy.io.loadmat(vila2011_reference_path)
vila_2011_reference_pt_curves = [
    {'delta': vila_2011_reference_data['delta_values'].ravel(),
     'rho': vila_2011_reference_data['transition_rho_values_EMBGAMP'].ravel(),
     'label': 'EM-BG-GAMP (USE)',
     'style': {'color': (0.99, 0.68, 0.38), 'marker': '*', 'linestyle':'None', 'ms': 12, 'zorder': 10, 'color': '#b2abd2'}}
]

# Plot everything
style_cycle_errorbar = cycler.cycler('ls', magni.utils.plotting.linestyles[:3])
magni.utils.plotting.setup_matplotlib({'figure': {'dpi': 800, 'figsize': [fs * 2 for fs in fig_size]},
                                       'axes': {'prop_cycle': color_cycle * style_cycle_errorbar},
                                       'grid': {'alpha': 0.25}})
magni.cs.phase_transition.plotting.plot_phase_transitions(
    fig_2_pt_curves, plot_l1=True, errorevery=2, reference_curves=vila_2011_reference_pt_curves)

plt.gcf().gca().legend(loc='upper left')
plt.gcf().gca().get_legend().get_frame().set_alpha(0)
handles, labels = plt.gcf().gca().axes.get_legend_handles_labels()

plt.savefig('fig2.pdf')
_ = ! pdfcrop 'fig2.pdf'

plt.show()

Extra figures

All problem suites with EM learned signal prior and genie knowledge of sum approximation constant

In [7]:
select_criterions = ['BG', 'gaussian', 'vilatruncate', mismatches[5]]
fig_1_em_pt_curves = []

for curve_label, pt in sorted(pt_curves.items()):
    if all([select_criterion in curve_label for select_criterion in select_criterions]):
        fig_1_em_pt_curves.append(
            {'delta': pt[0],
             'rho': pt[1],
             'yerr': np.vstack([pt_percentiles[curve_label][0, :], pt_percentiles[curve_label][3, :]]),  # 90/10 errorbars
             'label': algorithm_names['_'.join([curve_label.split('_')[k] for k in [0, 1]])]})

# Sort curves for display
fig_1_em_pt_curves = sorted(fig_1_em_pt_curves, key=lambda t: t['label'].replace('$|\mathbf{A}|^{\\circ 2}', '$$'))
        
# Reference markers
vila_2011_reference_data = scipy.io.loadmat(vila2011_reference_path)
vila_2011_reference_pt_curves = [
    {'delta': vila_2011_reference_data['delta_values'].ravel(),
     'rho': vila_2011_reference_data['transition_rho_values_EMBGAMP'].ravel(),
     'label': 'EM-BG-GAMP (USE)',
     'style': {'color': (0.99, 0.68, 0.38), 'marker': '*', 'linestyle':'None', 'ms': 12, 'zorder': 10, 'color': '#b2abd2'}}
]

# Plot everything
style_cycle_errorbar = cycler.cycler('ls', magni.utils.plotting.linestyles[:2])
magni.utils.plotting.setup_matplotlib({'figure': {'dpi': 800, 'figsize': [fs * 2 for fs in fig_size]},
                                       'axes': {'prop_cycle': color_cycle * style_cycle_errorbar},
                                       'grid': {'alpha': 0.25}})
magni.cs.phase_transition.plotting.plot_phase_transitions(
    fig_1_em_pt_curves, plot_l1=True, errorevery=2, reference_curves=vila_2011_reference_pt_curves)

plt.gcf().gca().legend(loc='upper left')
plt.gcf().gca().get_legend().get_frame().set_alpha(0)
handles, labels = plt.gcf().gca().axes.get_legend_handles_labels()

plt.show()

Several levels of mismatched sum approximation constant for each problem suite

In [8]:
system_matrices = {'USE': 'USE', 'RandomDCT2D': 'SEM', 'EX3D': 'EX3D'}

for system_matrix in system_matrices:
    print('=' * 120)
    print(system_matrices[system_matrix])
    print('=' * 120)

    select_criterions = ['BG', 'gaussian', 'genie', 'SA', system_matrix]
    fig_all_pt_curves = []

    for curve_label, pt in sorted(pt_curves.items()):
        if all([select_criterion in curve_label for select_criterion in select_criterions]):
            fig_all_pt_curves.append(
                {'delta': pt[0],
                 'rho': pt[1],
                 'yerr': np.vstack([pt_percentiles[curve_label][0, :], pt_percentiles[curve_label][3, :]]),  # 90/10 errorbars
                 'label': algorithm_names['_'.join([curve_label.split('_')[k] for k in [0, 1]])].replace(
                 '$||\\mathbf{A}||_F^2$', '${}\\cdot||\\mathbf{{A}}||_F^2$'.format(
                     float(curve_label.split('_')[5].replace('d', '.'))))})

    # Reference markers
    vila_2011_reference_data = scipy.io.loadmat(vila2011_reference_path)
    vila_2011_reference_pt_curves = [
        {'delta': vila_2011_reference_data['delta_values'].ravel(),
         'rho': vila_2011_reference_data['transition_rho_values_EMBGAMP'].ravel(),
         'label': 'EM-BG-GAMP (USE)',
         'style': {'color': (0.99, 0.68, 0.38), 'marker': '*', 'linestyle':'None', 'ms': 12, 'zorder': 10, 'color': '#b2abd2'}}
    ]

    # Plot everything
    color_cycle = cycler.cycler('color', cb5['BuYlRd'])
    style_cycle_errorbar = cycler.cycler('ls', magni.utils.plotting.linestyles[:3])
    magni.utils.plotting.setup_matplotlib({'figure': {'dpi': 800, 'figsize': [fs * 2 for fs in fig_size]},
                                           'axes': {'prop_cycle': color_cycle * style_cycle_errorbar},
                                           'grid': {'alpha': 0.25}})
    magni.cs.phase_transition.plotting.plot_phase_transitions(
        fig_all_pt_curves, plot_l1=True, errorevery=2, reference_curves=vila_2011_reference_pt_curves)

    plt.gcf().gca().legend(loc='upper left')
    plt.gcf().gca().get_legend().get_frame().set_alpha(0)
    handles, labels = plt.gcf().gca().axes.get_legend_handles_labels()
    plt.show()
========================================================================================================================
USE
========================================================================================================================
========================================================================================================================
SEM
========================================================================================================================
========================================================================================================================
EX3D
========================================================================================================================

Metadata about how this notebook was run

In [9]:
magni.reproducibility.data.get_datetime()
Out[9]:
{'pretty_utc': 'Mon May 15 08:48:26 2017',
 'status': 'Succeeded',
 'today': 'datetime.datetime(2017, 5, 15, 10, 48, 26, 4236)',
 'utcnow': 'datetime.datetime(2017, 5, 15, 8, 48, 26, 4249)'}
In [10]:
magni.reproducibility.data.get_git_revision()
Out[10]:
{'branch': 'v1.7.0',
 'remote': 'origin\tgit@github.com:SIP-AAU/Magni.git (fetch)\norigin\tgit@github.com:SIP-AAU/Magni.git (push)',
 'status': 'Succeeded',
 'tag': 'v1.7.0'}
In [11]:
magni.reproducibility.data.get_platform_info()
Out[11]:
{'libc': '["glibc", "2.2.5"]',
 'linux': '["arch", "", ""]',
 'mac_os': '["", ["", "", ""], ""]',
 'machine': '"x86_64"',
 'node': '"CSOLAP"',
 'processor': '""',
 'python': '"3.6.0"',
 'release': '"4.9.24-1-lts"',
 'status': 'All OK',
 'system': '"Linux"',
 'version': '"#1 SMP Fri Apr 21 11:27:32 CEST 2017"',
 'win32': '["", "", "", ""]'}
In [12]:
magni.reproducibility.data.get_conda_info()
Out[12]:
{'channels': '{"https://conda.anaconda.org/chroxvi/linux-64": ["chroxvi", 0], "https://conda.anaconda.org/chroxvi/noarch": ["chroxvi", 0], "https://repo.continuum.io/pkgs/free/linux-64": ["defaults", 1], "https://repo.continuum.io/pkgs/free/noarch": ["defaults", 1], "https://repo.continuum.io/pkgs/r/linux-64": ["defaults", 1], "https://repo.continuum.io/pkgs/r/noarch": ["defaults", 1], "https://repo.continuum.io/pkgs/pro/linux-64": ["defaults", 1], "https://repo.continuum.io/pkgs/pro/noarch": ["defaults", 1]}',
 'conda_is_private': 'false',
 'conda_version': '4.3.14',
 'config_file': '"/home/chroxvi/.condarc"',
 'default_prefix': '/usr/local/continuum/anaconda3',
 'env_export': '{"name": "root", "channels": ["chroxvi", "https://conda.anaconda.org/chroxvi", "defaults"], "dependencies": ["mando=0.3.3=py36_0", "memory_profiler=0.43=py36_0", "pywavelets=0.5.1=np111py36_0", "radon=1.4.0=py36_0", "_license=1.1=py36_1", "alabaster=0.7.9=py36_0", "anaconda=4.3.0=np111py36_0", "anaconda-client=1.6.0=py36_0", "anaconda-navigator=1.4.3=py36_0", "astroid=1.4.9=py36_0", "astropy=1.3=np111py36_0", "babel=2.3.4=py36_0", "backports=1.0=py36_0", "beautifulsoup4=4.5.3=py36_0", "bitarray=0.8.1=py36_0", "blaze=0.10.1=py36_0", "bokeh=0.12.4=py36_0", "boto=2.45.0=py36_0", "bottleneck=1.2.0=np111py36_0", "cairo=1.14.8=0", "cffi=1.9.1=py36_0", "chardet=2.3.0=py36_0", "chest=0.2.3=py36_0", "click=6.7=py36_0", "cloudpickle=0.2.2=py36_0", "clyent=1.2.2=py36_0", "colorama=0.3.7=py36_0", "conda=4.3.14=py36_0", "conda-env=2.6.0=0", "configobj=5.0.6=py36_0", "contextlib2=0.5.4=py36_0", "coverage=4.2=py36_0", "cryptography=1.7.1=py36_0", "curl=7.52.1=0", "cycler=0.10.0=py36_0", "cython=0.25.2=py36_0", "cytoolz=0.8.2=py36_0", "dask=0.13.0=py36_0", "datashape=0.5.4=py36_0", "dbus=1.10.10=0", "decorator=4.0.11=py36_0", "dill=0.2.5=py36_0", "docutils=0.13.1=py36_0", "entrypoints=0.2.2=py36_0", "et_xmlfile=1.0.1=py36_0", "expat=2.1.0=0", "fastcache=1.0.2=py36_1", "flask=0.12=py36_0", "flask-cors=3.0.2=py36_0", "fontconfig=2.12.1=2", "freetype=2.5.5=2", "get_terminal_size=1.0.0=py36_0", "gevent=1.2.1=py36_0", "glib=2.50.2=1", "greenlet=0.4.11=py36_0", "gst-plugins-base=1.8.0=0", "gstreamer=1.8.0=0", "h5py=2.6.0=np111py36_2", "harfbuzz=0.9.39=2", "hdf5=1.8.17=1", "heapdict=1.0.0=py36_1", "icu=54.1=0", "idna=2.2=py36_0", "imagesize=0.7.1=py36_0", "ipykernel=4.5.2=py36_0", "ipython=5.1.0=py36_0", "ipython_genutils=0.1.0=py36_0", "ipywidgets=5.2.2=py36_1", "isort=4.2.5=py36_0", "itsdangerous=0.24=py36_0", "jbig=2.1=0", "jdcal=1.3=py36_0", "jedi=0.9.0=py36_1", "jinja2=2.9.4=py36_0", "jpeg=9b=0", "jsonschema=2.5.1=py36_0", "jupyter=1.0.0=py36_3", "jupyter_client=4.4.0=py36_0", "jupyter_console=5.0.0=py36_0", "jupyter_core=4.2.1=py36_0", "lazy-object-proxy=1.2.2=py36_0", "libffi=3.2.1=1", "libgcc=4.8.5=2", "libgfortran=3.0.0=1", "libiconv=1.14=0", "libpng=1.6.27=0", "libsodium=1.0.10=0", "libtiff=4.0.6=3", "libxcb=1.12=1", "libxml2=2.9.4=0", "libxslt=1.1.29=0", "llvmlite=0.15.0=py36_0", "locket=0.2.0=py36_1", "lxml=3.7.2=py36_0", "markupsafe=0.23=py36_2", "matplotlib=2.0.0=np111py36_0", "mistune=0.7.3=py36_0", "mkl=2017.0.1=0", "mkl-service=1.1.2=py36_3", "mpmath=0.19=py36_1", "multipledispatch=0.4.9=py36_0", "nbconvert=4.2.0=py36_0", "nbformat=4.2.0=py36_0", "networkx=1.11=py36_0", "nltk=3.2.2=py36_0", "nose=1.3.7=py36_1", "notebook=4.3.1=py36_0", "numba=0.30.1=np111py36_0", "numexpr=2.6.1=np111py36_2", "numpy=1.11.3=py36_0", "numpydoc=0.6.0=py36_0", "odo=0.5.0=py36_1", "openpyxl=2.4.1=py36_0", "openssl=1.0.2k=0", "pandas=0.19.2=np111py36_1", "partd=0.3.7=py36_0", "path.py=10.0=py36_0", "pathlib2=2.2.0=py36_0", "patsy=0.4.1=py36_0", "pcre=8.39=1", "pep8=1.7.0=py36_0", "pexpect=4.2.1=py36_0", "pickleshare=0.7.4=py36_0", "pillow=4.0.0=py36_0", "pip=9.0.1=py36_1", "pixman=0.34.0=0", "ply=3.9=py36_0", "prompt_toolkit=1.0.9=py36_0", "psutil=5.0.1=py36_0", "ptyprocess=0.5.1=py36_0", "py=1.4.32=py36_0", "pyasn1=0.1.9=py36_0", "pycosat=0.6.1=py36_1", "pycparser=2.17=py36_0", "pycrypto=2.6.1=py36_4", "pycurl=7.43.0=py36_2", "pyflakes=1.5.0=py36_0", "pygments=2.1.3=py36_0", "pylint=1.6.4=py36_1", "pyopenssl=16.2.0=py36_0", "pyparsing=2.1.4=py36_0", "pyqt=5.6.0=py36_2", "pytables=3.3.0=np111py36_0", "pytest=3.0.5=py36_0", "python=3.6.0=0", "python-dateutil=2.6.0=py36_0", "pytz=2016.10=py36_0", "pyyaml=3.12=py36_0", "pyzmq=16.0.2=py36_0", "qt=5.6.2=3", "qtawesome=0.4.3=py36_0", "qtconsole=4.2.1=py36_1", "qtpy=1.2.1=py36_0", "readline=6.2=2", "redis=3.2.0=0", "redis-py=2.10.5=py36_0", "requests=2.12.4=py36_0", "rope=0.9.4=py36_1", "ruamel_yaml=0.11.14=py36_1", "scikit-image=0.12.3=np111py36_1", "scikit-learn=0.18.1=np111py36_1", "scipy=0.18.1=np111py36_1", "seaborn=0.7.1=py36_0", "setuptools=27.2.0=py36_0", "simplegeneric=0.8.1=py36_1", "singledispatch=3.4.0.3=py36_0", "sip=4.18=py36_0", "six=1.10.0=py36_0", "snowballstemmer=1.2.1=py36_0", "sockjs-tornado=1.0.3=py36_0", "sphinx=1.5.1=py36_0", "spyder=3.1.2=py36_0", "sqlalchemy=1.1.5=py36_0", "sqlite=3.13.0=0", "statsmodels=0.6.1=np111py36_1", "sympy=1.0=py36_0", "terminado=0.6=py36_0", "tk=8.5.18=0", "toolz=0.8.2=py36_0", "tornado=4.4.2=py36_0", "traitlets=4.3.1=py36_0", "unicodecsv=0.14.1=py36_0", "wcwidth=0.1.7=py36_0", "werkzeug=0.11.15=py36_0", "wheel=0.29.0=py36_0", "widgetsnbextension=1.2.6=py36_0", "wrapt=1.10.8=py36_0", "xlrd=1.0.0=py36_0", "xlsxwriter=0.9.6=py36_0", "xlwt=1.2.0=py36_0", "xz=5.2.2=1", "yaml=0.1.6=0", "zeromq=4.1.5=0", "zlib=1.2.8=3", {"pip": ["backports.shutil-get-terminal-size==1.0.0", "et-xmlfile==1.0.1", "ipython-genutils==0.1.0", "jupyter-client==4.4.0", "jupyter-console==5.0.0", "jupyter-core==4.2.1", "memory-profiler==0.43", "prompt-toolkit==1.0.9", "rope-py3k==0.9.4.post1", "tables==3.3.0"]}], "prefix": "/usr/local/continuum/anaconda3"}',
 'envs_dirs': '["/usr/local/continuum/anaconda3/envs", "/home/chroxvi/.conda/envs"]',
 'linked_modules': '"[Dist(_Dist__initd=True, channel=\'chroxvi\', dist_name=\'mando-0.3.3-py36_0\', name=\'mando\', version=\'0.3.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'chroxvi\', dist_name=\'memory_profiler-0.43-py36_0\', name=\'memory_profiler\', version=\'0.43\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'chroxvi\', dist_name=\'pywavelets-0.5.1-np111py36_0\', name=\'pywavelets\', version=\'0.5.1\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'chroxvi\', dist_name=\'radon-1.4.0-py36_0\', name=\'radon\', version=\'1.4.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'_license-1.1-py36_1\', name=\'_license\', version=\'1.1\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'alabaster-0.7.9-py36_0\', name=\'alabaster\', version=\'0.7.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'anaconda-4.3.0-np111py36_0\', name=\'anaconda\', version=\'4.3.0\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'anaconda-client-1.6.0-py36_0\', name=\'anaconda-client\', version=\'1.6.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'anaconda-navigator-1.4.3-py36_0\', name=\'anaconda-navigator\', version=\'1.4.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'astroid-1.4.9-py36_0\', name=\'astroid\', version=\'1.4.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'astropy-1.3-np111py36_0\', name=\'astropy\', version=\'1.3\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'babel-2.3.4-py36_0\', name=\'babel\', version=\'2.3.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'backports-1.0-py36_0\', name=\'backports\', version=\'1.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'beautifulsoup4-4.5.3-py36_0\', name=\'beautifulsoup4\', version=\'4.5.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'bitarray-0.8.1-py36_0\', name=\'bitarray\', version=\'0.8.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'blaze-0.10.1-py36_0\', name=\'blaze\', version=\'0.10.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'bokeh-0.12.4-py36_0\', name=\'bokeh\', version=\'0.12.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'boto-2.45.0-py36_0\', name=\'boto\', version=\'2.45.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'bottleneck-1.2.0-np111py36_0\', name=\'bottleneck\', version=\'1.2.0\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cairo-1.14.8-0\', name=\'cairo\', version=\'1.14.8\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cffi-1.9.1-py36_0\', name=\'cffi\', version=\'1.9.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'chardet-2.3.0-py36_0\', name=\'chardet\', version=\'2.3.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'chest-0.2.3-py36_0\', name=\'chest\', version=\'0.2.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'click-6.7-py36_0\', name=\'click\', version=\'6.7\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cloudpickle-0.2.2-py36_0\', name=\'cloudpickle\', version=\'0.2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'clyent-1.2.2-py36_0\', name=\'clyent\', version=\'1.2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'colorama-0.3.7-py36_0\', name=\'colorama\', version=\'0.3.7\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'conda-4.3.14-py36_0\', name=\'conda\', version=\'4.3.14\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'conda-env-2.6.0-0\', name=\'conda-env\', version=\'2.6.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'configobj-5.0.6-py36_0\', name=\'configobj\', version=\'5.0.6\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'contextlib2-0.5.4-py36_0\', name=\'contextlib2\', version=\'0.5.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'coverage-4.2-py36_0\', name=\'coverage\', version=\'4.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cryptography-1.7.1-py36_0\', name=\'cryptography\', version=\'1.7.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'curl-7.52.1-0\', name=\'curl\', version=\'7.52.1\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cycler-0.10.0-py36_0\', name=\'cycler\', version=\'0.10.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cython-0.25.2-py36_0\', name=\'cython\', version=\'0.25.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'cytoolz-0.8.2-py36_0\', name=\'cytoolz\', version=\'0.8.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'dask-0.13.0-py36_0\', name=\'dask\', version=\'0.13.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'datashape-0.5.4-py36_0\', name=\'datashape\', version=\'0.5.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'dbus-1.10.10-0\', name=\'dbus\', version=\'1.10.10\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'decorator-4.0.11-py36_0\', name=\'decorator\', version=\'4.0.11\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'dill-0.2.5-py36_0\', name=\'dill\', version=\'0.2.5\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'docutils-0.13.1-py36_0\', name=\'docutils\', version=\'0.13.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'entrypoints-0.2.2-py36_0\', name=\'entrypoints\', version=\'0.2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'et_xmlfile-1.0.1-py36_0\', name=\'et_xmlfile\', version=\'1.0.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'expat-2.1.0-0\', name=\'expat\', version=\'2.1.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'fastcache-1.0.2-py36_1\', name=\'fastcache\', version=\'1.0.2\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'flask-0.12-py36_0\', name=\'flask\', version=\'0.12\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'flask-cors-3.0.2-py36_0\', name=\'flask-cors\', version=\'3.0.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'fontconfig-2.12.1-2\', name=\'fontconfig\', version=\'2.12.1\', build_string=\'2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'freetype-2.5.5-2\', name=\'freetype\', version=\'2.5.5\', build_string=\'2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'get_terminal_size-1.0.0-py36_0\', name=\'get_terminal_size\', version=\'1.0.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'gevent-1.2.1-py36_0\', name=\'gevent\', version=\'1.2.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'glib-2.50.2-1\', name=\'glib\', version=\'2.50.2\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'greenlet-0.4.11-py36_0\', name=\'greenlet\', version=\'0.4.11\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'gst-plugins-base-1.8.0-0\', name=\'gst-plugins-base\', version=\'1.8.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'gstreamer-1.8.0-0\', name=\'gstreamer\', version=\'1.8.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'h5py-2.6.0-np111py36_2\', name=\'h5py\', version=\'2.6.0\', build_string=\'np111py36_2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'harfbuzz-0.9.39-2\', name=\'harfbuzz\', version=\'0.9.39\', build_string=\'2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'hdf5-1.8.17-1\', name=\'hdf5\', version=\'1.8.17\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'heapdict-1.0.0-py36_1\', name=\'heapdict\', version=\'1.0.0\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'icu-54.1-0\', name=\'icu\', version=\'54.1\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'idna-2.2-py36_0\', name=\'idna\', version=\'2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'imagesize-0.7.1-py36_0\', name=\'imagesize\', version=\'0.7.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ipykernel-4.5.2-py36_0\', name=\'ipykernel\', version=\'4.5.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ipython-5.1.0-py36_0\', name=\'ipython\', version=\'5.1.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ipython_genutils-0.1.0-py36_0\', name=\'ipython_genutils\', version=\'0.1.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ipywidgets-5.2.2-py36_1\', name=\'ipywidgets\', version=\'5.2.2\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'isort-4.2.5-py36_0\', name=\'isort\', version=\'4.2.5\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'itsdangerous-0.24-py36_0\', name=\'itsdangerous\', version=\'0.24\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jbig-2.1-0\', name=\'jbig\', version=\'2.1\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jdcal-1.3-py36_0\', name=\'jdcal\', version=\'1.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jedi-0.9.0-py36_1\', name=\'jedi\', version=\'0.9.0\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jinja2-2.9.4-py36_0\', name=\'jinja2\', version=\'2.9.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jpeg-9b-0\', name=\'jpeg\', version=\'9b\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jsonschema-2.5.1-py36_0\', name=\'jsonschema\', version=\'2.5.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jupyter-1.0.0-py36_3\', name=\'jupyter\', version=\'1.0.0\', build_string=\'py36_3\', build_number=3, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jupyter_client-4.4.0-py36_0\', name=\'jupyter_client\', version=\'4.4.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jupyter_console-5.0.0-py36_0\', name=\'jupyter_console\', version=\'5.0.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'jupyter_core-4.2.1-py36_0\', name=\'jupyter_core\', version=\'4.2.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'lazy-object-proxy-1.2.2-py36_0\', name=\'lazy-object-proxy\', version=\'1.2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libffi-3.2.1-1\', name=\'libffi\', version=\'3.2.1\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libgcc-4.8.5-2\', name=\'libgcc\', version=\'4.8.5\', build_string=\'2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libgfortran-3.0.0-1\', name=\'libgfortran\', version=\'3.0.0\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libiconv-1.14-0\', name=\'libiconv\', version=\'1.14\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libpng-1.6.27-0\', name=\'libpng\', version=\'1.6.27\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libsodium-1.0.10-0\', name=\'libsodium\', version=\'1.0.10\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libtiff-4.0.6-3\', name=\'libtiff\', version=\'4.0.6\', build_string=\'3\', build_number=3, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libxcb-1.12-1\', name=\'libxcb\', version=\'1.12\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libxml2-2.9.4-0\', name=\'libxml2\', version=\'2.9.4\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'libxslt-1.1.29-0\', name=\'libxslt\', version=\'1.1.29\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'llvmlite-0.15.0-py36_0\', name=\'llvmlite\', version=\'0.15.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'locket-0.2.0-py36_1\', name=\'locket\', version=\'0.2.0\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'lxml-3.7.2-py36_0\', name=\'lxml\', version=\'3.7.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'markupsafe-0.23-py36_2\', name=\'markupsafe\', version=\'0.23\', build_string=\'py36_2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'matplotlib-2.0.0-np111py36_0\', name=\'matplotlib\', version=\'2.0.0\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'mistune-0.7.3-py36_0\', name=\'mistune\', version=\'0.7.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'mkl-2017.0.1-0\', name=\'mkl\', version=\'2017.0.1\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'mkl-service-1.1.2-py36_3\', name=\'mkl-service\', version=\'1.1.2\', build_string=\'py36_3\', build_number=3, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'mpmath-0.19-py36_1\', name=\'mpmath\', version=\'0.19\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'multipledispatch-0.4.9-py36_0\', name=\'multipledispatch\', version=\'0.4.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'nbconvert-4.2.0-py36_0\', name=\'nbconvert\', version=\'4.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'nbformat-4.2.0-py36_0\', name=\'nbformat\', version=\'4.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'networkx-1.11-py36_0\', name=\'networkx\', version=\'1.11\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'nltk-3.2.2-py36_0\', name=\'nltk\', version=\'3.2.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'nose-1.3.7-py36_1\', name=\'nose\', version=\'1.3.7\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'notebook-4.3.1-py36_0\', name=\'notebook\', version=\'4.3.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'numba-0.30.1-np111py36_0\', name=\'numba\', version=\'0.30.1\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'numexpr-2.6.1-np111py36_2\', name=\'numexpr\', version=\'2.6.1\', build_string=\'np111py36_2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'numpy-1.11.3-py36_0\', name=\'numpy\', version=\'1.11.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'numpydoc-0.6.0-py36_0\', name=\'numpydoc\', version=\'0.6.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'odo-0.5.0-py36_1\', name=\'odo\', version=\'0.5.0\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'openpyxl-2.4.1-py36_0\', name=\'openpyxl\', version=\'2.4.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'openssl-1.0.2k-0\', name=\'openssl\', version=\'1.0.2k\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pandas-0.19.2-np111py36_1\', name=\'pandas\', version=\'0.19.2\', build_string=\'np111py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'partd-0.3.7-py36_0\', name=\'partd\', version=\'0.3.7\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'path.py-10.0-py36_0\', name=\'path.py\', version=\'10.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pathlib2-2.2.0-py36_0\', name=\'pathlib2\', version=\'2.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'patsy-0.4.1-py36_0\', name=\'patsy\', version=\'0.4.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pcre-8.39-1\', name=\'pcre\', version=\'8.39\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pep8-1.7.0-py36_0\', name=\'pep8\', version=\'1.7.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pexpect-4.2.1-py36_0\', name=\'pexpect\', version=\'4.2.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pickleshare-0.7.4-py36_0\', name=\'pickleshare\', version=\'0.7.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pillow-4.0.0-py36_0\', name=\'pillow\', version=\'4.0.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pip-9.0.1-py36_1\', name=\'pip\', version=\'9.0.1\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pixman-0.34.0-0\', name=\'pixman\', version=\'0.34.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ply-3.9-py36_0\', name=\'ply\', version=\'3.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'prompt_toolkit-1.0.9-py36_0\', name=\'prompt_toolkit\', version=\'1.0.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'psutil-5.0.1-py36_0\', name=\'psutil\', version=\'5.0.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ptyprocess-0.5.1-py36_0\', name=\'ptyprocess\', version=\'0.5.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'py-1.4.32-py36_0\', name=\'py\', version=\'1.4.32\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyasn1-0.1.9-py36_0\', name=\'pyasn1\', version=\'0.1.9\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pycosat-0.6.1-py36_1\', name=\'pycosat\', version=\'0.6.1\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pycparser-2.17-py36_0\', name=\'pycparser\', version=\'2.17\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pycrypto-2.6.1-py36_4\', name=\'pycrypto\', version=\'2.6.1\', build_string=\'py36_4\', build_number=4, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pycurl-7.43.0-py36_2\', name=\'pycurl\', version=\'7.43.0\', build_string=\'py36_2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyflakes-1.5.0-py36_0\', name=\'pyflakes\', version=\'1.5.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pygments-2.1.3-py36_0\', name=\'pygments\', version=\'2.1.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pylint-1.6.4-py36_1\', name=\'pylint\', version=\'1.6.4\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyopenssl-16.2.0-py36_0\', name=\'pyopenssl\', version=\'16.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyparsing-2.1.4-py36_0\', name=\'pyparsing\', version=\'2.1.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyqt-5.6.0-py36_2\', name=\'pyqt\', version=\'5.6.0\', build_string=\'py36_2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pytables-3.3.0-np111py36_0\', name=\'pytables\', version=\'3.3.0\', build_string=\'np111py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pytest-3.0.5-py36_0\', name=\'pytest\', version=\'3.0.5\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'python-3.6.0-0\', name=\'python\', version=\'3.6.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'python-dateutil-2.6.0-py36_0\', name=\'python-dateutil\', version=\'2.6.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pytz-2016.10-py36_0\', name=\'pytz\', version=\'2016.10\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyyaml-3.12-py36_0\', name=\'pyyaml\', version=\'3.12\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'pyzmq-16.0.2-py36_0\', name=\'pyzmq\', version=\'16.0.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'qt-5.6.2-3\', name=\'qt\', version=\'5.6.2\', build_string=\'3\', build_number=3, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'qtawesome-0.4.3-py36_0\', name=\'qtawesome\', version=\'0.4.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'qtconsole-4.2.1-py36_1\', name=\'qtconsole\', version=\'4.2.1\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'qtpy-1.2.1-py36_0\', name=\'qtpy\', version=\'1.2.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'readline-6.2-2\', name=\'readline\', version=\'6.2\', build_string=\'2\', build_number=2, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'redis-3.2.0-0\', name=\'redis\', version=\'3.2.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'redis-py-2.10.5-py36_0\', name=\'redis-py\', version=\'2.10.5\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'requests-2.12.4-py36_0\', name=\'requests\', version=\'2.12.4\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'rope-0.9.4-py36_1\', name=\'rope\', version=\'0.9.4\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'ruamel_yaml-0.11.14-py36_1\', name=\'ruamel_yaml\', version=\'0.11.14\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'scikit-image-0.12.3-np111py36_1\', name=\'scikit-image\', version=\'0.12.3\', build_string=\'np111py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'scikit-learn-0.18.1-np111py36_1\', name=\'scikit-learn\', version=\'0.18.1\', build_string=\'np111py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'scipy-0.18.1-np111py36_1\', name=\'scipy\', version=\'0.18.1\', build_string=\'np111py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'seaborn-0.7.1-py36_0\', name=\'seaborn\', version=\'0.7.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'setuptools-27.2.0-py36_0\', name=\'setuptools\', version=\'27.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'simplegeneric-0.8.1-py36_1\', name=\'simplegeneric\', version=\'0.8.1\', build_string=\'py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'singledispatch-3.4.0.3-py36_0\', name=\'singledispatch\', version=\'3.4.0.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sip-4.18-py36_0\', name=\'sip\', version=\'4.18\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'six-1.10.0-py36_0\', name=\'six\', version=\'1.10.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'snowballstemmer-1.2.1-py36_0\', name=\'snowballstemmer\', version=\'1.2.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sockjs-tornado-1.0.3-py36_0\', name=\'sockjs-tornado\', version=\'1.0.3\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sphinx-1.5.1-py36_0\', name=\'sphinx\', version=\'1.5.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'spyder-3.1.2-py36_0\', name=\'spyder\', version=\'3.1.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sqlalchemy-1.1.5-py36_0\', name=\'sqlalchemy\', version=\'1.1.5\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sqlite-3.13.0-0\', name=\'sqlite\', version=\'3.13.0\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'statsmodels-0.6.1-np111py36_1\', name=\'statsmodels\', version=\'0.6.1\', build_string=\'np111py36_1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'sympy-1.0-py36_0\', name=\'sympy\', version=\'1.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'terminado-0.6-py36_0\', name=\'terminado\', version=\'0.6\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'tk-8.5.18-0\', name=\'tk\', version=\'8.5.18\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'toolz-0.8.2-py36_0\', name=\'toolz\', version=\'0.8.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'tornado-4.4.2-py36_0\', name=\'tornado\', version=\'4.4.2\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'traitlets-4.3.1-py36_0\', name=\'traitlets\', version=\'4.3.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'unicodecsv-0.14.1-py36_0\', name=\'unicodecsv\', version=\'0.14.1\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'wcwidth-0.1.7-py36_0\', name=\'wcwidth\', version=\'0.1.7\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'werkzeug-0.11.15-py36_0\', name=\'werkzeug\', version=\'0.11.15\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'wheel-0.29.0-py36_0\', name=\'wheel\', version=\'0.29.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'widgetsnbextension-1.2.6-py36_0\', name=\'widgetsnbextension\', version=\'1.2.6\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'wrapt-1.10.8-py36_0\', name=\'wrapt\', version=\'1.10.8\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'xlrd-1.0.0-py36_0\', name=\'xlrd\', version=\'1.0.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'xlsxwriter-0.9.6-py36_0\', name=\'xlsxwriter\', version=\'0.9.6\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'xlwt-1.2.0-py36_0\', name=\'xlwt\', version=\'1.2.0\', build_string=\'py36_0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'xz-5.2.2-1\', name=\'xz\', version=\'5.2.2\', build_string=\'1\', build_number=1, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'yaml-0.1.6-0\', name=\'yaml\', version=\'0.1.6\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'zeromq-4.1.5-0\', name=\'zeromq\', version=\'4.1.5\', build_string=\'0\', build_number=0, with_features_depends=None, base_url=None, platform=None), Dist(_Dist__initd=True, channel=\'defaults\', dist_name=\'zlib-1.2.8-3\', name=\'zlib\', version=\'1.2.8\', build_string=\'3\', build_number=3, with_features_depends=None, base_url=None, platform=None)]"',
 'modules_info': '{"chroxvi::mando-0.3.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), has_prefix=False, license=\'MIT License\', md5=\'0b900d773117c94d3d1a35e41782b6a7\', name=\'mando\', noarch=None, platform=\'linux\', requires=(), size=26855, subdir=\'linux-64\', version=\'0.3.3\', fn=\'mando-0.3.3-py36_0.tar.bz2\', schannel=\'chroxvi\', channel=\'https://conda.anaconda.org/chroxvi\', priority=0, url=\'https://conda.anaconda.org/chroxvi/linux-64/mando-0.3.3-py36_0.tar.bz2\', auth=None, files=(\'lib/python3.6/site-packages/mando-0.3.3-py3.6.egg\', \'lib/python3.6/site-packages/mando.pth\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/mando-0.3.3-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "chroxvi::memory_profiler-0.43-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), has_prefix=True, license=\'Simplified BSD\', md5=\'58211e436c2154d7c4111e429874b7d8\', name=\'memory_profiler\', noarch=None, platform=\'linux\', requires=(), size=25942, subdir=\'linux-64\', version=\'0.43\', fn=\'memory_profiler-0.43-py36_0.tar.bz2\', schannel=\'chroxvi\', channel=\'https://conda.anaconda.org/chroxvi\', priority=0, url=\'https://conda.anaconda.org/chroxvi/linux-64/memory_profiler-0.43-py36_0.tar.bz2\', auth=None, files=(\'bin/mprof\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/scripts/mprof\', \'lib/python3.6/site-packages/memory_profiler-0.43-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/memory_profiler.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/memory_profiler-0.43-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "chroxvi::pywavelets-0.5.1-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'numpy 1.11*\', \'python 3.6*\'), has_prefix=True, license=\'MIT\', md5=\'57a1dd5b43989c627066dd88ed354a3d\', name=\'pywavelets\', noarch=None, platform=\'linux\', requires=(), size=2694478, subdir=\'linux-64\', version=\'0.5.1\', fn=\'pywavelets-0.5.1-np111py36_0.tar.bz2\', schannel=\'chroxvi\', channel=\'https://conda.anaconda.org/chroxvi\', priority=0, url=\'https://conda.anaconda.org/chroxvi/linux-64/pywavelets-0.5.1-np111py36_0.tar.bz2\', auth=None, files=(\'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/native_libs.txt\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/requires.txt\', \'lib/python3.6/site-packages/PyWavelets-0.5.1-py3.6-linux-x86_64.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pywt/__init__.py\', \'lib/python3.6/site-packages/pywt/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_cwt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_dwt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_multidim.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_multilevel.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_swt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_thresholding.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/_wavelet_packets.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_cwt.py\', \'lib/python3.6/site-packages/pywt/_dwt.py\', \'lib/python3.6/site-packages/pywt/_extensions/__init__.py\', \'lib/python3.6/site-packages/pywt/_extensions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_extensions/__pycache__/_cwt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_extensions/__pycache__/_dwt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_extensions/__pycache__/_pywt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_extensions/__pycache__/_swt.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/_extensions/_cwt.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pywt/_extensions/_cwt.py\', \'lib/python3.6/site-packages/pywt/_extensions/_dwt.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pywt/_extensions/_dwt.py\', \'lib/python3.6/site-packages/pywt/_extensions/_pywt.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pywt/_extensions/_pywt.py\', \'lib/python3.6/site-packages/pywt/_extensions/_swt.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pywt/_extensions/_swt.py\', \'lib/python3.6/site-packages/pywt/_functions.py\', \'lib/python3.6/site-packages/pywt/_multidim.py\', \'lib/python3.6/site-packages/pywt/_multilevel.py\', \'lib/python3.6/site-packages/pywt/_swt.py\', \'lib/python3.6/site-packages/pywt/_thresholding.py\', \'lib/python3.6/site-packages/pywt/_wavelet_packets.py\', \'lib/python3.6/site-packages/pywt/data/__init__.py\', \'lib/python3.6/site-packages/pywt/data/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/data/__pycache__/_readers.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/data/__pycache__/create_dat.cpython-36.pyc\', \'lib/python3.6/site-packages/pywt/data/_readers.py\', \'lib/python3.6/site-packages/pywt/data/aero.npz\', \'lib/python3.6/site-packages/pywt/data/ascent.npz\', \'lib/python3.6/site-packages/pywt/data/camera.npz\', \'lib/python3.6/site-packages/pywt/data/create_dat.py\', \'lib/python3.6/site-packages/pywt/data/ecg.npy\', \'lib/python3.6/site-packages/pywt/data/sst_nino3.npz\', \'lib/python3.6/site-packages/pywt/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pywavelets-0.5.1-np111py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "chroxvi::radon-1.4.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'colorama <0.4\', \'mando <0.4\', \'python 3.6*\'), has_prefix=True, license=\'MIT License\', md5=\'a0528514de52c0b7d39fffd331d9eb71\', name=\'radon\', noarch=None, platform=\'linux\', requires=(), size=103366, subdir=\'linux-64\', version=\'1.4.0\', fn=\'radon-1.4.0-py36_0.tar.bz2\', schannel=\'chroxvi\', channel=\'https://conda.anaconda.org/chroxvi\', priority=0, url=\'https://conda.anaconda.org/chroxvi/linux-64/radon-1.4.0-py36_0.tar.bz2\', auth=None, files=(\'bin/radon\', \'lib/python3.6/site-packages/radon-1.4.0-py3.6.egg\', \'lib/python3.6/site-packages/radon.pth\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/radon-1.4.0-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "defaults::_license-1.1-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'proprietary - Continuum Analytics, Inc.\', license_family=\'Proprietary\', md5=\'1743799dfa58ffde29a01cf6f685f78a\', name=\'_license\', platform=\'linux\', requires=(\'python 3.6\',), subdir=\'linux-64\', version=\'1.1\', fn=\'_license-1.1-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/_license-1.1-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/_license.so\',), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/_license-1.1-py36_1\', type=1))", "defaults::alabaster-0.7.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'3c064b3972f7c2fd38573154f0846922\', name=\'alabaster\', platform=\'linux\', subdir=\'linux-64\', version=\'0.7.9\', fn=\'alabaster-0.7.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/alabaster-0.7.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/pbr.json\', \'lib/python3.6/site-packages/alabaster-0.7.9-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/alabaster/__init__.py\', \'lib/python3.6/site-packages/alabaster/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/alabaster/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/alabaster/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/site-packages/alabaster/_version.py\', \'lib/python3.6/site-packages/alabaster/about.html\', \'lib/python3.6/site-packages/alabaster/donate.html\', \'lib/python3.6/site-packages/alabaster/layout.html\', \'lib/python3.6/site-packages/alabaster/navigation.html\', \'lib/python3.6/site-packages/alabaster/relations.html\', \'lib/python3.6/site-packages/alabaster/static/alabaster.css_t\', \'lib/python3.6/site-packages/alabaster/static/custom.css\', \'lib/python3.6/site-packages/alabaster/support.py\', \'lib/python3.6/site-packages/alabaster/theme.conf\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/alabaster-0.7.9-py36_0\', type=1))", "defaults::anaconda-4.3.0-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, date=\'2017-01-27\', depends=(\'_license 1.1 py36_1\', \'alabaster 0.7.9 py36_0\', \'anaconda-client 1.6.0 py36_0\', \'anaconda-navigator 1.4.3 py36_0\', \'astroid 1.4.9 py36_0\', \'astropy 1.3 np111py36_0\', \'babel 2.3.4 py36_0\', \'backports 1.0 py36_0\', \'beautifulsoup4 4.5.3 py36_0\', \'bitarray 0.8.1 py36_0\', \'blaze 0.10.1 py36_0\', \'bokeh 0.12.4 py36_0\', \'boto 2.45.0 py36_0\', \'bottleneck 1.2.0 np111py36_0\', \'cairo 1.14.8 0\', \'cffi 1.9.1 py36_0\', \'chardet 2.3.0 py36_0\', \'chest 0.2.3 py36_0\', \'click 6.7 py36_0\', \'cloudpickle 0.2.2 py36_0\', \'clyent 1.2.2 py36_0\', \'colorama 0.3.7 py36_0\', \'configobj 5.0.6 py36_0\', \'contextlib2 0.5.4 py36_0\', \'cryptography 1.7.1 py36_0\', \'curl 7.52.1 0\', \'cycler 0.10.0 py36_0\', \'cython 0.25.2 py36_0\', \'cytoolz 0.8.2 py36_0\', \'dask 0.13.0 py36_0\', \'datashape 0.5.4 py36_0\', \'dbus 1.10.10 0\', \'decorator 4.0.11 py36_0\', \'dill 0.2.5 py36_0\', \'docutils 0.13.1 py36_0\', \'entrypoints 0.2.2 py36_0\', \'et_xmlfile 1.0.1 py36_0\', \'expat 2.1.0 0\', \'fastcache 1.0.2 py36_1\', \'flask 0.12 py36_0\', \'flask-cors 3.0.2 py36_0\', \'fontconfig 2.12.1 2\', \'freetype 2.5.5 2\', \'get_terminal_size 1.0.0 py36_0\', \'gevent 1.2.1 py36_0\', \'glib 2.50.2 1\', \'greenlet 0.4.11 py36_0\', \'gst-plugins-base 1.8.0 0\', \'gstreamer 1.8.0 0\', \'h5py 2.6.0 np111py36_2\', \'harfbuzz 0.9.39 2\', \'hdf5 1.8.17 1\', \'heapdict 1.0.0 py36_1\', \'icu 54.1 0\', \'idna 2.2 py36_0\', \'imagesize 0.7.1 py36_0\', \'ipykernel 4.5.2 py36_0\', \'ipython 5.1.0 py36_0\', \'ipython_genutils 0.1.0 py36_0\', \'ipywidgets 5.2.2 py36_1\', \'isort 4.2.5 py36_0\', \'itsdangerous 0.24 py36_0\', \'jbig 2.1 0\', \'jdcal 1.3 py36_0\', \'jedi 0.9.0 py36_1\', \'jinja2 2.9.4 py36_0\', \'jpeg 9b 0\', \'jsonschema 2.5.1 py36_0\', \'jupyter 1.0.0 py36_3\', \'jupyter_client 4.4.0 py36_0\', \'jupyter_console 5.0.0 py36_0\', \'jupyter_core 4.2.1 py36_0\', \'lazy-object-proxy 1.2.2 py36_0\', \'libffi 3.2.1 1\', \'libgcc 4.8.5 2\', \'libgfortran 3.0.0 1\', \'libiconv 1.14 0\', \'libpng 1.6.27 0\', \'libsodium 1.0.10 0\', \'libtiff 4.0.6 3\', \'libxcb 1.12 1\', \'libxml2 2.9.4 0\', \'libxslt 1.1.29 0\', \'llvmlite 0.15.0 py36_0\', \'locket 0.2.0 py36_1\', \'lxml 3.7.2 py36_0\', \'markupsafe 0.23 py36_2\', \'matplotlib 2.0.0 np111py36_0\', \'mistune 0.7.3 py36_0\', \'mkl 2017.0.1 0\', \'mkl-service 1.1.2 py36_3\', \'mpmath 0.19 py36_1\', \'multipledispatch 0.4.9 py36_0\', \'nbconvert 4.2.0 py36_0\', \'nbformat 4.2.0 py36_0\', \'networkx 1.11 py36_0\', \'nltk 3.2.2 py36_0\', \'nose 1.3.7 py36_1\', \'notebook 4.3.1 py36_0\', \'numba 0.30.1 np111py36_0\', \'numexpr 2.6.1 np111py36_2\', \'numpy 1.11.3 py36_0\', \'numpydoc 0.6.0 py36_0\', \'odo 0.5.0 py36_1\', \'openpyxl 2.4.1 py36_0\', \'openssl 1.0.2k 0\', \'pandas 0.19.2 np111py36_1\', \'partd 0.3.7 py36_0\', \'path.py 10.0 py36_0\', \'pathlib2 2.2.0 py36_0\', \'patsy 0.4.1 py36_0\', \'pcre 8.39 1\', \'pep8 1.7.0 py36_0\', \'pexpect 4.2.1 py36_0\', \'pickleshare 0.7.4 py36_0\', \'pillow 4.0.0 py36_0\', \'pip 9.0.1 py36_1\', \'pixman 0.34.0 0\', \'ply 3.9 py36_0\', \'prompt_toolkit 1.0.9 py36_0\', \'psutil 5.0.1 py36_0\', \'ptyprocess 0.5.1 py36_0\', \'py 1.4.32 py36_0\', \'pyasn1 0.1.9 py36_0\', \'pycosat 0.6.1 py36_1\', \'pycparser 2.17 py36_0\', \'pycrypto 2.6.1 py36_4\', \'pycurl 7.43.0 py36_2\', \'pyflakes 1.5.0 py36_0\', \'pygments 2.1.3 py36_0\', \'pylint 1.6.4 py36_1\', \'pyopenssl 16.2.0 py36_0\', \'pyparsing 2.1.4 py36_0\', \'pyqt 5.6.0 py36_2\', \'pytables 3.3.0 np111py36_0\', \'pytest 3.0.5 py36_0\', \'python 3.6.0 0\', \'python-dateutil 2.6.0 py36_0\', \'pytz 2016.10 py36_0\', \'pyyaml 3.12 py36_0\', \'pyzmq 16.0.2 py36_0\', \'qt 5.6.2 3\', \'qtawesome 0.4.3 py36_0\', \'qtconsole 4.2.1 py36_1\', \'qtpy 1.2.1 py36_0\', \'readline 6.2 2\', \'redis 3.2.0 0\', \'redis-py 2.10.5 py36_0\', \'requests 2.12.4 py36_0\', \'rope 0.9.4 py36_1\', \'scikit-image 0.12.3 np111py36_1\', \'scikit-learn 0.18.1 np111py36_1\', \'scipy 0.18.1 np111py36_1\', \'seaborn 0.7.1 py36_0\', \'setuptools 27.2.0 py36_0\', \'simplegeneric 0.8.1 py36_1\', \'singledispatch 3.4.0.3 py36_0\', \'sip 4.18 py36_0\', \'six 1.10.0 py36_0\', \'snowballstemmer 1.2.1 py36_0\', \'sockjs-tornado 1.0.3 py36_0\', \'sphinx 1.5.1 py36_0\', \'spyder 3.1.2 py36_0\', \'sqlalchemy 1.1.5 py36_0\', \'sqlite 3.13.0 0\', \'statsmodels 0.6.1 np111py36_1\', \'sympy 1.0 py36_0\', \'terminado 0.6 py36_0\', \'tk 8.5.18 0\', \'toolz 0.8.2 py36_0\', \'tornado 4.4.2 py36_0\', \'traitlets 4.3.1 py36_0\', \'unicodecsv 0.14.1 py36_0\', \'wcwidth 0.1.7 py36_0\', \'werkzeug 0.11.15 py36_0\', \'wheel 0.29.0 py36_0\', \'widgetsnbextension 1.2.6 py36_0\', \'wrapt 1.10.8 py36_0\', \'xlrd 1.0.0 py36_0\', \'xlsxwriter 0.9.6 py36_0\', \'xlwt 1.2.0 py36_0\', \'xz 5.2.2 1\', \'yaml 0.1.6 0\', \'zeromq 4.1.5 0\', \'zlib 1.2.8 3\'), license=\'BSD\', md5=\'0c56aa4a279d0a2e5c44d3b53c4ca69f\', name=\'anaconda\', noarch=None, platform=\'linux\', requires=(\'_license 1.1 py36_1\', \'alabaster 0.7.9 py36_0\', \'anaconda-client 1.6.0 py36_0\', \'anaconda-navigator 1.4.3 py36_0\', \'astroid 1.4.9 py36_0\', \'astropy 1.3 np111py36_0\', \'babel 2.3.4 py36_0\', \'backports 1.0 py36_0\', \'beautifulsoup4 4.5.3 py36_0\', \'bitarray 0.8.1 py36_0\', \'blaze 0.10.1 py36_0\', \'bokeh 0.12.4 py36_0\', \'boto 2.45.0 py36_0\', \'bottleneck 1.2.0 np111py36_0\', \'cairo 1.14.8 0\', \'cffi 1.9.1 py36_0\', \'chardet 2.3.0 py36_0\', \'chest 0.2.3 py36_0\', \'click 6.7 py36_0\', \'cloudpickle 0.2.2 py36_0\', \'clyent 1.2.2 py36_0\', \'colorama 0.3.7 py36_0\', \'configobj 5.0.6 py36_0\', \'contextlib2 0.5.4 py36_0\', \'cryptography 1.7.1 py36_0\', \'curl 7.52.1 0\', \'cycler 0.10.0 py36_0\', \'cython 0.25.2 py36_0\', \'cytoolz 0.8.2 py36_0\', \'dask 0.13.0 py36_0\', \'datashape 0.5.4 py36_0\', \'dbus 1.10.10 0\', \'decorator 4.0.11 py36_0\', \'dill 0.2.5 py36_0\', \'docutils 0.13.1 py36_0\', \'entrypoints 0.2.2 py36_0\', \'et_xmlfile 1.0.1 py36_0\', \'expat 2.1.0 0\', \'fastcache 1.0.2 py36_1\', \'flask 0.12 py36_0\', \'flask-cors 3.0.2 py36_0\', \'fontconfig 2.12.1 2\', \'freetype 2.5.5 2\', \'get_terminal_size 1.0.0 py36_0\', \'gevent 1.2.1 py36_0\', \'glib 2.50.2 1\', \'greenlet 0.4.11 py36_0\', \'gst-plugins-base 1.8.0 0\', \'gstreamer 1.8.0 0\', \'h5py 2.6.0 np111py36_2\', \'harfbuzz 0.9.39 2\', \'hdf5 1.8.17 1\', \'heapdict 1.0.0 py36_1\', \'icu 54.1 0\', \'idna 2.2 py36_0\', \'imagesize 0.7.1 py36_0\', \'ipykernel 4.5.2 py36_0\', \'ipython 5.1.0 py36_0\', \'ipython_genutils 0.1.0 py36_0\', \'ipywidgets 5.2.2 py36_1\', \'isort 4.2.5 py36_0\', \'itsdangerous 0.24 py36_0\', \'jbig 2.1 0\', \'jdcal 1.3 py36_0\', \'jedi 0.9.0 py36_1\', \'jinja2 2.9.4 py36_0\', \'jpeg 9b 0\', \'jsonschema 2.5.1 py36_0\', \'jupyter 1.0.0 py36_3\', \'jupyter_client 4.4.0 py36_0\', \'jupyter_console 5.0.0 py36_0\', \'jupyter_core 4.2.1 py36_0\', \'lazy-object-proxy 1.2.2 py36_0\', \'libffi 3.2.1 1\', \'libgcc 4.8.5 2\', \'libgfortran 3.0.0 1\', \'libiconv 1.14 0\', \'libpng 1.6.27 0\', \'libsodium 1.0.10 0\', \'libtiff 4.0.6 3\', \'libxcb 1.12 1\', \'libxml2 2.9.4 0\', \'libxslt 1.1.29 0\', \'llvmlite 0.15.0 py36_0\', \'locket 0.2.0 py36_1\', \'lxml 3.7.2 py36_0\', \'markupsafe 0.23 py36_2\', \'matplotlib 2.0.0 np111py36_0\', \'mistune 0.7.3 py36_0\', \'mkl 2017.0.1 0\', \'mkl-service 1.1.2 py36_3\', \'mpmath 0.19 py36_1\', \'multipledispatch 0.4.9 py36_0\', \'nbconvert 4.2.0 py36_0\', \'nbformat 4.2.0 py36_0\', \'networkx 1.11 py36_0\', \'nltk 3.2.2 py36_0\', \'nose 1.3.7 py36_1\', \'notebook 4.3.1 py36_0\', \'numba 0.30.1 np111py36_0\', \'numexpr 2.6.1 np111py36_2\', \'numpy 1.11.3 py36_0\', \'numpydoc 0.6.0 py36_0\', \'odo 0.5.0 py36_1\', \'openpyxl 2.4.1 py36_0\', \'openssl 1.0.2k 0\', \'pandas 0.19.2 np111py36_1\', \'partd 0.3.7 py36_0\', \'path.py 10.0 py36_0\', \'pathlib2 2.2.0 py36_0\', \'patsy 0.4.1 py36_0\', \'pcre 8.39 1\', \'pep8 1.7.0 py36_0\', \'pexpect 4.2.1 py36_0\', \'pickleshare 0.7.4 py36_0\', \'pillow 4.0.0 py36_0\', \'pip 9.0.1 py36_1\', \'pixman 0.34.0 0\', \'ply 3.9 py36_0\', \'prompt_toolkit 1.0.9 py36_0\', \'psutil 5.0.1 py36_0\', \'ptyprocess 0.5.1 py36_0\', \'py 1.4.32 py36_0\', \'pyasn1 0.1.9 py36_0\', \'pycosat 0.6.1 py36_1\', \'pycparser 2.17 py36_0\', \'pycrypto 2.6.1 py36_4\', \'pycurl 7.43.0 py36_2\', \'pyflakes 1.5.0 py36_0\', \'pygments 2.1.3 py36_0\', \'pylint 1.6.4 py36_1\', \'pyopenssl 16.2.0 py36_0\', \'pyparsing 2.1.4 py36_0\', \'pyqt 5.6.0 py36_2\', \'pytables 3.3.0 np111py36_0\', \'pytest 3.0.5 py36_0\', \'python 3.6.0 0\', \'python-dateutil 2.6.0 py36_0\', \'pytz 2016.10 py36_0\', \'pyyaml 3.12 py36_0\', \'pyzmq 16.0.2 py36_0\', \'qt 5.6.2 3\', \'qtawesome 0.4.3 py36_0\', \'qtconsole 4.2.1 py36_1\', \'qtpy 1.2.1 py36_0\', \'readline 6.2 2\', \'redis 3.2.0 0\', \'redis-py 2.10.5 py36_0\', \'requests 2.12.4 py36_0\', \'rope 0.9.4 py36_1\', \'scikit-image 0.12.3 np111py36_1\', \'scikit-learn 0.18.1 np111py36_1\', \'scipy 0.18.1 np111py36_1\', \'seaborn 0.7.1 py36_0\', \'setuptools 27.2.0 py36_0\', \'simplegeneric 0.8.1 py36_1\', \'singledispatch 3.4.0.3 py36_0\', \'sip 4.18 py36_0\', \'six 1.10.0 py36_0\', \'snowballstemmer 1.2.1 py36_0\', \'sockjs-tornado 1.0.3 py36_0\', \'sphinx 1.5.1 py36_0\', \'spyder 3.1.2 py36_0\', \'sqlalchemy 1.1.5 py36_0\', \'sqlite 3.13.0 0\', \'statsmodels 0.6.1 np111py36_1\', \'sympy 1.0 py36_0\', \'terminado 0.6 py36_0\', \'tk 8.5.18 0\', \'toolz 0.8.2 py36_0\', \'tornado 4.4.2 py36_0\', \'traitlets 4.3.1 py36_0\', \'unicodecsv 0.14.1 py36_0\', \'wcwidth 0.1.7 py36_0\', \'werkzeug 0.11.15 py36_0\', \'wheel 0.29.0 py36_0\', \'widgetsnbextension 1.2.6 py36_0\', \'wrapt 1.10.8 py36_0\', \'xlrd 1.0.0 py36_0\', \'xlsxwriter 0.9.6 py36_0\', \'xlwt 1.2.0 py36_0\', \'xz 5.2.2 1\', \'yaml 0.1.6 0\', \'zeromq 4.1.5 0\', \'zlib 1.2.8 3\'), size=5766, subdir=\'linux-64\', version=\'4.3.0\', fn=\'anaconda-4.3.0-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', priority=1, url=\'https://repo.continuum.io/pkgs/free/linux-64/anaconda-4.3.0-np111py36_0.tar.bz2\', auth=None, files=(\'lib/python3.6/version.txt\',), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/anaconda-4.3.0-np111py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "defaults::anaconda-client-1.6.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'clyent\', \'python 3.6*\', \'python-dateutil\', \'pytz\', \'pyyaml\', \'requests >=2.9.1\', \'setuptools\'), license=\'BSD\', md5=\'99b9f7a31e57ca72406713f7e894a528\', name=\'anaconda-client\', platform=\'linux\', subdir=\'linux-64\', version=\'1.6.0\', fn=\'anaconda-client-1.6.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/anaconda-client-1.6.0-py36_0.tar.bz2\', files=(\'bin/anaconda\', \'bin/binstar\', \'bin/conda-server\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/anaconda_client-1.6.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/binstar_client/__init__.py\', \'lib/python3.6/site-packages/binstar_client/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/__pycache__/pprintb.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/__pycache__/requests_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/_version.py\', \'lib/python3.6/site-packages/binstar_client/commands/__init__.py\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/authorizations.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/channel.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/copy.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/download.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/groups.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/login.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/logout.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/package.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/remove.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/search.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/show.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/upload.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/__pycache__/whoami.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/commands/authorizations.py\', \'lib/python3.6/site-packages/binstar_client/commands/channel.py\', \'lib/python3.6/site-packages/binstar_client/commands/config.py\', \'lib/python3.6/site-packages/binstar_client/commands/copy.py\', \'lib/python3.6/site-packages/binstar_client/commands/download.py\', \'lib/python3.6/site-packages/binstar_client/commands/groups.py\', \'lib/python3.6/site-packages/binstar_client/commands/login.py\', \'lib/python3.6/site-packages/binstar_client/commands/logout.py\', \'lib/python3.6/site-packages/binstar_client/commands/notebook.py\', \'lib/python3.6/site-packages/binstar_client/commands/package.py\', \'lib/python3.6/site-packages/binstar_client/commands/remove.py\', \'lib/python3.6/site-packages/binstar_client/commands/search.py\', \'lib/python3.6/site-packages/binstar_client/commands/show.py\', \'lib/python3.6/site-packages/binstar_client/commands/upload.py\', \'lib/python3.6/site-packages/binstar_client/commands/whoami.py\', \'lib/python3.6/site-packages/binstar_client/errors.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__init__.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/conda.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/conda_installer.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/env.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/ipynb.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/pypi.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/r.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/__pycache__/uitls.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/conda.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/conda_installer.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/env.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/ipynb.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/pypi.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/r.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__init__.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/test_conda.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/test_env.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/test_ipynb.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/test_pypi.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/__pycache__/test_r.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/test_conda.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/test_env.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/test_ipynb.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/test_pypi.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/tests/test_r.py\', \'lib/python3.6/site-packages/binstar_client/inspect_package/uitls.py\', \'lib/python3.6/site-packages/binstar_client/mixins/__init__.py\', \'lib/python3.6/site-packages/binstar_client/mixins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/mixins/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/mixins/__pycache__/organizations.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/mixins/__pycache__/package.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/mixins/channels.py\', \'lib/python3.6/site-packages/binstar_client/mixins/organizations.py\', \'lib/python3.6/site-packages/binstar_client/mixins/package.py\', \'lib/python3.6/site-packages/binstar_client/pprintb.py\', \'lib/python3.6/site-packages/binstar_client/requests_ext.py\', \'lib/python3.6/site-packages/binstar_client/scripts/__init__.py\', \'lib/python3.6/site-packages/binstar_client/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/scripts/__pycache__/cli.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/scripts/cli.py\', \'lib/python3.6/site-packages/binstar_client/tests/__init__.py\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/coverage_report.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/fixture.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_authorizations.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_config.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_copy.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_license.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_login.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_packages.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_register.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_requests_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_subdir.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_upload.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/test_whoami.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/__pycache__/urlmock.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/tests/coverage_report.py\', \'lib/python3.6/site-packages/binstar_client/tests/fixture.py\', \'lib/python3.6/site-packages/binstar_client/tests/runner.py\', \'lib/python3.6/site-packages/binstar_client/tests/runtests.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_authorizations.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_config.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_copy.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_groups.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_license.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_login.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_packages.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_register.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_requests_ext.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_subdir.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_upload.py\', \'lib/python3.6/site-packages/binstar_client/tests/test_whoami.py\', \'lib/python3.6/site-packages/binstar_client/tests/urlmock.py\', \'lib/python3.6/site-packages/binstar_client/utils/__init__.py\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/appdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/conda.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/detect.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/http_codes.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/pprint.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/__pycache__/spec.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/appdirs.py\', \'lib/python3.6/site-packages/binstar_client/utils/conda.py\', \'lib/python3.6/site-packages/binstar_client/utils/config.py\', \'lib/python3.6/site-packages/binstar_client/utils/detect.py\', \'lib/python3.6/site-packages/binstar_client/utils/handlers.py\', \'lib/python3.6/site-packages/binstar_client/utils/http_codes.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__init__.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__pycache__/data_uri.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__pycache__/downloader.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__pycache__/inflection.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/__pycache__/uploader.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/data_uri.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/downloader.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/inflection.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__init__.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/test_data_uri.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/test_downloader.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/test_inflectors.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/__pycache__/test_uploader.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/test_base.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/test_data_uri.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/test_downloader.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/test_inflectors.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/tests/test_uploader.py\', \'lib/python3.6/site-packages/binstar_client/utils/notebook/uploader.py\', \'lib/python3.6/site-packages/binstar_client/utils/pprint.py\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__init__.py\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__pycache__/inspectors.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/projects/__pycache__/uploader.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/projects/filters.py\', \'lib/python3.6/site-packages/binstar_client/utils/projects/inspectors.py\', \'lib/python3.6/site-packages/binstar_client/utils/projects/models.py\', \'lib/python3.6/site-packages/binstar_client/utils/projects/uploader.py\', \'lib/python3.6/site-packages/binstar_client/utils/spec.py\', \'lib/python3.6/site-packages/binstar_client/utils/test/__init__.py\', \'lib/python3.6/site-packages/binstar_client/utils/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/test/__pycache__/test_conda.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/test/__pycache__/test_config.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/test/__pycache__/test_detect.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/test/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/binstar_client/utils/test/test_conda.py\', \'lib/python3.6/site-packages/binstar_client/utils/test/test_config.py\', \'lib/python3.6/site-packages/binstar_client/utils/test/test_detect.py\', \'lib/python3.6/site-packages/binstar_client/utils/test/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/anaconda-client-1.6.0-py36_0\', type=1))", "defaults::anaconda-navigator-1.4.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'_license\', \'anaconda-client >=1.6\', \'pillow\', \'psutil\', \'pyqt >=5.6\', \'python 3.6*\', \'pyyaml\', \'qtpy >=1.2\', \'requests\'), license=\'proprietary - Continuum Analytics, Inc.\', license_family=\'Proprietary\', md5=\'df04c3b39832a3486ba9e7606e015f91\', name=\'anaconda-navigator\', platform=\'linux\', subdir=\'linux-64\', version=\'1.4.3\', fn=\'anaconda-navigator-1.4.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/anaconda-navigator-1.4.3-py36_0.tar.bz2\', files=(\'bin/anaconda-navigator\', \'lib/python3.6/site-packages/anaconda_navigator-1.4.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/anaconda_navigator-1.4.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/anaconda_navigator-1.4.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/anaconda_navigator-1.4.3-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/anaconda_navigator-1.4.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/anaconda_navigator/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/__pycache__/anaconda_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/__pycache__/client_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/__pycache__/conda_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/__pycache__/download_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/anaconda_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/client_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/conda_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/download_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/__pycache__/test_client_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/__pycache__/test_conda_api.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/test_client_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/api/tests/test_conda_api.py\', \'lib/python3.6/site-packages/anaconda_navigator/app/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/app/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/app/__pycache__/cli.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/app/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/app/__pycache__/start.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/app/cli.py\', \'lib/python3.6/site-packages/anaconda_navigator/app/icons/Icon1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/app/icons/MyIcon.icns\', \'lib/python3.6/site-packages/anaconda_navigator/app/icons/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/app/icons/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/app/main.py\', \'lib/python3.6/site-packages/anaconda_navigator/app/start.py\', \'lib/python3.6/site-packages/anaconda_navigator/config/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/config/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/config/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/config/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/config/__pycache__/user.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/config/base.py\', \'lib/python3.6/site-packages/anaconda_navigator/config/main.py\', \'lib/python3.6/site-packages/anaconda_navigator/config/user.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/HTTPLog.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/Tracker.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/__pycache__/HTTPLog.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/__pycache__/Tracker.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/tests/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/UniversalAnalytics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/external/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/static/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/content/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/static/content/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/content/links.json\', \'lib/python3.6/site-packages/anaconda_navigator/static/css/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/static/css/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/css/styles.css\', \'lib/python3.6/site-packages/anaconda_navigator/static/css/styles.scss\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-B.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-BI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-C.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-L.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-LI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-M.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-MI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-R.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/Ubuntu-RI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/UbuntuMono-B.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/UbuntuMono-BI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/UbuntuMono-R.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/UbuntuMono-RI.ttf\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/static/fonts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-128x128.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-16x16.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-24x24.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-256x256.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-32x32.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-48x48.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-512x512.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-64x64.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-75x75.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-icon-large-1.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-navigator-logo.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda-navigator-logo.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/anaconda.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/conda-manager-spacer.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/default-content-copy.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/default-content.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/glueviz-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icon-import.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/arrow-left.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/arrow-right.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-blank.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-checked-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-checked-disabled.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-checked.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box-disabled.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check-box.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/check.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/close-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/close.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/community-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/community.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/delete-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/delete-forever-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/delete-forever.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/delete.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-add-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-add.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-clone-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-clone.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-import-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env-import.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/env.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/facebook.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/github-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/github.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/home-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/home.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/info-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/info-green-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/info-green.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/info-outline.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/info.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/install-app.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/launch-app.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/learning-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/learning.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/mark-downgrade.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/mark-install.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/mark-remove.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/mark-upgrade.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/open-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/open.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/play-arrow-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/play-arrow.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/play-circle-filled-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/play-circle-filled.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/remove.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/report.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/search.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/settings-disabled.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/settings.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/sort-asc.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/sort-desc.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/twitter-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/twitter.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/update-app-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/update-app.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/update_app.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/warning-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/youtube-active.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/icons/youtube.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/ipython-notebook-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/ipython-qtconsole-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/jupyter-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/anaconda.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/blaze.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/bokeh.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/matplotlib.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/numba_dev_forum.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/numfocus.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/numpy.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/pandas.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/planet_scipy.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/python.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/python.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/scipy.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/scipy2.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/logos/stackoverflow.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/orange-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/python.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/rodeo-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/rodeo-icon-1024x1024.svg\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/rstudio-icon.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spacer.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spinner-16x16.gif\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spinner-32x32.gif\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spinner-green-16x16.gif\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spinner-white-16x16.gif\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/spyder-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/veusz-icon-1024x1024.png\', \'lib/python3.6/site-packages/anaconda_navigator/static/images/veusz-icon-1024x1024.svg\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/analytics.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/encoding.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/findpip.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/fixtures.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/launch.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/logs.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/pretty_json.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/qthelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/__pycache__/styles.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/utils/analytics.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/constants.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/encoding.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/findpip.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/fixtures.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/launch.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/logs.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/pretty_json.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/py3compat.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/qthelpers.py\', \'lib/python3.6/site-packages/anaconda_navigator/utils/styles.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/__pycache__/helperwidgets.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/__pycache__/main_window.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/about.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/environment.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/license.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/logger.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/login.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/preferences.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/quit.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/splash.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/__pycache__/update.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/about.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/channels.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/environment.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/license.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/logger.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/login.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/preferences.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/quit.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/splash.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_about_dialog.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_channels.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_environment_dialogs.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_license_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_logger.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_login_dialog.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_preferences.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_quit_dialog.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_splash.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/__pycache__/test_update_dialog.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_about_dialog.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_channels.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_environment_dialogs.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_license_manager.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_logger.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_login_dialog.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_preferences.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_quit_dialog.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_splash.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/tests/test_update_dialog.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/dialogs/update.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/helperwidgets.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/__pycache__/apps.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/__pycache__/content.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/__pycache__/environments.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/apps.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/content.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/lists/environments.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/main_window.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__pycache__/filter.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__pycache__/model.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__pycache__/packages.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/filter.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/model.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/packages.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/manager/table.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__pycache__/community.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__pycache__/environments.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__pycache__/home.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/__pycache__/tabwidget.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/community.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/environments.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/home.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tabwidget.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/__pycache__/test_community_tab.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/__pycache__/test_environments_tab.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/test_community_tab.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tabs/tests/test_environments_tab.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tests/__init__.py\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tests/__pycache__/test_main_window.cpython-36.pyc\', \'lib/python3.6/site-packages/anaconda_navigator/widgets/tests/test_main_window.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/anaconda-navigator-1.4.3-py36_0\', type=1))", "defaults::astroid-1.4.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'lazy-object-proxy\', \'python 3.6*\', \'six\', \'wrapt\'), license=\'LGPL\', md5=\'2cfa20367dd7b4f4a2c48decc8e038d5\', name=\'astroid\', platform=\'linux\', subdir=\'linux-64\', version=\'1.4.9\', fn=\'astroid-1.4.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/astroid-1.4.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/astroid-1.4.9-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/astroid-1.4.9-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/astroid-1.4.9-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/astroid-1.4.9-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/astroid-1.4.9-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/astroid/__init__.py\', \'lib/python3.6/site-packages/astroid/__pkginfo__.py\', \'lib/python3.6/site-packages/astroid/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/__pkginfo__.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/arguments.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/as_string.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/astpeephole.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/bases.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/builder.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/inference.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/mixins.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/modutils.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/node_classes.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/objects.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/protocols.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/raw_building.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/rebuilder.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/scoped_nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/arguments.py\', \'lib/python3.6/site-packages/astroid/as_string.py\', \'lib/python3.6/site-packages/astroid/astpeephole.py\', \'lib/python3.6/site-packages/astroid/bases.py\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_builtin_inference.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_dateutil.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_gi.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_mechanize.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_nose.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_pytest.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_qt.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_six.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_ssl.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/__pycache__/brain_stdlib.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/brain/brain_builtin_inference.py\', \'lib/python3.6/site-packages/astroid/brain/brain_dateutil.py\', \'lib/python3.6/site-packages/astroid/brain/brain_gi.py\', \'lib/python3.6/site-packages/astroid/brain/brain_mechanize.py\', \'lib/python3.6/site-packages/astroid/brain/brain_nose.py\', \'lib/python3.6/site-packages/astroid/brain/brain_numpy.py\', \'lib/python3.6/site-packages/astroid/brain/brain_pytest.py\', \'lib/python3.6/site-packages/astroid/brain/brain_qt.py\', \'lib/python3.6/site-packages/astroid/brain/brain_six.py\', \'lib/python3.6/site-packages/astroid/brain/brain_ssl.py\', \'lib/python3.6/site-packages/astroid/brain/brain_stdlib.py\', \'lib/python3.6/site-packages/astroid/builder.py\', \'lib/python3.6/site-packages/astroid/context.py\', \'lib/python3.6/site-packages/astroid/decorators.py\', \'lib/python3.6/site-packages/astroid/exceptions.py\', \'lib/python3.6/site-packages/astroid/inference.py\', \'lib/python3.6/site-packages/astroid/manager.py\', \'lib/python3.6/site-packages/astroid/mixins.py\', \'lib/python3.6/site-packages/astroid/modutils.py\', \'lib/python3.6/site-packages/astroid/node_classes.py\', \'lib/python3.6/site-packages/astroid/nodes.py\', \'lib/python3.6/site-packages/astroid/objects.py\', \'lib/python3.6/site-packages/astroid/protocols.py\', \'lib/python3.6/site-packages/astroid/raw_building.py\', \'lib/python3.6/site-packages/astroid/rebuilder.py\', \'lib/python3.6/site-packages/astroid/scoped_nodes.py\', \'lib/python3.6/site-packages/astroid/test_utils.py\', \'lib/python3.6/site-packages/astroid/tests/__init__.py\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/resources.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_brain.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_inference.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_lookup.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_modutils.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_peephole.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_protocols.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_python3.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_raw_building.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_regrtest.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_scoped_nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/__pycache__/unittest_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astroid/tests/resources.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_brain.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_builder.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_inference.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_lookup.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_manager.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_modutils.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_nodes.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_objects.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_peephole.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_protocols.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_python3.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_raw_building.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_regrtest.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_scoped_nodes.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_transforms.py\', \'lib/python3.6/site-packages/astroid/tests/unittest_utils.py\', \'lib/python3.6/site-packages/astroid/transforms.py\', \'lib/python3.6/site-packages/astroid/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/astroid-1.4.9-py36_0\', type=1))", "defaults::astropy-1.3-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'numpy 1.11*\', \'python 3.6*\'), license=\'BSD\', md5=\'e24dc50a09d076db7ba514cf129dec62\', name=\'astropy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.3\', fn=\'astropy-1.3-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/astropy-1.3-np111py36_0.tar.bz2\', files=(\'bin/fits2bitmap\', \'bin/fitscheck\', \'bin/fitsdiff\', \'bin/fitsheader\', \'bin/fitsinfo\', \'bin/samp_hub\', \'bin/volint\', \'bin/wcslint\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/astropy-1.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/astropy/__init__.py\', \'lib/python3.6/site-packages/astropy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/__pycache__/cython_version.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/__pycache__/logger.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_compiler.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/_erfa/__init__.py\', \'lib/python3.6/site-packages/astropy/_erfa/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/__pycache__/erfa_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/_core.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/_erfa/core.py\', \'lib/python3.6/site-packages/astropy/_erfa/erfa_generator.py\', \'lib/python3.6/site-packages/astropy/_erfa/setup_package.py\', \'lib/python3.6/site-packages/astropy/_erfa/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/_erfa/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/tests/__pycache__/test_erfa.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/_erfa/tests/test_erfa.py\', \'lib/python3.6/site-packages/astropy/analytic_functions/__init__.py\', \'lib/python3.6/site-packages/astropy/analytic_functions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/analytic_functions/__pycache__/blackbody.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/analytic_functions/blackbody.py\', \'lib/python3.6/site-packages/astropy/analytic_functions/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/analytic_functions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/analytic_functions/tests/__pycache__/test_blackbody.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/analytic_functions/tests/test_blackbody.py\', \'lib/python3.6/site-packages/astropy/astropy.cfg\', \'lib/python3.6/site-packages/astropy/config/__init__.py\', \'lib/python3.6/site-packages/astropy/config/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/__pycache__/affiliated.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/__pycache__/configuration.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/__pycache__/paths.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/affiliated.py\', \'lib/python3.6/site-packages/astropy/config/configuration.py\', \'lib/python3.6/site-packages/astropy/config/paths.py\', \'lib/python3.6/site-packages/astropy/config/setup_package.py\', \'lib/python3.6/site-packages/astropy/config/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/config/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/tests/__pycache__/test_configs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/config/tests/data/alias.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/data/astropy.0.3.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/data/astropy.0.3.windows.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/data/deprecated.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/data/empty.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/data/not_empty.cfg\', \'lib/python3.6/site-packages/astropy/config/tests/test_configs.py\', \'lib/python3.6/site-packages/astropy/conftest.py\', \'lib/python3.6/site-packages/astropy/constants/__init__.py\', \'lib/python3.6/site-packages/astropy/constants/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/__pycache__/cgs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/__pycache__/constant.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/__pycache__/si.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/cgs.py\', \'lib/python3.6/site-packages/astropy/constants/constant.py\', \'lib/python3.6/site-packages/astropy/constants/setup_package.py\', \'lib/python3.6/site-packages/astropy/constants/si.py\', \'lib/python3.6/site-packages/astropy/constants/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/constants/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/tests/__pycache__/test_constant.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/constants/tests/test_constant.py\', \'lib/python3.6/site-packages/astropy/constants/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/convolution/__init__.py\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/convolve.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/boundary_extend.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/convolution/boundary_fill.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/convolution/boundary_none.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/convolution/boundary_wrap.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/convolution/convolve.py\', \'lib/python3.6/site-packages/astropy/convolution/core.py\', \'lib/python3.6/site-packages/astropy/convolution/kernels.py\', \'lib/python3.6/site-packages/astropy/convolution/setup_package.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_convolve.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_convolve_fft.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_convolve_kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_convolve_nddata.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_convolve_speeds.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_discretize.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_kernel_class.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_convolve.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_convolve_fft.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_convolve_kernels.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_convolve_nddata.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_convolve_speeds.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_discretize.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_kernel_class.py\', \'lib/python3.6/site-packages/astropy/convolution/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/convolution/utils.py\', \'lib/python3.6/site-packages/astropy/coordinates/__init__.py\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/angle_lextab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/angle_parsetab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/angle_utilities.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/angles.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/baseframe.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/calculation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/distances.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/earth.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/earth_orientation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/matching.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/matrix_utilities.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/name_resolve.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/orbital_elements.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/representation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/sites.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/sky_coordinate.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/solar_system.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/__pycache__/transformations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/angle_lextab.py\', \'lib/python3.6/site-packages/astropy/coordinates/angle_parsetab.py\', \'lib/python3.6/site-packages/astropy/coordinates/angle_utilities.py\', \'lib/python3.6/site-packages/astropy/coordinates/angles.py\', \'lib/python3.6/site-packages/astropy/coordinates/baseframe.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__init__.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/altaz.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/cirs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/cirs_observed_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/ecliptic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/ecliptic_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/fk4.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/fk4_fk5_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/fk5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/galactic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/galactic_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/galactocentric.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/gcrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/hcrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/icrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/icrs_cirs_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/icrs_fk5_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/intermediate_rotation_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/itrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/skyoffset.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/supergalactic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/supergalactic_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/altaz.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/cirs.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/cirs_observed_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/ecliptic.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/ecliptic_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/fk4.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/fk4_fk5_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/fk5.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/galactic.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/galactic_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/galactocentric.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/gcrs.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/hcrs.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/icrs.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/icrs_cirs_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/icrs_fk5_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/intermediate_rotation_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/itrs.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/skyoffset.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/supergalactic.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/supergalactic_transforms.py\', \'lib/python3.6/site-packages/astropy/coordinates/builtin_frames/utils.py\', \'lib/python3.6/site-packages/astropy/coordinates/calculation.py\', \'lib/python3.6/site-packages/astropy/coordinates/data/constellation_data_roman87.dat\', \'lib/python3.6/site-packages/astropy/coordinates/data/constellation_names.dat\', \'lib/python3.6/site-packages/astropy/coordinates/data/sites.json\', \'lib/python3.6/site-packages/astropy/coordinates/distances.py\', \'lib/python3.6/site-packages/astropy/coordinates/earth.py\', \'lib/python3.6/site-packages/astropy/coordinates/earth_orientation.py\', \'lib/python3.6/site-packages/astropy/coordinates/errors.py\', \'lib/python3.6/site-packages/astropy/coordinates/funcs.py\', \'lib/python3.6/site-packages/astropy/coordinates/matching.py\', \'lib/python3.6/site-packages/astropy/coordinates/matrix_utilities.py\', \'lib/python3.6/site-packages/astropy/coordinates/name_resolve.py\', \'lib/python3.6/site-packages/astropy/coordinates/orbital_elements.py\', \'lib/python3.6/site-packages/astropy/coordinates/representation.py\', \'lib/python3.6/site-packages/astropy/coordinates/setup_package.py\', \'lib/python3.6/site-packages/astropy/coordinates/sites.py\', \'lib/python3.6/site-packages/astropy/coordinates/sky_coordinate.py\', \'lib/python3.6/site-packages/astropy/coordinates/solar_system.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_angles.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_angular_separation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_api_ape5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_arrays.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_atc_replacements.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_celestial_transformations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_distance.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_earth.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_formatting.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_frames.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_iau_fullstack.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_intermediate_transformations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_matching.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_matrix_utilities.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_name_resolve.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_representation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_representation_arithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_representation_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_shape_manipulation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_sites.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_sky_coord.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_skyoffset_transformations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_solar_system.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_transformations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/test_unit_representation.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__init__.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/generate_ref_ast.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_altaz_icrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_ecliptic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_fk4_no_e_fk4.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_fk4_no_e_fk5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_galactic_fk4.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/__pycache__/test_icrs_fk5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/fk4_no_e_fk4.csv\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/fk4_no_e_fk5.csv\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/galactic_fk4.csv\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/generate_ref_ast.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/icrs_fk5.csv\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_altaz_icrs.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_ecliptic.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk4.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_fk4_no_e_fk5.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_galactic_fk4.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/accuracy/test_icrs_fk5.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_angles.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_angular_separation.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_api_ape5.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_arrays.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_atc_replacements.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_celestial_transformations.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_distance.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_earth.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_formatting.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_frames.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_funcs.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_iau_fullstack.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_intermediate_transformations.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_matching.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_matrix_utilities.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_name_resolve.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_regression.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_representation.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_representation_arithmetic.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_representation_methods.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_shape_manipulation.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_sites.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_sky_coord.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_skyoffset_transformations.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_solar_system.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_transformations.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/test_unit_representation.py\', \'lib/python3.6/site-packages/astropy/coordinates/tests/utils.py\', \'lib/python3.6/site-packages/astropy/coordinates/transformations.py\', \'lib/python3.6/site-packages/astropy/cosmology/__init__.py\', \'lib/python3.6/site-packages/astropy/cosmology/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/__pycache__/funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/__pycache__/parameters.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/core.py\', \'lib/python3.6/site-packages/astropy/cosmology/funcs.py\', \'lib/python3.6/site-packages/astropy/cosmology/parameters.py\', \'lib/python3.6/site-packages/astropy/cosmology/scalar_inv_efuncs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/cosmology/setup_package.py\', \'lib/python3.6/site-packages/astropy/cosmology/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/cosmology/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/tests/__pycache__/test_cosmology.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/cosmology/tests/test_cosmology.py\', \'lib/python3.6/site-packages/astropy/cosmology/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/cython_version.py\', \'lib/python3.6/site-packages/astropy/extern/__init__.py\', \'lib/python3.6/site-packages/astropy/extern/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/__pycache__/configobj.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/__pycache__/pytest.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/bundled/__init__.py\', \'lib/python3.6/site-packages/astropy/extern/bundled/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/bundled/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/bundled/six.py\', \'lib/python3.6/site-packages/astropy/extern/configobj.py\', \'lib/python3.6/site-packages/astropy/extern/configobj/__init__.py\', \'lib/python3.6/site-packages/astropy/extern/configobj/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/configobj/__pycache__/configobj.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/configobj/__pycache__/validate.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/configobj/configobj.py\', \'lib/python3.6/site-packages/astropy/extern/configobj/validate.py\', \'lib/python3.6/site-packages/astropy/extern/css/jquery.dataTables.css\', \'lib/python3.6/site-packages/astropy/extern/js/jquery-3.1.1.js\', \'lib/python3.6/site-packages/astropy/extern/js/jquery-3.1.1.min.js\', \'lib/python3.6/site-packages/astropy/extern/js/jquery.dataTables.js\', \'lib/python3.6/site-packages/astropy/extern/js/jquery.dataTables.min.js\', \'lib/python3.6/site-packages/astropy/extern/ply/__init__.py\', \'lib/python3.6/site-packages/astropy/extern/ply/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/ply/__pycache__/cpp.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/ply/__pycache__/ctokens.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/ply/__pycache__/lex.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/ply/__pycache__/yacc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/extern/ply/cpp.py\', \'lib/python3.6/site-packages/astropy/extern/ply/ctokens.py\', \'lib/python3.6/site-packages/astropy/extern/ply/lex.py\', \'lib/python3.6/site-packages/astropy/extern/ply/yacc.py\', \'lib/python3.6/site-packages/astropy/extern/pytest.py\', \'lib/python3.6/site-packages/astropy/extern/setup_package.py\', \'lib/python3.6/site-packages/astropy/extern/six.py\', \'lib/python3.6/site-packages/astropy/io/__init__.py\', \'lib/python3.6/site-packages/astropy/io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__init__.py\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/cds.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/daophot.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/ecsv.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/fastbasic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/fixedwidth.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/ipac.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/rst.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/sextractor.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/__pycache__/ui.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/basic.py\', \'lib/python3.6/site-packages/astropy/io/ascii/cds.py\', \'lib/python3.6/site-packages/astropy/io/ascii/connect.py\', \'lib/python3.6/site-packages/astropy/io/ascii/core.py\', \'lib/python3.6/site-packages/astropy/io/ascii/cparser.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/io/ascii/daophot.py\', \'lib/python3.6/site-packages/astropy/io/ascii/ecsv.py\', \'lib/python3.6/site-packages/astropy/io/ascii/fastbasic.py\', \'lib/python3.6/site-packages/astropy/io/ascii/fixedwidth.py\', \'lib/python3.6/site-packages/astropy/io/ascii/html.py\', \'lib/python3.6/site-packages/astropy/io/ascii/ipac.py\', \'lib/python3.6/site-packages/astropy/io/ascii/latex.py\', \'lib/python3.6/site-packages/astropy/io/ascii/misc.py\', \'lib/python3.6/site-packages/astropy/io/ascii/rst.py\', \'lib/python3.6/site-packages/astropy/io/ascii/setup_package.py\', \'lib/python3.6/site-packages/astropy/io/ascii/sextractor.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_c_reader.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_cds_header_from_readme.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_compressed.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_ecsv.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_fixedwidth.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_html.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_ipac_definitions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_read.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_rst.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_types.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/__pycache__/test_write.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/common.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/apostrophe.rdb\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/apostrophe.tab\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/bad.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/bars_at_ends.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/description/ReadMe\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/description/table.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/glob/ReadMe\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/glob/lmxbrefs.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/multi/ReadMe\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/multi/lhs2065.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds/multi/lp944-20.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds2.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/cds_malformed.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/commented_header.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/commented_header2.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/continuation.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/daophot.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/daophot.dat.gz\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/daophot2.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/daophot3.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/daophot4.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/fill_values.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/fixed_width_2_line.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/html.html\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/html2.html\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/ipac.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/ipac.dat.bz2\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/ipac.dat.xz\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/latex1.tex\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/latex1.tex.gz\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/latex2.tex\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/latex3.tex\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/nls1_stackinfo.dbout\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_cds.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_daophot.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_ipac.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_sextractor.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_with_header.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/no_data_without_header.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/sextractor.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/sextractor2.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/sextractor3.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/short.rdb\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/short.rdb.bz2\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/short.rdb.gz\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/short.rdb.xz\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/short.tab\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple2.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple3.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple4.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple5.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple_csv.csv\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/simple_csv_missing.csv\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/space_delim_blank_lines.txt\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/space_delim_no_header.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/space_delim_no_names.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/test4.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/test5.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/vizier/ReadMe\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/vizier/table1.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/vizier/table5.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/vots_spec.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/t/whitespace.dat\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_c_reader.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_cds_header_from_readme.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_compressed.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_connect.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_ecsv.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_fixedwidth.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_html.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_ipac_definitions.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_read.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_rst.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_types.py\', \'lib/python3.6/site-packages/astropy/io/ascii/tests/test_write.py\', \'lib/python3.6/site-packages/astropy/io/ascii/ui.py\', \'lib/python3.6/site-packages/astropy/io/fits/__init__.py\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/_numpy_hacks.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/card.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/column.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/convenience.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/diff.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/file.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/fitsrec.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/header.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/__pycache__/verify.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/_numpy_hacks.py\', \'lib/python3.6/site-packages/astropy/io/fits/card.py\', \'lib/python3.6/site-packages/astropy/io/fits/column.py\', \'lib/python3.6/site-packages/astropy/io/fits/compression.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/io/fits/connect.py\', \'lib/python3.6/site-packages/astropy/io/fits/convenience.py\', \'lib/python3.6/site-packages/astropy/io/fits/diff.py\', \'lib/python3.6/site-packages/astropy/io/fits/file.py\', \'lib/python3.6/site-packages/astropy/io/fits/fitsrec.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__init__.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/compressed.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/groups.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/hdulist.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/nonstandard.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/streaming.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/base.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/compressed.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/groups.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/hdulist.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/image.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/nonstandard.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/streaming.py\', \'lib/python3.6/site-packages/astropy/io/fits/hdu/table.py\', \'lib/python3.6/site-packages/astropy/io/fits/header.py\', \'lib/python3.6/site-packages/astropy/io/fits/py3compat.py\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__init__.py\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__pycache__/fitscheck.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__pycache__/fitsdiff.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__pycache__/fitsheader.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/__pycache__/fitsinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/fitscheck.py\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/fitsdiff.py\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/fitsheader.py\', \'lib/python3.6/site-packages/astropy/io/fits/scripts/fitsinfo.py\', \'lib/python3.6/site-packages/astropy/io/fits/setup_package.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_checksum.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_convenience.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_division.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_hdulist.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_header.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_image.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_nonstandard.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_structured.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_uint.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/arange.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/ascii.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/blank.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/checksum.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/comp.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/compressed_float_bzero.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/fixed-1890.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/memtest.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/o4sp040b0_raw.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/random_groups.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/scale.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/stddata.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/table.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/tb.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/tdim.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/test0.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/data/zerowidth.fits\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_checksum.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_connect.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_convenience.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_core.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_diff.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_division.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_groups.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_hdulist.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_header.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_image.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_nonstandard.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_structured.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_table.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_uint.py\', \'lib/python3.6/site-packages/astropy/io/fits/tests/test_util.py\', \'lib/python3.6/site-packages/astropy/io/fits/util.py\', \'lib/python3.6/site-packages/astropy/io/fits/verify.py\', \'lib/python3.6/site-packages/astropy/io/misc/__init__.py\', \'lib/python3.6/site-packages/astropy/io/misc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/__pycache__/hdf5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/__pycache__/pickle_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/__pycache__/yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/connect.py\', \'lib/python3.6/site-packages/astropy/io/misc/hdf5.py\', \'lib/python3.6/site-packages/astropy/io/misc/pickle_helpers.py\', \'lib/python3.6/site-packages/astropy/io/misc/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/io/misc/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/tests/__pycache__/test_hdf5.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/tests/__pycache__/test_pickle_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/tests/__pycache__/test_yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/misc/tests/test_hdf5.py\', \'lib/python3.6/site-packages/astropy/io/misc/tests/test_pickle_helpers.py\', \'lib/python3.6/site-packages/astropy/io/misc/tests/test_yaml.py\', \'lib/python3.6/site-packages/astropy/io/misc/yaml.py\', \'lib/python3.6/site-packages/astropy/io/registry.py\', \'lib/python3.6/site-packages/astropy/io/setup_package.py\', \'lib/python3.6/site-packages/astropy/io/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/io/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/tests/__pycache__/test_registry.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/tests/test_registry.py\', \'lib/python3.6/site-packages/astropy/io/votable/__init__.py\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/converters.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/ucd.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/voexceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/volint.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/__pycache__/xmlutil.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/connect.py\', \'lib/python3.6/site-packages/astropy/io/votable/converters.py\', \'lib/python3.6/site-packages/astropy/io/votable/data/VOTable.dtd\', \'lib/python3.6/site-packages/astropy/io/votable/data/VOTable.v1.1.xsd\', \'lib/python3.6/site-packages/astropy/io/votable/data/VOTable.v1.2.xsd\', \'lib/python3.6/site-packages/astropy/io/votable/data/VOTable.v1.3.xsd\', \'lib/python3.6/site-packages/astropy/io/votable/data/ucd1p-words.txt\', \'lib/python3.6/site-packages/astropy/io/votable/exceptions.py\', \'lib/python3.6/site-packages/astropy/io/votable/setup_package.py\', \'lib/python3.6/site-packages/astropy/io/votable/table.py\', \'lib/python3.6/site-packages/astropy/io/votable/tablewriter.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/converter_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/exception_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/table_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/tree_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/ucd_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/util_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/__pycache__/vo_test.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/tests/converter_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/custom_datatype.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/empty_table.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/gemini.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/irsa-nph-error.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/irsa-nph-m31.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/names.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/no_resource.txt\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/no_resource.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/nonstandard_units.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/regression.bin.tabledata.truth.1.1.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/regression.bin.tabledata.truth.1.3.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/regression.xml\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/tb.fits\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/too_many_columns.xml.gz\', \'lib/python3.6/site-packages/astropy/io/votable/tests/data/validation.txt\', \'lib/python3.6/site-packages/astropy/io/votable/tests/exception_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/table_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/tree_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/ucd_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/util_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tests/vo_test.py\', \'lib/python3.6/site-packages/astropy/io/votable/tree.py\', \'lib/python3.6/site-packages/astropy/io/votable/ucd.py\', \'lib/python3.6/site-packages/astropy/io/votable/util.py\', \'lib/python3.6/site-packages/astropy/io/votable/validator/__init__.py\', \'lib/python3.6/site-packages/astropy/io/votable/validator/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/validator/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/validator/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/validator/__pycache__/result.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/io/votable/validator/html.py\', \'lib/python3.6/site-packages/astropy/io/votable/validator/main.py\', \'lib/python3.6/site-packages/astropy/io/votable/validator/result.py\', \'lib/python3.6/site-packages/astropy/io/votable/validator/urls/cone.big.dat.gz\', \'lib/python3.6/site-packages/astropy/io/votable/validator/urls/cone.broken.dat.gz\', \'lib/python3.6/site-packages/astropy/io/votable/validator/urls/cone.good.dat.gz\', \'lib/python3.6/site-packages/astropy/io/votable/validator/urls/cone.incorrect.dat.gz\', \'lib/python3.6/site-packages/astropy/io/votable/voexceptions.py\', \'lib/python3.6/site-packages/astropy/io/votable/volint.py\', \'lib/python3.6/site-packages/astropy/io/votable/xmlutil.py\', \'lib/python3.6/site-packages/astropy/logger.py\', \'lib/python3.6/site-packages/astropy/modeling/__init__.py\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/fitting.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/functional_models.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/mappings.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/optimizers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/parameters.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/powerlaws.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/projections.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/rotations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/statistic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/tabular.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/_projections.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/modeling/core.py\', \'lib/python3.6/site-packages/astropy/modeling/fitting.py\', \'lib/python3.6/site-packages/astropy/modeling/functional_models.py\', \'lib/python3.6/site-packages/astropy/modeling/mappings.py\', \'lib/python3.6/site-packages/astropy/modeling/models.py\', \'lib/python3.6/site-packages/astropy/modeling/optimizers.py\', \'lib/python3.6/site-packages/astropy/modeling/parameters.py\', \'lib/python3.6/site-packages/astropy/modeling/polynomial.py\', \'lib/python3.6/site-packages/astropy/modeling/powerlaws.py\', \'lib/python3.6/site-packages/astropy/modeling/projections.py\', \'lib/python3.6/site-packages/astropy/modeling/rotations.py\', \'lib/python3.6/site-packages/astropy/modeling/setup_package.py\', \'lib/python3.6/site-packages/astropy/modeling/statistic.py\', \'lib/python3.6/site-packages/astropy/modeling/tabular.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/example_models.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/irafutil.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_compound.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_constraints.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_fitters.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_functional_models.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_input.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_mappings.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_models.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_parameters.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_projections.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_rotations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/1904-66_AZP.fits\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/__init__.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/hst_sip.hdr\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/idcompspec.fits\', \'lib/python3.6/site-packages/astropy/modeling/tests/data/irac_sip.hdr\', \'lib/python3.6/site-packages/astropy/modeling/tests/example_models.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/irafutil.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_compound.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_constraints.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_core.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_fitters.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_functional_models.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_input.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_mappings.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_models.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_parameters.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_polynomial.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_projections.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_rotations.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/test_utils.py\', \'lib/python3.6/site-packages/astropy/modeling/tests/utils.py\', \'lib/python3.6/site-packages/astropy/modeling/utils.py\', \'lib/python3.6/site-packages/astropy/nddata/__init__.py\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/flag_collection.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/nddata.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/nddata_base.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/nddata_withmixins.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/nduncertainty.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/compat.py\', \'lib/python3.6/site-packages/astropy/nddata/decorators.py\', \'lib/python3.6/site-packages/astropy/nddata/flag_collection.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/__init__.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/__pycache__/ndarithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/__pycache__/ndio.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/__pycache__/ndslicing.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/ndarithmetic.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/ndio.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/ndslicing.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/__pycache__/test_ndarithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/__pycache__/test_ndio.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/__pycache__/test_ndslicing.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/test_ndarithmetic.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/test_ndio.py\', \'lib/python3.6/site-packages/astropy/nddata/mixins/tests/test_ndslicing.py\', \'lib/python3.6/site-packages/astropy/nddata/nddata.py\', \'lib/python3.6/site-packages/astropy/nddata/nddata_base.py\', \'lib/python3.6/site-packages/astropy/nddata/nddata_withmixins.py\', \'lib/python3.6/site-packages/astropy/nddata/nduncertainty.py\', \'lib/python3.6/site-packages/astropy/nddata/setup_package.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_flag_collection.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_nddata.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_nddata_base.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_nduncertainty.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_compat.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_decorators.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_flag_collection.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_nddata.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_nddata_base.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_nduncertainty.py\', \'lib/python3.6/site-packages/astropy/nddata/tests/test_utils.py\', \'lib/python3.6/site-packages/astropy/nddata/utils.py\', \'lib/python3.6/site-packages/astropy/setup_package.py\', \'lib/python3.6/site-packages/astropy/stats/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/bayesian_blocks.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/circstats.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/histogram.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/info_theory.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/jackknife.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/__pycache__/sigma_clipping.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/bayesian_blocks.py\', \'lib/python3.6/site-packages/astropy/stats/circstats.py\', \'lib/python3.6/site-packages/astropy/stats/funcs.py\', \'lib/python3.6/site-packages/astropy/stats/histogram.py\', \'lib/python3.6/site-packages/astropy/stats/info_theory.py\', \'lib/python3.6/site-packages/astropy/stats/jackknife.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/core.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/chi2_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/fast_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/fastchi2_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/mle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/scipy_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/slow_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/chi2_impl.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/cython_impl.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/fast_impl.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/fastchi2_impl.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/main.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/mle.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/scipy_impl.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/slow_impl.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/__pycache__/test_mle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/test_mle.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/tests/test_utils.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/implementations/utils.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/tests/__pycache__/test_lombscargle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/lombscargle/tests/test_lombscargle.py\', \'lib/python3.6/site-packages/astropy/stats/setup_package.py\', \'lib/python3.6/site-packages/astropy/stats/sigma_clipping.py\', \'lib/python3.6/site-packages/astropy/stats/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_bayesian_blocks.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_circstats.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_histogram.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_info_theory.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_jackknife.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/__pycache__/test_sigma_clipping.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/stats/tests/test_bayesian_blocks.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_circstats.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_funcs.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_histogram.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_info_theory.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_jackknife.py\', \'lib/python3.6/site-packages/astropy/stats/tests/test_sigma_clipping.py\', \'lib/python3.6/site-packages/astropy/table/__init__.py\', \'lib/python3.6/site-packages/astropy/table/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/bst.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/column.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/groups.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/jsviewer.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/meta.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/np_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/operations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/pprint.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/row.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/sorted_array.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/__pycache__/table_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/_column_mixins.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/table/_np_utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/table/bst.py\', \'lib/python3.6/site-packages/astropy/table/column.py\', \'lib/python3.6/site-packages/astropy/table/groups.py\', \'lib/python3.6/site-packages/astropy/table/index.py\', \'lib/python3.6/site-packages/astropy/table/info.py\', \'lib/python3.6/site-packages/astropy/table/jsviewer.py\', \'lib/python3.6/site-packages/astropy/table/meta.py\', \'lib/python3.6/site-packages/astropy/table/np_utils.py\', \'lib/python3.6/site-packages/astropy/table/operations.py\', \'lib/python3.6/site-packages/astropy/table/pprint.py\', \'lib/python3.6/site-packages/astropy/table/row.py\', \'lib/python3.6/site-packages/astropy/table/setup_package.py\', \'lib/python3.6/site-packages/astropy/table/sorted_array.py\', \'lib/python3.6/site-packages/astropy/table/table.py\', \'lib/python3.6/site-packages/astropy/table/table_helpers.py\', \'lib/python3.6/site-packages/astropy/table/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_array.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_bst.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_column.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_index.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_info.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_init_table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_item_access.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_jsviewer.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_masked.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_mixin.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_np_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_operations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_pprint.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_row.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_subclass.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/__pycache__/test_table.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/table/tests/conftest.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_array.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_bst.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_column.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_groups.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_index.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_info.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_init_table.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_item_access.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_jsviewer.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_masked.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_mixin.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_np_utils.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_operations.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_pprint.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_row.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_subclass.py\', \'lib/python3.6/site-packages/astropy/table/tests/test_table.py\', \'lib/python3.6/site-packages/astropy/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/command.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/disable_internet.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/helper.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/image_tests.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/output_checker.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/pytest_plugins.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/__pycache__/test_logger.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/command.py\', \'lib/python3.6/site-packages/astropy/tests/coveragerc\', \'lib/python3.6/site-packages/astropy/tests/disable_internet.py\', \'lib/python3.6/site-packages/astropy/tests/helper.py\', \'lib/python3.6/site-packages/astropy/tests/image_tests.py\', \'lib/python3.6/site-packages/astropy/tests/output_checker.py\', \'lib/python3.6/site-packages/astropy/tests/pytest_plugins.py\', \'lib/python3.6/site-packages/astropy/tests/runner.py\', \'lib/python3.6/site-packages/astropy/tests/setup_package.py\', \'lib/python3.6/site-packages/astropy/tests/test_logger.py\', \'lib/python3.6/site-packages/astropy/tests/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_open_file_detection.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_quantity_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_run_tests.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_runner.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_skip_remote_data.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/__pycache__/test_socketblocker.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/tests/tests/data/open_file_detection.txt\', \'lib/python3.6/site-packages/astropy/tests/tests/test_imports.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_open_file_detection.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_quantity_helpers.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_run_tests.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_runner.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_skip_remote_data.py\', \'lib/python3.6/site-packages/astropy/tests/tests/test_socketblocker.py\', \'lib/python3.6/site-packages/astropy/time/__init__.py\', \'lib/python3.6/site-packages/astropy/time/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/__pycache__/formats.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/core.py\', \'lib/python3.6/site-packages/astropy/time/formats.py\', \'lib/python3.6/site-packages/astropy/time/setup_package.py\', \'lib/python3.6/site-packages/astropy/time/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_comparisons.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_corrs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_delta.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_guess.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_precision.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_quantity_interaction.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_sidereal.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/__pycache__/test_ut1.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/time/tests/test_basic.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_comparisons.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_corrs.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_delta.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_guess.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_methods.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_precision.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_quantity_interaction.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_sidereal.py\', \'lib/python3.6/site-packages/astropy/time/tests/test_ut1.py\', \'lib/python3.6/site-packages/astropy/time/utils.py\', \'lib/python3.6/site-packages/astropy/units/__init__.py\', \'lib/python3.6/site-packages/astropy/units/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/astrophys.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/cds.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/cgs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/equivalencies.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/imperial.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/physical.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/quantity.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/quantity_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/si.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/astrophys.py\', \'lib/python3.6/site-packages/astropy/units/cds.py\', \'lib/python3.6/site-packages/astropy/units/cgs.py\', \'lib/python3.6/site-packages/astropy/units/core.py\', \'lib/python3.6/site-packages/astropy/units/decorators.py\', \'lib/python3.6/site-packages/astropy/units/equivalencies.py\', \'lib/python3.6/site-packages/astropy/units/format/__init__.py\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/cds.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/cds_lextab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/cds_parsetab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/fits.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/generic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/generic_lextab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/generic_parsetab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/ogip.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/ogip_lextab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/ogip_parsetab.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/unicode_format.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/__pycache__/vounit.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/format/base.py\', \'lib/python3.6/site-packages/astropy/units/format/cds.py\', \'lib/python3.6/site-packages/astropy/units/format/cds_lextab.py\', \'lib/python3.6/site-packages/astropy/units/format/cds_parsetab.py\', \'lib/python3.6/site-packages/astropy/units/format/console.py\', \'lib/python3.6/site-packages/astropy/units/format/fits.py\', \'lib/python3.6/site-packages/astropy/units/format/generic.py\', \'lib/python3.6/site-packages/astropy/units/format/generic_lextab.py\', \'lib/python3.6/site-packages/astropy/units/format/generic_parsetab.py\', \'lib/python3.6/site-packages/astropy/units/format/latex.py\', \'lib/python3.6/site-packages/astropy/units/format/ogip.py\', \'lib/python3.6/site-packages/astropy/units/format/ogip_lextab.py\', \'lib/python3.6/site-packages/astropy/units/format/ogip_parsetab.py\', \'lib/python3.6/site-packages/astropy/units/format/unicode_format.py\', \'lib/python3.6/site-packages/astropy/units/format/utils.py\', \'lib/python3.6/site-packages/astropy/units/format/vounit.py\', \'lib/python3.6/site-packages/astropy/units/function/__init__.py\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/logarithmic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/magnitude_zero_points.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/mixin.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/function/core.py\', \'lib/python3.6/site-packages/astropy/units/function/logarithmic.py\', \'lib/python3.6/site-packages/astropy/units/function/magnitude_zero_points.py\', \'lib/python3.6/site-packages/astropy/units/function/mixin.py\', \'lib/python3.6/site-packages/astropy/units/function/units.py\', \'lib/python3.6/site-packages/astropy/units/imperial.py\', \'lib/python3.6/site-packages/astropy/units/physical.py\', \'lib/python3.6/site-packages/astropy/units/quantity.py\', \'lib/python3.6/site-packages/astropy/units/quantity_helper.py\', \'lib/python3.6/site-packages/astropy/units/setup_package.py\', \'lib/python3.6/site-packages/astropy/units/si.py\', \'lib/python3.6/site-packages/astropy/units/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/py3_test_quantity_annotations.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_equivalencies.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_logarithmic.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_physical.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_quantity.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_quantity_array_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_quantity_decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_quantity_non_ufuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_quantity_ufuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/__pycache__/test_units.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/units/tests/py3_test_quantity_annotations.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_equivalencies.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_format.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_logarithmic.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_physical.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_quantity.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_quantity_array_methods.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_quantity_decorator.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_quantity_non_ufuncs.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_quantity_ufuncs.py\', \'lib/python3.6/site-packages/astropy/units/tests/test_units.py\', \'lib/python3.6/site-packages/astropy/units/utils.py\', \'lib/python3.6/site-packages/astropy/utils/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/argparse.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/data_info.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/introspection.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/release.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/state.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/__pycache__/timer.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/_compiler.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/utils/argparse.py\', \'lib/python3.6/site-packages/astropy/utils/codegen.py\', \'lib/python3.6/site-packages/astropy/utils/collections.py\', \'lib/python3.6/site-packages/astropy/utils/compat/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/_funcsigs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/argparse.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/fractions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/funcsigs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/gzip.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/numpycompat.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/odict.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/_funcsigs.py\', \'lib/python3.6/site-packages/astropy/utils/compat/argparse.py\', \'lib/python3.6/site-packages/astropy/utils/compat/fractions.py\', \'lib/python3.6/site-packages/astropy/utils/compat/funcsigs.py\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/__pycache__/_base.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/__pycache__/process.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/__pycache__/thread.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/_base.py\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/process.py\', \'lib/python3.6/site-packages/astropy/utils/compat/futures/thread.py\', \'lib/python3.6/site-packages/astropy/utils/compat/gzip.py\', \'lib/python3.6/site-packages/astropy/utils/compat/misc.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/core/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/core/__pycache__/multiarray.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/core/multiarray.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/lib/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/lib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/lib/__pycache__/stride_tricks.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/lib/stride_tricks.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/__pycache__/test_broadcast_arrays.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/__pycache__/test_matmul.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/test_broadcast_arrays.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpy/tests/test_matmul.py\', \'lib/python3.6/site-packages/astropy/utils/compat/numpycompat.py\', \'lib/python3.6/site-packages/astropy/utils/compat/odict.py\', \'lib/python3.6/site-packages/astropy/utils/compat/subprocess.py\', \'lib/python3.6/site-packages/astropy/utils/console.py\', \'lib/python3.6/site-packages/astropy/utils/data.py\', \'lib/python3.6/site-packages/astropy/utils/data_info.py\', \'lib/python3.6/site-packages/astropy/utils/decorators.py\', \'lib/python3.6/site-packages/astropy/utils/exceptions.py\', \'lib/python3.6/site-packages/astropy/utils/iers/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/iers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/iers/__pycache__/iers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/iers/data/ReadMe.eopc04_IAU2000\', \'lib/python3.6/site-packages/astropy/utils/iers/data/ReadMe.finals2000A\', \'lib/python3.6/site-packages/astropy/utils/iers/data/eopc04_IAU2000.62-now\', \'lib/python3.6/site-packages/astropy/utils/iers/iers.py\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/__pycache__/test_iers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/finals2000A-2016-02-30-test\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/finals2000A-2016-04-30-test\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/iers_a_excerpt\', \'lib/python3.6/site-packages/astropy/utils/iers/tests/test_iers.py\', \'lib/python3.6/site-packages/astropy/utils/introspection.py\', \'lib/python3.6/site-packages/astropy/utils/metadata.py\', \'lib/python3.6/site-packages/astropy/utils/misc.py\', \'lib/python3.6/site-packages/astropy/utils/release.py\', \'lib/python3.6/site-packages/astropy/utils/setup_package.py\', \'lib/python3.6/site-packages/astropy/utils/state.py\', \'lib/python3.6/site-packages/astropy/utils/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_argparse.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_console.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_data_info.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_fractions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_gzip.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_introspection.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_odict.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_subprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_timer.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/__pycache__/test_xml.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/data/.hidden_file.txt\', \'lib/python3.6/site-packages/astropy/utils/tests/data/alias.cfg\', \'lib/python3.6/site-packages/astropy/utils/tests/data/invalid.dat.bz2\', \'lib/python3.6/site-packages/astropy/utils/tests/data/invalid.dat.gz\', \'lib/python3.6/site-packages/astropy/utils/tests/data/local.dat\', \'lib/python3.6/site-packages/astropy/utils/tests/data/local.dat.bz2\', \'lib/python3.6/site-packages/astropy/utils/tests/data/local.dat.gz\', \'lib/python3.6/site-packages/astropy/utils/tests/data/local.dat.xz\', \'lib/python3.6/site-packages/astropy/utils/tests/data/test_package/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/tests/data/test_package/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/tests/data/test_package/data/foo.txt\', \'lib/python3.6/site-packages/astropy/utils/tests/data/unicode.txt\', \'lib/python3.6/site-packages/astropy/utils/tests/data/unicode.txt.bz2\', \'lib/python3.6/site-packages/astropy/utils/tests/data/unicode.txt.gz\', \'lib/python3.6/site-packages/astropy/utils/tests/data/unicode.txt.xz\', \'lib/python3.6/site-packages/astropy/utils/tests/test_argparse.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_codegen.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_collections.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_console.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_data.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_data_info.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_decorators.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_fractions.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_gzip.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_introspection.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_metadata.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_misc.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_odict.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_subprocess.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_timer.py\', \'lib/python3.6/site-packages/astropy/utils/tests/test_xml.py\', \'lib/python3.6/site-packages/astropy/utils/timer.py\', \'lib/python3.6/site-packages/astropy/utils/xml/__init__.py\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/iterparser.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/unescaper.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/validate.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/__pycache__/writer.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/utils/xml/_iterparser.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/utils/xml/check.py\', \'lib/python3.6/site-packages/astropy/utils/xml/iterparser.py\', \'lib/python3.6/site-packages/astropy/utils/xml/setup_package.py\', \'lib/python3.6/site-packages/astropy/utils/xml/unescaper.py\', \'lib/python3.6/site-packages/astropy/utils/xml/validate.py\', \'lib/python3.6/site-packages/astropy/utils/xml/writer.py\', \'lib/python3.6/site-packages/astropy/version.py\', \'lib/python3.6/site-packages/astropy/visualization/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/hist.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/interval.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/lupton_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/mpl_normalize.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/mpl_style.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/stretch.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/transform.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/ui.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/hist.py\', \'lib/python3.6/site-packages/astropy/visualization/interval.py\', \'lib/python3.6/site-packages/astropy/visualization/lupton_rgb.py\', \'lib/python3.6/site-packages/astropy/visualization/mpl_normalize.py\', \'lib/python3.6/site-packages/astropy/visualization/mpl_style.py\', \'lib/python3.6/site-packages/astropy/visualization/scripts/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/scripts/__pycache__/fits2bitmap.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/scripts/fits2bitmap.py\', \'lib/python3.6/site-packages/astropy/visualization/scripts/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/scripts/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/scripts/tests/__pycache__/test_fits2bitmap.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/scripts/tests/test_fits2bitmap.py\', \'lib/python3.6/site-packages/astropy/visualization/stretch.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_histogram.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_interval.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_lupton_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_norm.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_stretch.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_ui.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/__pycache__/test_units.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_histogram.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_interval.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_lupton_rgb.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_norm.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_stretch.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_ui.py\', \'lib/python3.6/site-packages/astropy/visualization/tests/test_units.py\', \'lib/python3.6/site-packages/astropy/visualization/transform.py\', \'lib/python3.6/site-packages/astropy/visualization/ui.py\', \'lib/python3.6/site-packages/astropy/visualization/units.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/axislabels.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/coordinate_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/coordinate_range.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/coordinates_map.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/formatter_locator.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/grid_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/patches.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/ticklabels.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/ticks.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/axislabels.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/coordinate_helpers.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/coordinate_range.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/coordinates_map.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/core.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/formatter_locator.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/frame.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/grid_paths.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/patches.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/datasets.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_coordinate_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_display_world_coordinates.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_formatter_locator.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_frame.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_images.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_transform_coord_meta.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/data/2MASS_k_header\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/data/cube_header\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/data/msx_header\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/data/rosat_header\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/data/slice_header\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/datasets.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/setup_package.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_coordinate_helpers.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_display_world_coordinates.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_formatter_locator.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_frame.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_images.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_misc.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_transform_coord_meta.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_transforms.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/tests/test_utils.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/ticklabels.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/ticks.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/transforms.py\', \'lib/python3.6/site-packages/astropy/visualization/wcsaxes/utils.py\', \'lib/python3.6/site-packages/astropy/vo/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/async.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/conesearch.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/__pycache__/vos_catalog.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/async.py\', \'lib/python3.6/site-packages/astropy/vo/client/conesearch.py\', \'lib/python3.6/site-packages/astropy/vo/client/exceptions.py\', \'lib/python3.6/site-packages/astropy/vo/client/setup_package.py\', \'lib/python3.6/site-packages/astropy/vo/client/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/client/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/tests/__pycache__/test_conesearch.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/tests/__pycache__/test_vos_catalog.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/client/tests/data/basic.json\', \'lib/python3.6/site-packages/astropy/vo/client/tests/data/conesearch_error1.xml\', \'lib/python3.6/site-packages/astropy/vo/client/tests/data/conesearch_error2.xml\', \'lib/python3.6/site-packages/astropy/vo/client/tests/data/conesearch_error3.xml\', \'lib/python3.6/site-packages/astropy/vo/client/tests/data/conesearch_error4.xml\', \'lib/python3.6/site-packages/astropy/vo/client/tests/test_conesearch.py\', \'lib/python3.6/site-packages/astropy/vo/client/tests/test_vos_catalog.py\', \'lib/python3.6/site-packages/astropy/vo/client/vos_catalog.py\', \'lib/python3.6/site-packages/astropy/vo/samp/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/hub.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/hub_proxy.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/hub_script.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/integrated_client.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/lockfile_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/ssl_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/standard_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/__pycache__/web_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/client.py\', \'lib/python3.6/site-packages/astropy/vo/samp/constants.py\', \'lib/python3.6/site-packages/astropy/vo/samp/data/astropy_icon.png\', \'lib/python3.6/site-packages/astropy/vo/samp/data/clientaccesspolicy.xml\', \'lib/python3.6/site-packages/astropy/vo/samp/data/crossdomain.xml\', \'lib/python3.6/site-packages/astropy/vo/samp/errors.py\', \'lib/python3.6/site-packages/astropy/vo/samp/hub.py\', \'lib/python3.6/site-packages/astropy/vo/samp/hub_proxy.py\', \'lib/python3.6/site-packages/astropy/vo/samp/hub_script.py\', \'lib/python3.6/site-packages/astropy/vo/samp/integrated_client.py\', \'lib/python3.6/site-packages/astropy/vo/samp/lockfile_helpers.py\', \'lib/python3.6/site-packages/astropy/vo/samp/setup_package.py\', \'lib/python3.6/site-packages/astropy/vo/samp/ssl_utils.py\', \'lib/python3.6/site-packages/astropy/vo/samp/standard_profile.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_client.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_errors.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_hub.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_hub_proxy.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_hub_script.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_standard_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/test_web_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/__pycache__/web_profile_test_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/data/README.md\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/data/test1.crt\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/data/test1.key\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/data/test2.crt\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/data/test2.key\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_client.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_errors.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_helpers.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_hub.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_hub_proxy.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_hub_script.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_standard_profile.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/test_web_profile.py\', \'lib/python3.6/site-packages/astropy/vo/samp/tests/web_profile_test_helpers.py\', \'lib/python3.6/site-packages/astropy/vo/samp/utils.py\', \'lib/python3.6/site-packages/astropy/vo/samp/web_profile.py\', \'lib/python3.6/site-packages/astropy/vo/validator/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/inspect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/tstquery.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/__pycache__/validate.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/data/conesearch_urls.txt\', \'lib/python3.6/site-packages/astropy/vo/validator/exceptions.py\', \'lib/python3.6/site-packages/astropy/vo/validator/inspect.py\', \'lib/python3.6/site-packages/astropy/vo/validator/setup_package.py\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/__pycache__/test_inpect.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/__pycache__/test_validate.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/conesearch_error.json\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/conesearch_exception.json\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/conesearch_good.json\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/conesearch_warn.json\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/listcats1.out\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/listcats2.out\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/printcat.out\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/tally.out\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/data/vao_conesearch_sites_121107_subset.xml\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/test_inpect.py\', \'lib/python3.6/site-packages/astropy/vo/validator/tests/test_validate.py\', \'lib/python3.6/site-packages/astropy/vo/validator/tstquery.py\', \'lib/python3.6/site-packages/astropy/vo/validator/validate.py\', \'lib/python3.6/site-packages/astropy/wcs/__init__.py\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/_docutil.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/docstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/setup_package.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/wcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/__pycache__/wcslint.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/_docutil.py\', \'lib/python3.6/site-packages/astropy/wcs/_wcs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/astropy/wcs/docstrings.py\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/astropy_wcs.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/astropy_wcs_api.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/distortion.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/isnan.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/pipeline.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/pyutil.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/sip.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/util.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs/wcsconfig.h\', \'lib/python3.6/site-packages/astropy/wcs/include/astropy_wcs_api.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/cel.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/lin.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/prj.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/spc.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/spx.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/tab.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/wcs.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/wcserr.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/wcsmath.h\', \'lib/python3.6/site-packages/astropy/wcs/include/wcslib/wcsprintf.h\', \'lib/python3.6/site-packages/astropy/wcs/setup_package.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/__init__.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/test_profiling.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/test_wcs.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/__pycache__/test_wcsprm.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/2wcses.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/3d_cd.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/defunct_keywords.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/dist.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/dist_lookup.fits.gz\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/header_newlines.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/invalid_header.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/irac_sip.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/j94f05bgq_flt.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/locale.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/nonstandard_units.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/outside_sky.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/sip-broken.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/sip.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/sip2.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/siponly.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/sub-segfault.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/too_many_pv.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/tpvonly.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/unit.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/validate.5.0.txt\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/validate.5.13.txt\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/validate.fits\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/validate.txt\', \'lib/python3.6/site-packages/astropy/wcs/tests/data/zpn-hole.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/__init__.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/__pycache__/test_extension.cpython-36.pyc\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/setup.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/test_extension.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/extension/wcsapi_test.c\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_AIR.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_AIT.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_ARC.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_AZP.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_BON.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_CAR.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_CEA.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_COD.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_COE.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_COO.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_COP.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_CSC.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_CYP.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_HPX.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_MER.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_MOL.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_NCP.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_PAR.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_PCO.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_QSC.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_SFL.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_SIN.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_STG.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_SZP.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_TAN.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_TSC.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_ZEA.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/maps/1904-66_ZPN.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-freq-1.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-freq-4.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-velo-1.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-velo-4.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-wave-1.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/spectra/orion-wave-4.hdr\', \'lib/python3.6/site-packages/astropy/wcs/tests/test_pickle.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/test_profiling.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/test_utils.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/test_wcs.py\', \'lib/python3.6/site-packages/astropy/wcs/tests/test_wcsprm.py\', \'lib/python3.6/site-packages/astropy/wcs/utils.py\', \'lib/python3.6/site-packages/astropy/wcs/wcs.py\', \'lib/python3.6/site-packages/astropy/wcs/wcslint.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/astropy-1.3-np111py36_0\', type=1))", "defaults::babel-2.3.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'pytz\'), license=\'BSD\', md5=\'845bcb58a0bd7b57bf0cf52fee2c67fb\', name=\'babel\', platform=\'linux\', subdir=\'linux-64\', version=\'2.3.4\', fn=\'babel-2.3.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/babel-2.3.4-py36_0.tar.bz2\', files=(\'bin/pybabel\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Babel-2.3.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/babel/__init__.py\', \'lib/python3.6/site-packages/babel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/dates.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/languages.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/lists.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/localedata.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/plural.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/_compat.py\', \'lib/python3.6/site-packages/babel/core.py\', \'lib/python3.6/site-packages/babel/dates.py\', \'lib/python3.6/site-packages/babel/global.dat\', \'lib/python3.6/site-packages/babel/languages.py\', \'lib/python3.6/site-packages/babel/lists.py\', \'lib/python3.6/site-packages/babel/locale-data/af.dat\', \'lib/python3.6/site-packages/babel/locale-data/af_NA.dat\', \'lib/python3.6/site-packages/babel/locale-data/af_ZA.dat\', \'lib/python3.6/site-packages/babel/locale-data/agq.dat\', \'lib/python3.6/site-packages/babel/locale-data/agq_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ak.dat\', \'lib/python3.6/site-packages/babel/locale-data/ak_GH.dat\', \'lib/python3.6/site-packages/babel/locale-data/am.dat\', \'lib/python3.6/site-packages/babel/locale-data/am_ET.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_AE.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_BH.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_DJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_DZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_EG.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_EH.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_ER.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_IL.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_IQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_JO.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_KM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_KW.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_LB.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_LY.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_MR.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_OM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_PS.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_QA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_SA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_SD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_SO.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_SS.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_SY.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_TD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_TN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ar_YE.dat\', \'lib/python3.6/site-packages/babel/locale-data/as.dat\', \'lib/python3.6/site-packages/babel/locale-data/as_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/asa.dat\', \'lib/python3.6/site-packages/babel/locale-data/asa_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ast.dat\', \'lib/python3.6/site-packages/babel/locale-data/ast_ES.dat\', \'lib/python3.6/site-packages/babel/locale-data/az.dat\', \'lib/python3.6/site-packages/babel/locale-data/az_Cyrl.dat\', \'lib/python3.6/site-packages/babel/locale-data/az_Cyrl_AZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/az_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/az_Latn_AZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/bas.dat\', \'lib/python3.6/site-packages/babel/locale-data/bas_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/be.dat\', \'lib/python3.6/site-packages/babel/locale-data/be_BY.dat\', \'lib/python3.6/site-packages/babel/locale-data/bem.dat\', \'lib/python3.6/site-packages/babel/locale-data/bem_ZM.dat\', \'lib/python3.6/site-packages/babel/locale-data/bez.dat\', \'lib/python3.6/site-packages/babel/locale-data/bez_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/bg.dat\', \'lib/python3.6/site-packages/babel/locale-data/bg_BG.dat\', \'lib/python3.6/site-packages/babel/locale-data/bm.dat\', \'lib/python3.6/site-packages/babel/locale-data/bm_ML.dat\', \'lib/python3.6/site-packages/babel/locale-data/bn.dat\', \'lib/python3.6/site-packages/babel/locale-data/bn_BD.dat\', \'lib/python3.6/site-packages/babel/locale-data/bn_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/bo.dat\', \'lib/python3.6/site-packages/babel/locale-data/bo_CN.dat\', \'lib/python3.6/site-packages/babel/locale-data/bo_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/br.dat\', \'lib/python3.6/site-packages/babel/locale-data/br_FR.dat\', \'lib/python3.6/site-packages/babel/locale-data/brx.dat\', \'lib/python3.6/site-packages/babel/locale-data/brx_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/bs.dat\', \'lib/python3.6/site-packages/babel/locale-data/bs_Cyrl.dat\', \'lib/python3.6/site-packages/babel/locale-data/bs_Cyrl_BA.dat\', \'lib/python3.6/site-packages/babel/locale-data/bs_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/bs_Latn_BA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca_AD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca_ES.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca_ES_VALENCIA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca_FR.dat\', \'lib/python3.6/site-packages/babel/locale-data/ca_IT.dat\', \'lib/python3.6/site-packages/babel/locale-data/ce.dat\', \'lib/python3.6/site-packages/babel/locale-data/ce_RU.dat\', \'lib/python3.6/site-packages/babel/locale-data/cgg.dat\', \'lib/python3.6/site-packages/babel/locale-data/cgg_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/chr.dat\', \'lib/python3.6/site-packages/babel/locale-data/chr_US.dat\', \'lib/python3.6/site-packages/babel/locale-data/ckb.dat\', \'lib/python3.6/site-packages/babel/locale-data/ckb_IQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ckb_IR.dat\', \'lib/python3.6/site-packages/babel/locale-data/cs.dat\', \'lib/python3.6/site-packages/babel/locale-data/cs_CZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/cu.dat\', \'lib/python3.6/site-packages/babel/locale-data/cu_RU.dat\', \'lib/python3.6/site-packages/babel/locale-data/cy.dat\', \'lib/python3.6/site-packages/babel/locale-data/cy_GB.dat\', \'lib/python3.6/site-packages/babel/locale-data/da.dat\', \'lib/python3.6/site-packages/babel/locale-data/da_DK.dat\', \'lib/python3.6/site-packages/babel/locale-data/da_GL.dat\', \'lib/python3.6/site-packages/babel/locale-data/dav.dat\', \'lib/python3.6/site-packages/babel/locale-data/dav_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/de.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_AT.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_BE.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_DE.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_LI.dat\', \'lib/python3.6/site-packages/babel/locale-data/de_LU.dat\', \'lib/python3.6/site-packages/babel/locale-data/dje.dat\', \'lib/python3.6/site-packages/babel/locale-data/dje_NE.dat\', \'lib/python3.6/site-packages/babel/locale-data/dsb.dat\', \'lib/python3.6/site-packages/babel/locale-data/dsb_DE.dat\', \'lib/python3.6/site-packages/babel/locale-data/dua.dat\', \'lib/python3.6/site-packages/babel/locale-data/dua_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/dyo.dat\', \'lib/python3.6/site-packages/babel/locale-data/dyo_SN.dat\', \'lib/python3.6/site-packages/babel/locale-data/dz.dat\', \'lib/python3.6/site-packages/babel/locale-data/dz_BT.dat\', \'lib/python3.6/site-packages/babel/locale-data/ebu.dat\', \'lib/python3.6/site-packages/babel/locale-data/ebu_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/ee.dat\', \'lib/python3.6/site-packages/babel/locale-data/ee_GH.dat\', \'lib/python3.6/site-packages/babel/locale-data/ee_TG.dat\', \'lib/python3.6/site-packages/babel/locale-data/el.dat\', \'lib/python3.6/site-packages/babel/locale-data/el_CY.dat\', \'lib/python3.6/site-packages/babel/locale-data/el_GR.dat\', \'lib/python3.6/site-packages/babel/locale-data/en.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_150.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_AG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_AI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_AS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_AT.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_AU.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BB.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BW.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_BZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CA.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CC.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CX.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_CY.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_DE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_DG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_DK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_DM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_ER.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_FI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_FJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_FK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_FM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GB.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GD.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GH.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GU.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_GY.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_HK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_IE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_IL.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_IM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_IO.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_JE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_JM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_KI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_KN.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_KY.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_LC.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_LR.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_LS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MH.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MO.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MP.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MT.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MU.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MW.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_MY.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NA.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NF.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NL.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NR.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NU.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_NZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PH.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PN.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PR.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_PW.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_RW.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SB.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SC.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SD.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SE.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SH.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SL.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SX.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_SZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TC.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TK.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TO.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TT.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TV.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_UM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_US.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_US_POSIX.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_VC.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_VG.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_VI.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_VU.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_WS.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_ZA.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_ZM.dat\', \'lib/python3.6/site-packages/babel/locale-data/en_ZW.dat\', \'lib/python3.6/site-packages/babel/locale-data/eo.dat\', \'lib/python3.6/site-packages/babel/locale-data/eo_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/es.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_419.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_AR.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_BO.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_CL.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_CO.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_CR.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_CU.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_DO.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_EA.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_EC.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_ES.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_GQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_GT.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_HN.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_IC.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_MX.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_NI.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_PA.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_PE.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_PH.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_PR.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_PY.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_SV.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_US.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_UY.dat\', \'lib/python3.6/site-packages/babel/locale-data/es_VE.dat\', \'lib/python3.6/site-packages/babel/locale-data/et.dat\', \'lib/python3.6/site-packages/babel/locale-data/et_EE.dat\', \'lib/python3.6/site-packages/babel/locale-data/eu.dat\', \'lib/python3.6/site-packages/babel/locale-data/eu_ES.dat\', \'lib/python3.6/site-packages/babel/locale-data/ewo.dat\', \'lib/python3.6/site-packages/babel/locale-data/ewo_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/fa.dat\', \'lib/python3.6/site-packages/babel/locale-data/fa_AF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fa_IR.dat\', \'lib/python3.6/site-packages/babel/locale-data/ff.dat\', \'lib/python3.6/site-packages/babel/locale-data/ff_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ff_GN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ff_MR.dat\', \'lib/python3.6/site-packages/babel/locale-data/ff_SN.dat\', \'lib/python3.6/site-packages/babel/locale-data/fi.dat\', \'lib/python3.6/site-packages/babel/locale-data/fi_FI.dat\', \'lib/python3.6/site-packages/babel/locale-data/fil.dat\', \'lib/python3.6/site-packages/babel/locale-data/fil_PH.dat\', \'lib/python3.6/site-packages/babel/locale-data/fo.dat\', \'lib/python3.6/site-packages/babel/locale-data/fo_DK.dat\', \'lib/python3.6/site-packages/babel/locale-data/fo_FO.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_BE.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_BF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_BI.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_BJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_BL.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CA.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CD.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CG.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CI.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_DJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_DZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_FR.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_GA.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_GF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_GN.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_GP.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_GQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_HT.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_KM.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_LU.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MC.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MG.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_ML.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MR.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_MU.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_NC.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_NE.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_PF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_PM.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_RE.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_RW.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_SC.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_SN.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_SY.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_TD.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_TG.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_TN.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_VU.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_WF.dat\', \'lib/python3.6/site-packages/babel/locale-data/fr_YT.dat\', \'lib/python3.6/site-packages/babel/locale-data/fur.dat\', \'lib/python3.6/site-packages/babel/locale-data/fur_IT.dat\', \'lib/python3.6/site-packages/babel/locale-data/fy.dat\', \'lib/python3.6/site-packages/babel/locale-data/fy_NL.dat\', \'lib/python3.6/site-packages/babel/locale-data/ga.dat\', \'lib/python3.6/site-packages/babel/locale-data/ga_IE.dat\', \'lib/python3.6/site-packages/babel/locale-data/gd.dat\', \'lib/python3.6/site-packages/babel/locale-data/gd_GB.dat\', \'lib/python3.6/site-packages/babel/locale-data/gl.dat\', \'lib/python3.6/site-packages/babel/locale-data/gl_ES.dat\', \'lib/python3.6/site-packages/babel/locale-data/gsw.dat\', \'lib/python3.6/site-packages/babel/locale-data/gsw_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/gsw_FR.dat\', \'lib/python3.6/site-packages/babel/locale-data/gsw_LI.dat\', \'lib/python3.6/site-packages/babel/locale-data/gu.dat\', \'lib/python3.6/site-packages/babel/locale-data/gu_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/guz.dat\', \'lib/python3.6/site-packages/babel/locale-data/guz_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/gv.dat\', \'lib/python3.6/site-packages/babel/locale-data/gv_IM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ha.dat\', \'lib/python3.6/site-packages/babel/locale-data/ha_GH.dat\', \'lib/python3.6/site-packages/babel/locale-data/ha_NE.dat\', \'lib/python3.6/site-packages/babel/locale-data/ha_NG.dat\', \'lib/python3.6/site-packages/babel/locale-data/haw.dat\', \'lib/python3.6/site-packages/babel/locale-data/haw_US.dat\', \'lib/python3.6/site-packages/babel/locale-data/he.dat\', \'lib/python3.6/site-packages/babel/locale-data/he_IL.dat\', \'lib/python3.6/site-packages/babel/locale-data/hi.dat\', \'lib/python3.6/site-packages/babel/locale-data/hi_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/hr.dat\', \'lib/python3.6/site-packages/babel/locale-data/hr_BA.dat\', \'lib/python3.6/site-packages/babel/locale-data/hr_HR.dat\', \'lib/python3.6/site-packages/babel/locale-data/hsb.dat\', \'lib/python3.6/site-packages/babel/locale-data/hsb_DE.dat\', \'lib/python3.6/site-packages/babel/locale-data/hu.dat\', \'lib/python3.6/site-packages/babel/locale-data/hu_HU.dat\', \'lib/python3.6/site-packages/babel/locale-data/hy.dat\', \'lib/python3.6/site-packages/babel/locale-data/hy_AM.dat\', \'lib/python3.6/site-packages/babel/locale-data/id.dat\', \'lib/python3.6/site-packages/babel/locale-data/id_ID.dat\', \'lib/python3.6/site-packages/babel/locale-data/ig.dat\', \'lib/python3.6/site-packages/babel/locale-data/ig_NG.dat\', \'lib/python3.6/site-packages/babel/locale-data/ii.dat\', \'lib/python3.6/site-packages/babel/locale-data/ii_CN.dat\', \'lib/python3.6/site-packages/babel/locale-data/is.dat\', \'lib/python3.6/site-packages/babel/locale-data/is_IS.dat\', \'lib/python3.6/site-packages/babel/locale-data/it.dat\', \'lib/python3.6/site-packages/babel/locale-data/it_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/it_IT.dat\', \'lib/python3.6/site-packages/babel/locale-data/it_SM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ja.dat\', \'lib/python3.6/site-packages/babel/locale-data/ja_JP.dat\', \'lib/python3.6/site-packages/babel/locale-data/jgo.dat\', \'lib/python3.6/site-packages/babel/locale-data/jgo_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/jmc.dat\', \'lib/python3.6/site-packages/babel/locale-data/jmc_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ka.dat\', \'lib/python3.6/site-packages/babel/locale-data/ka_GE.dat\', \'lib/python3.6/site-packages/babel/locale-data/kab.dat\', \'lib/python3.6/site-packages/babel/locale-data/kab_DZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/kam.dat\', \'lib/python3.6/site-packages/babel/locale-data/kam_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/kde.dat\', \'lib/python3.6/site-packages/babel/locale-data/kde_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/kea.dat\', \'lib/python3.6/site-packages/babel/locale-data/kea_CV.dat\', \'lib/python3.6/site-packages/babel/locale-data/khq.dat\', \'lib/python3.6/site-packages/babel/locale-data/khq_ML.dat\', \'lib/python3.6/site-packages/babel/locale-data/ki.dat\', \'lib/python3.6/site-packages/babel/locale-data/ki_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/kk.dat\', \'lib/python3.6/site-packages/babel/locale-data/kk_KZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/kkj.dat\', \'lib/python3.6/site-packages/babel/locale-data/kkj_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/kl.dat\', \'lib/python3.6/site-packages/babel/locale-data/kl_GL.dat\', \'lib/python3.6/site-packages/babel/locale-data/kln.dat\', \'lib/python3.6/site-packages/babel/locale-data/kln_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/km.dat\', \'lib/python3.6/site-packages/babel/locale-data/km_KH.dat\', \'lib/python3.6/site-packages/babel/locale-data/kn.dat\', \'lib/python3.6/site-packages/babel/locale-data/kn_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ko.dat\', \'lib/python3.6/site-packages/babel/locale-data/ko_KP.dat\', \'lib/python3.6/site-packages/babel/locale-data/ko_KR.dat\', \'lib/python3.6/site-packages/babel/locale-data/kok.dat\', \'lib/python3.6/site-packages/babel/locale-data/kok_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ks.dat\', \'lib/python3.6/site-packages/babel/locale-data/ks_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksb.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksb_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksf.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksf_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksh.dat\', \'lib/python3.6/site-packages/babel/locale-data/ksh_DE.dat\', \'lib/python3.6/site-packages/babel/locale-data/kw.dat\', \'lib/python3.6/site-packages/babel/locale-data/kw_GB.dat\', \'lib/python3.6/site-packages/babel/locale-data/ky.dat\', \'lib/python3.6/site-packages/babel/locale-data/ky_KG.dat\', \'lib/python3.6/site-packages/babel/locale-data/lag.dat\', \'lib/python3.6/site-packages/babel/locale-data/lag_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/lb.dat\', \'lib/python3.6/site-packages/babel/locale-data/lb_LU.dat\', \'lib/python3.6/site-packages/babel/locale-data/lg.dat\', \'lib/python3.6/site-packages/babel/locale-data/lg_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/lkt.dat\', \'lib/python3.6/site-packages/babel/locale-data/lkt_US.dat\', \'lib/python3.6/site-packages/babel/locale-data/ln.dat\', \'lib/python3.6/site-packages/babel/locale-data/ln_AO.dat\', \'lib/python3.6/site-packages/babel/locale-data/ln_CD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ln_CF.dat\', \'lib/python3.6/site-packages/babel/locale-data/ln_CG.dat\', \'lib/python3.6/site-packages/babel/locale-data/lo.dat\', \'lib/python3.6/site-packages/babel/locale-data/lo_LA.dat\', \'lib/python3.6/site-packages/babel/locale-data/lrc.dat\', \'lib/python3.6/site-packages/babel/locale-data/lrc_IQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/lrc_IR.dat\', \'lib/python3.6/site-packages/babel/locale-data/lt.dat\', \'lib/python3.6/site-packages/babel/locale-data/lt_LT.dat\', \'lib/python3.6/site-packages/babel/locale-data/lu.dat\', \'lib/python3.6/site-packages/babel/locale-data/lu_CD.dat\', \'lib/python3.6/site-packages/babel/locale-data/luo.dat\', \'lib/python3.6/site-packages/babel/locale-data/luo_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/luy.dat\', \'lib/python3.6/site-packages/babel/locale-data/luy_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/lv.dat\', \'lib/python3.6/site-packages/babel/locale-data/lv_LV.dat\', \'lib/python3.6/site-packages/babel/locale-data/mas.dat\', \'lib/python3.6/site-packages/babel/locale-data/mas_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/mas_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/mer.dat\', \'lib/python3.6/site-packages/babel/locale-data/mer_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/mfe.dat\', \'lib/python3.6/site-packages/babel/locale-data/mfe_MU.dat\', \'lib/python3.6/site-packages/babel/locale-data/mg.dat\', \'lib/python3.6/site-packages/babel/locale-data/mg_MG.dat\', \'lib/python3.6/site-packages/babel/locale-data/mgh.dat\', \'lib/python3.6/site-packages/babel/locale-data/mgh_MZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/mgo.dat\', \'lib/python3.6/site-packages/babel/locale-data/mgo_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/mk.dat\', \'lib/python3.6/site-packages/babel/locale-data/mk_MK.dat\', \'lib/python3.6/site-packages/babel/locale-data/ml.dat\', \'lib/python3.6/site-packages/babel/locale-data/ml_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/mn.dat\', \'lib/python3.6/site-packages/babel/locale-data/mn_MN.dat\', \'lib/python3.6/site-packages/babel/locale-data/mr.dat\', \'lib/python3.6/site-packages/babel/locale-data/mr_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ms.dat\', \'lib/python3.6/site-packages/babel/locale-data/ms_BN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ms_MY.dat\', \'lib/python3.6/site-packages/babel/locale-data/ms_SG.dat\', \'lib/python3.6/site-packages/babel/locale-data/mt.dat\', \'lib/python3.6/site-packages/babel/locale-data/mt_MT.dat\', \'lib/python3.6/site-packages/babel/locale-data/mua.dat\', \'lib/python3.6/site-packages/babel/locale-data/mua_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/my.dat\', \'lib/python3.6/site-packages/babel/locale-data/my_MM.dat\', \'lib/python3.6/site-packages/babel/locale-data/mzn.dat\', \'lib/python3.6/site-packages/babel/locale-data/mzn_IR.dat\', \'lib/python3.6/site-packages/babel/locale-data/naq.dat\', \'lib/python3.6/site-packages/babel/locale-data/naq_NA.dat\', \'lib/python3.6/site-packages/babel/locale-data/nb.dat\', \'lib/python3.6/site-packages/babel/locale-data/nb_NO.dat\', \'lib/python3.6/site-packages/babel/locale-data/nb_SJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/nd.dat\', \'lib/python3.6/site-packages/babel/locale-data/nd_ZW.dat\', \'lib/python3.6/site-packages/babel/locale-data/ne.dat\', \'lib/python3.6/site-packages/babel/locale-data/ne_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ne_NP.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_AW.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_BE.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_BQ.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_CW.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_NL.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_SR.dat\', \'lib/python3.6/site-packages/babel/locale-data/nl_SX.dat\', \'lib/python3.6/site-packages/babel/locale-data/nmg.dat\', \'lib/python3.6/site-packages/babel/locale-data/nmg_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/nn.dat\', \'lib/python3.6/site-packages/babel/locale-data/nn_NO.dat\', \'lib/python3.6/site-packages/babel/locale-data/nnh.dat\', \'lib/python3.6/site-packages/babel/locale-data/nnh_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/nus.dat\', \'lib/python3.6/site-packages/babel/locale-data/nus_SS.dat\', \'lib/python3.6/site-packages/babel/locale-data/nyn.dat\', \'lib/python3.6/site-packages/babel/locale-data/nyn_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/om.dat\', \'lib/python3.6/site-packages/babel/locale-data/om_ET.dat\', \'lib/python3.6/site-packages/babel/locale-data/om_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/or.dat\', \'lib/python3.6/site-packages/babel/locale-data/or_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/os.dat\', \'lib/python3.6/site-packages/babel/locale-data/os_GE.dat\', \'lib/python3.6/site-packages/babel/locale-data/os_RU.dat\', \'lib/python3.6/site-packages/babel/locale-data/pa.dat\', \'lib/python3.6/site-packages/babel/locale-data/pa_Arab.dat\', \'lib/python3.6/site-packages/babel/locale-data/pa_Arab_PK.dat\', \'lib/python3.6/site-packages/babel/locale-data/pa_Guru.dat\', \'lib/python3.6/site-packages/babel/locale-data/pa_Guru_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/pl.dat\', \'lib/python3.6/site-packages/babel/locale-data/pl_PL.dat\', \'lib/python3.6/site-packages/babel/locale-data/prg.dat\', \'lib/python3.6/site-packages/babel/locale-data/prg_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/ps.dat\', \'lib/python3.6/site-packages/babel/locale-data/ps_AF.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_AO.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_BR.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_CV.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_GW.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_MO.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_MZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_PT.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_ST.dat\', \'lib/python3.6/site-packages/babel/locale-data/pt_TL.dat\', \'lib/python3.6/site-packages/babel/locale-data/qu.dat\', \'lib/python3.6/site-packages/babel/locale-data/qu_BO.dat\', \'lib/python3.6/site-packages/babel/locale-data/qu_EC.dat\', \'lib/python3.6/site-packages/babel/locale-data/qu_PE.dat\', \'lib/python3.6/site-packages/babel/locale-data/rm.dat\', \'lib/python3.6/site-packages/babel/locale-data/rm_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/rn.dat\', \'lib/python3.6/site-packages/babel/locale-data/rn_BI.dat\', \'lib/python3.6/site-packages/babel/locale-data/ro.dat\', \'lib/python3.6/site-packages/babel/locale-data/ro_MD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ro_RO.dat\', \'lib/python3.6/site-packages/babel/locale-data/rof.dat\', \'lib/python3.6/site-packages/babel/locale-data/rof_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/root.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_BY.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_KG.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_KZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_MD.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_RU.dat\', \'lib/python3.6/site-packages/babel/locale-data/ru_UA.dat\', \'lib/python3.6/site-packages/babel/locale-data/rw.dat\', \'lib/python3.6/site-packages/babel/locale-data/rw_RW.dat\', \'lib/python3.6/site-packages/babel/locale-data/rwk.dat\', \'lib/python3.6/site-packages/babel/locale-data/rwk_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/sah.dat\', \'lib/python3.6/site-packages/babel/locale-data/sah_RU.dat\', \'lib/python3.6/site-packages/babel/locale-data/saq.dat\', \'lib/python3.6/site-packages/babel/locale-data/saq_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/sbp.dat\', \'lib/python3.6/site-packages/babel/locale-data/sbp_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/se.dat\', \'lib/python3.6/site-packages/babel/locale-data/se_FI.dat\', \'lib/python3.6/site-packages/babel/locale-data/se_NO.dat\', \'lib/python3.6/site-packages/babel/locale-data/se_SE.dat\', \'lib/python3.6/site-packages/babel/locale-data/seh.dat\', \'lib/python3.6/site-packages/babel/locale-data/seh_MZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/ses.dat\', \'lib/python3.6/site-packages/babel/locale-data/ses_ML.dat\', \'lib/python3.6/site-packages/babel/locale-data/sg.dat\', \'lib/python3.6/site-packages/babel/locale-data/sg_CF.dat\', \'lib/python3.6/site-packages/babel/locale-data/shi.dat\', \'lib/python3.6/site-packages/babel/locale-data/shi_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/shi_Latn_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/shi_Tfng.dat\', \'lib/python3.6/site-packages/babel/locale-data/shi_Tfng_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/si.dat\', \'lib/python3.6/site-packages/babel/locale-data/si_LK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sk.dat\', \'lib/python3.6/site-packages/babel/locale-data/sk_SK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sl.dat\', \'lib/python3.6/site-packages/babel/locale-data/sl_SI.dat\', \'lib/python3.6/site-packages/babel/locale-data/smn.dat\', \'lib/python3.6/site-packages/babel/locale-data/smn_FI.dat\', \'lib/python3.6/site-packages/babel/locale-data/sn.dat\', \'lib/python3.6/site-packages/babel/locale-data/sn_ZW.dat\', \'lib/python3.6/site-packages/babel/locale-data/so.dat\', \'lib/python3.6/site-packages/babel/locale-data/so_DJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/so_ET.dat\', \'lib/python3.6/site-packages/babel/locale-data/so_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/so_SO.dat\', \'lib/python3.6/site-packages/babel/locale-data/sq.dat\', \'lib/python3.6/site-packages/babel/locale-data/sq_AL.dat\', \'lib/python3.6/site-packages/babel/locale-data/sq_MK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sq_XK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Cyrl.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Cyrl_BA.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Cyrl_ME.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Cyrl_RS.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Cyrl_XK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Latn_BA.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Latn_ME.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Latn_RS.dat\', \'lib/python3.6/site-packages/babel/locale-data/sr_Latn_XK.dat\', \'lib/python3.6/site-packages/babel/locale-data/sv.dat\', \'lib/python3.6/site-packages/babel/locale-data/sv_AX.dat\', \'lib/python3.6/site-packages/babel/locale-data/sv_FI.dat\', \'lib/python3.6/site-packages/babel/locale-data/sv_SE.dat\', \'lib/python3.6/site-packages/babel/locale-data/sw.dat\', \'lib/python3.6/site-packages/babel/locale-data/sw_CD.dat\', \'lib/python3.6/site-packages/babel/locale-data/sw_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/sw_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/sw_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/ta.dat\', \'lib/python3.6/site-packages/babel/locale-data/ta_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ta_LK.dat\', \'lib/python3.6/site-packages/babel/locale-data/ta_MY.dat\', \'lib/python3.6/site-packages/babel/locale-data/ta_SG.dat\', \'lib/python3.6/site-packages/babel/locale-data/te.dat\', \'lib/python3.6/site-packages/babel/locale-data/te_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/teo.dat\', \'lib/python3.6/site-packages/babel/locale-data/teo_KE.dat\', \'lib/python3.6/site-packages/babel/locale-data/teo_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/th.dat\', \'lib/python3.6/site-packages/babel/locale-data/th_TH.dat\', \'lib/python3.6/site-packages/babel/locale-data/ti.dat\', \'lib/python3.6/site-packages/babel/locale-data/ti_ER.dat\', \'lib/python3.6/site-packages/babel/locale-data/ti_ET.dat\', \'lib/python3.6/site-packages/babel/locale-data/tk.dat\', \'lib/python3.6/site-packages/babel/locale-data/tk_TM.dat\', \'lib/python3.6/site-packages/babel/locale-data/to.dat\', \'lib/python3.6/site-packages/babel/locale-data/to_TO.dat\', \'lib/python3.6/site-packages/babel/locale-data/tr.dat\', \'lib/python3.6/site-packages/babel/locale-data/tr_CY.dat\', \'lib/python3.6/site-packages/babel/locale-data/tr_TR.dat\', \'lib/python3.6/site-packages/babel/locale-data/twq.dat\', \'lib/python3.6/site-packages/babel/locale-data/twq_NE.dat\', \'lib/python3.6/site-packages/babel/locale-data/tzm.dat\', \'lib/python3.6/site-packages/babel/locale-data/tzm_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ug.dat\', \'lib/python3.6/site-packages/babel/locale-data/ug_CN.dat\', \'lib/python3.6/site-packages/babel/locale-data/uk.dat\', \'lib/python3.6/site-packages/babel/locale-data/uk_UA.dat\', \'lib/python3.6/site-packages/babel/locale-data/ur.dat\', \'lib/python3.6/site-packages/babel/locale-data/ur_IN.dat\', \'lib/python3.6/site-packages/babel/locale-data/ur_PK.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Arab.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Arab_AF.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Cyrl.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Cyrl_UZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/uz_Latn_UZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/vai.dat\', \'lib/python3.6/site-packages/babel/locale-data/vai_Latn.dat\', \'lib/python3.6/site-packages/babel/locale-data/vai_Latn_LR.dat\', \'lib/python3.6/site-packages/babel/locale-data/vai_Vaii.dat\', \'lib/python3.6/site-packages/babel/locale-data/vai_Vaii_LR.dat\', \'lib/python3.6/site-packages/babel/locale-data/vi.dat\', \'lib/python3.6/site-packages/babel/locale-data/vi_VN.dat\', \'lib/python3.6/site-packages/babel/locale-data/vo.dat\', \'lib/python3.6/site-packages/babel/locale-data/vo_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/vun.dat\', \'lib/python3.6/site-packages/babel/locale-data/vun_TZ.dat\', \'lib/python3.6/site-packages/babel/locale-data/wae.dat\', \'lib/python3.6/site-packages/babel/locale-data/wae_CH.dat\', \'lib/python3.6/site-packages/babel/locale-data/xog.dat\', \'lib/python3.6/site-packages/babel/locale-data/xog_UG.dat\', \'lib/python3.6/site-packages/babel/locale-data/yav.dat\', \'lib/python3.6/site-packages/babel/locale-data/yav_CM.dat\', \'lib/python3.6/site-packages/babel/locale-data/yi.dat\', \'lib/python3.6/site-packages/babel/locale-data/yi_001.dat\', \'lib/python3.6/site-packages/babel/locale-data/yo.dat\', \'lib/python3.6/site-packages/babel/locale-data/yo_BJ.dat\', \'lib/python3.6/site-packages/babel/locale-data/yo_NG.dat\', \'lib/python3.6/site-packages/babel/locale-data/zgh.dat\', \'lib/python3.6/site-packages/babel/locale-data/zgh_MA.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hans.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hans_CN.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hans_HK.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hans_MO.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hans_SG.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hant.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hant_HK.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hant_MO.dat\', \'lib/python3.6/site-packages/babel/locale-data/zh_Hant_TW.dat\', \'lib/python3.6/site-packages/babel/locale-data/zu.dat\', \'lib/python3.6/site-packages/babel/locale-data/zu_ZA.dat\', \'lib/python3.6/site-packages/babel/localedata.py\', \'lib/python3.6/site-packages/babel/localtime/__init__.py\', \'lib/python3.6/site-packages/babel/localtime/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/localtime/__pycache__/_unix.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/localtime/__pycache__/_win32.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/localtime/_unix.py\', \'lib/python3.6/site-packages/babel/localtime/_win32.py\', \'lib/python3.6/site-packages/babel/messages/__init__.py\', \'lib/python3.6/site-packages/babel/messages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/catalog.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/checkers.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/extract.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/frontend.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/jslexer.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/mofile.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/plurals.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/__pycache__/pofile.cpython-36.pyc\', \'lib/python3.6/site-packages/babel/messages/catalog.py\', \'lib/python3.6/site-packages/babel/messages/checkers.py\', \'lib/python3.6/site-packages/babel/messages/extract.py\', \'lib/python3.6/site-packages/babel/messages/frontend.py\', \'lib/python3.6/site-packages/babel/messages/jslexer.py\', \'lib/python3.6/site-packages/babel/messages/mofile.py\', \'lib/python3.6/site-packages/babel/messages/plurals.py\', \'lib/python3.6/site-packages/babel/messages/pofile.py\', \'lib/python3.6/site-packages/babel/numbers.py\', \'lib/python3.6/site-packages/babel/plural.py\', \'lib/python3.6/site-packages/babel/support.py\', \'lib/python3.6/site-packages/babel/units.py\', \'lib/python3.6/site-packages/babel/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/babel-2.3.4-py36_0\', type=1))", "defaults::backports-1.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'91f9d3c6c443ca1a413afed110418a7b\', name=\'backports\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0\', fn=\'backports-1.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/backports-1.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/backports/__init__.py\', \'lib/python3.6/site-packages/backports/__pycache__/__init__.cpython-36.pyc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/backports-1.0-py36_0\', type=1))", "defaults::beautifulsoup4-4.5.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'87900b5f7eed4bc8bed341bd0cf5463c\', name=\'beautifulsoup4\', platform=\'linux\', subdir=\'linux-64\', version=\'4.5.3\', fn=\'beautifulsoup4-4.5.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/beautifulsoup4-4.5.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/beautifulsoup4-4.5.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/beautifulsoup4-4.5.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/beautifulsoup4-4.5.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/beautifulsoup4-4.5.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/beautifulsoup4-4.5.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/bs4/1631353.py\', \'lib/python3.6/site-packages/bs4/__init__.py\', \'lib/python3.6/site-packages/bs4/__pycache__/1631353.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/__pycache__/dammit.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/__pycache__/diagnose.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/__pycache__/element.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/builder/__init__.py\', \'lib/python3.6/site-packages/bs4/builder/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/builder/__pycache__/_html5lib.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/builder/__pycache__/_htmlparser.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/builder/__pycache__/_lxml.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/builder/_html5lib.py\', \'lib/python3.6/site-packages/bs4/builder/_htmlparser.py\', \'lib/python3.6/site-packages/bs4/builder/_lxml.py\', \'lib/python3.6/site-packages/bs4/dammit.py\', \'lib/python3.6/site-packages/bs4/diagnose.py\', \'lib/python3.6/site-packages/bs4/element.py\', \'lib/python3.6/site-packages/bs4/testing.py\', \'lib/python3.6/site-packages/bs4/tests/__init__.py\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_builder_registry.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_docs.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_html5lib.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_htmlparser.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_lxml.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_soup.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/bs4/tests/test_builder_registry.py\', \'lib/python3.6/site-packages/bs4/tests/test_docs.py\', \'lib/python3.6/site-packages/bs4/tests/test_html5lib.py\', \'lib/python3.6/site-packages/bs4/tests/test_htmlparser.py\', \'lib/python3.6/site-packages/bs4/tests/test_lxml.py\', \'lib/python3.6/site-packages/bs4/tests/test_soup.py\', \'lib/python3.6/site-packages/bs4/tests/test_tree.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/beautifulsoup4-4.5.3-py36_0\', type=1))", "defaults::bitarray-0.8.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'PSF\', md5=\'0ee6c1c29692c2ffe63762ec2da695a6\', name=\'bitarray\', platform=\'linux\', subdir=\'linux-64\', version=\'0.8.1\', fn=\'bitarray-0.8.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/bitarray-0.8.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/bitarray-0.8.1-py3.6.egg-info\', \'lib/python3.6/site-packages/bitarray/__init__.py\', \'lib/python3.6/site-packages/bitarray/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bitarray/__pycache__/test_bitarray.cpython-36.pyc\', \'lib/python3.6/site-packages/bitarray/_bitarray.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/bitarray/test_bitarray.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/bitarray-0.8.1-py36_0\', type=1))", "defaults::blaze-0.10.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'cytoolz\', \'dask\', \'flask\', \'flask-cors\', \'h5py\', \'numba\', \'odo >=0.4\', \'psutil\', \'pytables >=3.0.0\', \'python 3.6*\', \'pyyaml\', \'requests\', \'sqlalchemy >=0.8\'), license=\'BSD\', md5=\'b7007975cdc0380441d5241a87befa26\', name=\'blaze\', platform=\'linux\', subdir=\'linux-64\', version=\'0.10.1\', fn=\'blaze-0.10.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/blaze-0.10.1-py36_0.tar.bz2\', files=(\'bin/blaze-server\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/blaze-0.10.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/blaze/__init__.py\', \'lib/python3.6/site-packages/blaze/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/cached.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/dispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/interactive.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/mongo.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/partition.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/sql.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/_version.py\', \'lib/python3.6/site-packages/blaze/cached.py\', \'lib/python3.6/site-packages/blaze/compatibility.py\', \'lib/python3.6/site-packages/blaze/compute/__init__.py\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/bcolz.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/chunks.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/csv.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/dask.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/h5py.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/hdfstore.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/mongo.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/numba.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/numexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/pmap.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/pydatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/pyfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/spark.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/sparksql.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/sql.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/bcolz.py\', \'lib/python3.6/site-packages/blaze/compute/chunks.py\', \'lib/python3.6/site-packages/blaze/compute/core.py\', \'lib/python3.6/site-packages/blaze/compute/csv.py\', \'lib/python3.6/site-packages/blaze/compute/dask.py\', \'lib/python3.6/site-packages/blaze/compute/h5py.py\', \'lib/python3.6/site-packages/blaze/compute/hdfstore.py\', \'lib/python3.6/site-packages/blaze/compute/json.py\', \'lib/python3.6/site-packages/blaze/compute/mongo.py\', \'lib/python3.6/site-packages/blaze/compute/numba.py\', \'lib/python3.6/site-packages/blaze/compute/numexpr.py\', \'lib/python3.6/site-packages/blaze/compute/numpy.py\', \'lib/python3.6/site-packages/blaze/compute/pandas.py\', \'lib/python3.6/site-packages/blaze/compute/pmap.py\', \'lib/python3.6/site-packages/blaze/compute/pydatetime.py\', \'lib/python3.6/site-packages/blaze/compute/pyfunc.py\', \'lib/python3.6/site-packages/blaze/compute/pytables.py\', \'lib/python3.6/site-packages/blaze/compute/python.py\', \'lib/python3.6/site-packages/blaze/compute/spark.py\', \'lib/python3.6/site-packages/blaze/compute/sparksql.py\', \'lib/python3.6/site-packages/blaze/compute/sql.py\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_bcolz_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_chunks.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_comprehensive.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_core_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_csv_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_dask.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_dask_dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_h5py.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_hdfstore.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_mongo_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_mysql_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_numba.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_numpy_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_optimize_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_pandas_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_pmap.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_postgresql_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_pydatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_pyfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_pytables_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_python_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_spark.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_sparksql.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_sql_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/__pycache__/test_url_csv_compute.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/compute/tests/conftest.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_bcolz_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_chunks.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_comprehensive.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_core_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_csv_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_dask.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_dask_dataframe.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_h5py.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_hdfstore.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_json.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_mongo_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_mysql_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_numba.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_numpy_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_optimize_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_pandas_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_pmap.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_postgresql_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_pydatetime.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_pyfunc.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_pytables_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_python_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_spark.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_sparksql.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_sql_compute.py\', \'lib/python3.6/site-packages/blaze/compute/tests/test_url_csv_compute.py\', \'lib/python3.6/site-packages/blaze/compute/utils.py\', \'lib/python3.6/site-packages/blaze/dispatch.py\', \'lib/python3.6/site-packages/blaze/examples/data/accounts-datetimes.csv\', \'lib/python3.6/site-packages/blaze/examples/data/accounts-streaming.json\', \'lib/python3.6/site-packages/blaze/examples/data/accounts-streaming.json.gz\', \'lib/python3.6/site-packages/blaze/examples/data/accounts-streaming2.json\', \'lib/python3.6/site-packages/blaze/examples/data/accounts.csv\', \'lib/python3.6/site-packages/blaze/examples/data/accounts.h5\', \'lib/python3.6/site-packages/blaze/examples/data/accounts.json\', \'lib/python3.6/site-packages/blaze/examples/data/accounts.json.gz\', \'lib/python3.6/site-packages/blaze/examples/data/accounts_1.csv\', \'lib/python3.6/site-packages/blaze/examples/data/accounts_1.csv.gz\', \'lib/python3.6/site-packages/blaze/examples/data/accounts_2.csv\', \'lib/python3.6/site-packages/blaze/examples/data/accounts_2.csv.gz\', \'lib/python3.6/site-packages/blaze/examples/data/hmda-small.csv\', \'lib/python3.6/site-packages/blaze/examples/data/iris-latin1.tsv\', \'lib/python3.6/site-packages/blaze/examples/data/iris.csv\', \'lib/python3.6/site-packages/blaze/examples/data/iris.db\', \'lib/python3.6/site-packages/blaze/examples/data/nyc.csv\', \'lib/python3.6/site-packages/blaze/examples/data/teams.db\', \'lib/python3.6/site-packages/blaze/expr/__init__.py\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/arithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/arrays.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/broadcast.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/datetime.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/expressions.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/math.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/method_dispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/reductions.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/split.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/split_apply_combine.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/arithmetic.py\', \'lib/python3.6/site-packages/blaze/expr/arrays.py\', \'lib/python3.6/site-packages/blaze/expr/broadcast.py\', \'lib/python3.6/site-packages/blaze/expr/collections.py\', \'lib/python3.6/site-packages/blaze/expr/core.py\', \'lib/python3.6/site-packages/blaze/expr/datetime.py\', \'lib/python3.6/site-packages/blaze/expr/expressions.py\', \'lib/python3.6/site-packages/blaze/expr/functions.py\', \'lib/python3.6/site-packages/blaze/expr/math.py\', \'lib/python3.6/site-packages/blaze/expr/method_dispatch.py\', \'lib/python3.6/site-packages/blaze/expr/optimize.py\', \'lib/python3.6/site-packages/blaze/expr/parser.py\', \'lib/python3.6/site-packages/blaze/expr/reductions.py\', \'lib/python3.6/site-packages/blaze/expr/split.py\', \'lib/python3.6/site-packages/blaze/expr/split_apply_combine.py\', \'lib/python3.6/site-packages/blaze/expr/strings.py\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_arithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_array.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_broadcast.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_datetime.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_expr.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_math.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_method_dispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_reductions.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_scalar.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_split.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_split_apply_combine.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_strings.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_symbol.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/__pycache__/test_utils_expr.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/expr/tests/test_arithmetic.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_array.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_broadcast.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_collections.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_datetime.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_expr.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_functions.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_math.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_method_dispatch.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_optimize.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_reductions.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_scalar.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_slicing.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_split.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_split_apply_combine.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_strings.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_symbol.py\', \'lib/python3.6/site-packages/blaze/expr/tests/test_utils_expr.py\', \'lib/python3.6/site-packages/blaze/expr/utils.py\', \'lib/python3.6/site-packages/blaze/index.py\', \'lib/python3.6/site-packages/blaze/interactive.py\', \'lib/python3.6/site-packages/blaze/mongo.py\', \'lib/python3.6/site-packages/blaze/partition.py\', \'lib/python3.6/site-packages/blaze/server/__init__.py\', \'lib/python3.6/site-packages/blaze/server/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/__pycache__/serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/__pycache__/spider.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/client.py\', \'lib/python3.6/site-packages/blaze/server/serialization.py\', \'lib/python3.6/site-packages/blaze/server/server.py\', \'lib/python3.6/site-packages/blaze/server/spider.py\', \'lib/python3.6/site-packages/blaze/server/tests/__init__.py\', \'lib/python3.6/site-packages/blaze/server/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/tests/__pycache__/test_client.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/tests/__pycache__/test_server.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/tests/__pycache__/test_spider.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/server/tests/test_client.py\', \'lib/python3.6/site-packages/blaze/server/tests/test_server.py\', \'lib/python3.6/site-packages/blaze/server/tests/test_spider.py\', \'lib/python3.6/site-packages/blaze/sql.py\', \'lib/python3.6/site-packages/blaze/tests/__init__.py\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_cached.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_interactive.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_partition.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_sql.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/blaze/tests/dummydata.csv\', \'lib/python3.6/site-packages/blaze/tests/test_cached.py\', \'lib/python3.6/site-packages/blaze/tests/test_core.py\', \'lib/python3.6/site-packages/blaze/tests/test_imports.py\', \'lib/python3.6/site-packages/blaze/tests/test_interactive.py\', \'lib/python3.6/site-packages/blaze/tests/test_partition.py\', \'lib/python3.6/site-packages/blaze/tests/test_sql.py\', \'lib/python3.6/site-packages/blaze/tests/test_utils.py\', \'lib/python3.6/site-packages/blaze/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/blaze-0.10.1-py36_0\', type=1))", "defaults::bokeh-0.12.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'jinja2 >=2.7\', \'numpy\', \'python 3.6*\', \'python-dateutil >=2.1\', \'pyyaml >=3.10\', \'requests >=1.2.3\', \'six >=1.5.2\', \'tornado >=4.3\'), license=\'BSD\', md5=\'3e2abb69879360ad3c9cf541c6ec5648\', name=\'bokeh\', platform=\'linux\', subdir=\'linux-64\', version=\'0.12.4\', fn=\'bokeh-0.12.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/bokeh-0.12.4-py36_0.tar.bz2\', files=(\'bin/bokeh\', \'lib/python3.6/site-packages/bokeh-0.12.4-py3.6.egg-info\', \'lib/python3.6/site-packages/bokeh/LICENSE.txt\', \'lib/python3.6/site-packages/bokeh/__init__.py\', \'lib/python3.6/site-packages/bokeh/__main__.py\', \'lib/python3.6/site-packages/bokeh/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/browserlib.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/colors.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/document.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/driving.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/embed.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/icons.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/layouts.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/mixins.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/model.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/mpl.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/palettes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/plotting_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/resources.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/settings.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/templates.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/__pycache__/tile_providers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/_version.py\', \'lib/python3.6/site-packages/bokeh/application/__init__.py\', \'lib/python3.6/site-packages/bokeh/application/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/application.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/__init__.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/code_runner.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/directory.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/function.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/script.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/__pycache__/server_lifecycle.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/code.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/code_runner.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/directory.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/function.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/handler.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/notebook.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/script.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/server_lifecycle.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_code.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_directory.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_function.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_script.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/__pycache__/test_server_lifecycle.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_code.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_directory.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_function.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_notebook.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_script.py\', \'lib/python3.6/site-packages/bokeh/application/handlers/tests/test_server_lifecycle.py\', \'lib/python3.6/site-packages/bokeh/application/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/application/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/tests/__pycache__/test_application.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/application/tests/test_application.py\', \'lib/python3.6/site-packages/bokeh/browserlib.py\', \'lib/python3.6/site-packages/bokeh/charts/__init__.py\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/chart.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/data_source.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/glyphs.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/operations.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/stats.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/attributes.py\', \'lib/python3.6/site-packages/bokeh/charts/builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/__init__.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/area_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/bar_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/boxplot_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/chord_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/donut_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/dot_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/heatmap_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/histogram_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/horizon_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/line_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/scatter_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/step_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/__pycache__/timeseries_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/area_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/bar_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/boxplot_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/chord_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/donut_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/dot_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/heatmap_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/histogram_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/horizon_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/line_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/scatter_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/step_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_bar_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_boxplot_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_chord_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_histogram_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_line_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/__pycache__/test_scatter_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_bar_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_boxplot_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_chord_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_histogram_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_line_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/tests/test_scatter_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/builders/timeseries_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/chart.py\', \'lib/python3.6/site-packages/bokeh/charts/conftest.py\', \'lib/python3.6/site-packages/bokeh/charts/data_source.py\', \'lib/python3.6/site-packages/bokeh/charts/glyphs.py\', \'lib/python3.6/site-packages/bokeh/charts/models.py\', \'lib/python3.6/site-packages/bokeh/charts/operations.py\', \'lib/python3.6/site-packages/bokeh/charts/properties.py\', \'lib/python3.6/site-packages/bokeh/charts/stats.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_builder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_chart_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_comp_glyphs.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_data_source.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/__pycache__/test_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_attributes.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_builder.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_chart.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_chart_utils.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_comp_glyphs.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_data_source.py\', \'lib/python3.6/site-packages/bokeh/charts/tests/test_stats.py\', \'lib/python3.6/site-packages/bokeh/charts/utils.py\', \'lib/python3.6/site-packages/bokeh/client/__init__.py\', \'lib/python3.6/site-packages/bokeh/client/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/client/__pycache__/_connection.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/client/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/client/_connection.py\', \'lib/python3.6/site-packages/bokeh/client/session.py\', \'lib/python3.6/site-packages/bokeh/colors.py\', \'lib/python3.6/site-packages/bokeh/command/__init__.py\', \'lib/python3.6/site-packages/bokeh/command/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/__pycache__/bootstrap.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/__pycache__/subcommand.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/bootstrap.py\', \'lib/python3.6/site-packages/bokeh/command/subcommand.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__init__.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/file_output.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/sampledata.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/secret.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/serve.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/__pycache__/static.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/file_output.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/html.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/info.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/json.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/sampledata.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/secret.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/serve.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/static.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_html.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_info.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_sampledata.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_secret.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_serve.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/__pycache__/test_subcommands_package.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_html.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_info.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_json.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_sampledata.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_secret.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_serve.py\', \'lib/python3.6/site-packages/bokeh/command/subcommands/tests/test_subcommands_package.py\', \'lib/python3.6/site-packages/bokeh/command/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/command/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/tests/__pycache__/test_bootstrap.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/tests/__pycache__/test_command_package.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/tests/__pycache__/test_subcommand.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/command/tests/test_bootstrap.py\', \'lib/python3.6/site-packages/bokeh/command/tests/test_command_package.py\', \'lib/python3.6/site-packages/bokeh/command/tests/test_subcommand.py\', \'lib/python3.6/site-packages/bokeh/command/tests/test_util.py\', \'lib/python3.6/site-packages/bokeh/command/util.py\', \'lib/python3.6/site-packages/bokeh/core/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/has_props.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/json_encoder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/property_mixins.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/query.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/state.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/__pycache__/templates.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/_templates/autoload_js.js\', \'lib/python3.6/site-packages/bokeh/core/_templates/autoload_nb_js.js\', \'lib/python3.6/site-packages/bokeh/core/_templates/autoload_tag.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/css_resources.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/doc_js.js\', \'lib/python3.6/site-packages/bokeh/core/_templates/file.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/js_resources.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/notebook_div.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/notebook_load.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/plot_div.html\', \'lib/python3.6/site-packages/bokeh/core/_templates/script_tag.html\', \'lib/python3.6/site-packages/bokeh/core/compat/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/__pycache__/bokeh_exporter.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/__pycache__/bokeh_renderer.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/__pycache__/mpl.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/__pycache__/mpl_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/bokeh_exporter.py\', \'lib/python3.6/site-packages/bokeh/core/compat/bokeh_renderer.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mpl.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mpl_helpers.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__pycache__/_py3k_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__pycache__/exporter.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/_py3k_compat.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/exporter.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__pycache__/fake_renderer.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__pycache__/vega_renderer.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/__pycache__/vincent_renderer.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/base.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/fake_renderer.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/vega_renderer.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/renderers/vincent_renderer.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/tools.py\', \'lib/python3.6/site-packages/bokeh/core/compat/mplexporter/utils.py\', \'lib/python3.6/site-packages/bokeh/core/enums.py\', \'lib/python3.6/site-packages/bokeh/core/has_props.py\', \'lib/python3.6/site-packages/bokeh/core/json_encoder.py\', \'lib/python3.6/site-packages/bokeh/core/properties.py\', \'lib/python3.6/site-packages/bokeh/core/property/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/bases.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/containers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/descriptor_factory.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/descriptors.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/__pycache__/override.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/bases.py\', \'lib/python3.6/site-packages/bokeh/core/property/containers.py\', \'lib/python3.6/site-packages/bokeh/core/property/descriptor_factory.py\', \'lib/python3.6/site-packages/bokeh/core/property/descriptors.py\', \'lib/python3.6/site-packages/bokeh/core/property/override.py\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__pycache__/test_containers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__pycache__/test_descriptor_factory.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__pycache__/test_descriptors.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/tests/__pycache__/test_override.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/property/tests/test_containers.py\', \'lib/python3.6/site-packages/bokeh/core/property/tests/test_descriptor_factory.py\', \'lib/python3.6/site-packages/bokeh/core/property/tests/test_descriptors.py\', \'lib/python3.6/site-packages/bokeh/core/property/tests/test_override.py\', \'lib/python3.6/site-packages/bokeh/core/property_mixins.py\', \'lib/python3.6/site-packages/bokeh/core/query.py\', \'lib/python3.6/site-packages/bokeh/core/state.py\', \'lib/python3.6/site-packages/bokeh/core/templates.py\', \'lib/python3.6/site-packages/bokeh/core/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_enums.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_has_props.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_json_encoder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_properties.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_query.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_state.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/__pycache__/test_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/tests/test_enums.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_has_props.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_json_encoder.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_properties.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_query.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_state.py\', \'lib/python3.6/site-packages/bokeh/core/tests/test_validation.py\', \'lib/python3.6/site-packages/bokeh/core/validation/__init__.py\', \'lib/python3.6/site-packages/bokeh/core/validation/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/validation/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/validation/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/validation/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/validation/__pycache__/warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/core/validation/check.py\', \'lib/python3.6/site-packages/bokeh/core/validation/decorators.py\', \'lib/python3.6/site-packages/bokeh/core/validation/errors.py\', \'lib/python3.6/site-packages/bokeh/core/validation/warnings.py\', \'lib/python3.6/site-packages/bokeh/document.py\', \'lib/python3.6/site-packages/bokeh/driving.py\', \'lib/python3.6/site-packages/bokeh/embed.py\', \'lib/python3.6/site-packages/bokeh/icons.py\', \'lib/python3.6/site-packages/bokeh/io.py\', \'lib/python3.6/site-packages/bokeh/layouts.py\', \'lib/python3.6/site-packages/bokeh/mixins.py\', \'lib/python3.6/site-packages/bokeh/model.py\', \'lib/python3.6/site-packages/bokeh/models/__init__.py\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/annotations.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/arrow_heads.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/axes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/callbacks.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/formatters.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/glyphs.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/grids.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/images.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/layouts.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/map_plots.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/mappers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/markers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/plots.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/ranges.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/renderers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/sources.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/tickers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/tiles.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/annotations.py\', \'lib/python3.6/site-packages/bokeh/models/arrow_heads.py\', \'lib/python3.6/site-packages/bokeh/models/axes.py\', \'lib/python3.6/site-packages/bokeh/models/callbacks.py\', \'lib/python3.6/site-packages/bokeh/models/formatters.py\', \'lib/python3.6/site-packages/bokeh/models/glyphs.py\', \'lib/python3.6/site-packages/bokeh/models/grids.py\', \'lib/python3.6/site-packages/bokeh/models/images.py\', \'lib/python3.6/site-packages/bokeh/models/layouts.py\', \'lib/python3.6/site-packages/bokeh/models/map_plots.py\', \'lib/python3.6/site-packages/bokeh/models/mappers.py\', \'lib/python3.6/site-packages/bokeh/models/markers.py\', \'lib/python3.6/site-packages/bokeh/models/plots.py\', \'lib/python3.6/site-packages/bokeh/models/ranges.py\', \'lib/python3.6/site-packages/bokeh/models/renderers.py\', \'lib/python3.6/site-packages/bokeh/models/sources.py\', \'lib/python3.6/site-packages/bokeh/models/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_annotations.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_callbacks.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_formatters.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_glyphs.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_layouts.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_mappers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_plots.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_ranges.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_renderers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_sources.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/test_annotations.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_callbacks.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_formatters.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_glyphs.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_layouts.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_mappers.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_plots.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_ranges.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_renderers.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_sources.py\', \'lib/python3.6/site-packages/bokeh/models/tests/test_tools.py\', \'lib/python3.6/site-packages/bokeh/models/tests/utils/__init__.py\', \'lib/python3.6/site-packages/bokeh/models/tests/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/utils/__pycache__/property_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/tests/utils/property_utils.py\', \'lib/python3.6/site-packages/bokeh/models/tickers.py\', \'lib/python3.6/site-packages/bokeh/models/tiles.py\', \'lib/python3.6/site-packages/bokeh/models/tools.py\', \'lib/python3.6/site-packages/bokeh/models/transforms.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/__init__.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/buttons.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/groups.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/icons.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/inputs.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/layouts.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/markups.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/panels.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/tables.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/__pycache__/widget.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/models/widgets/buttons.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/groups.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/icons.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/inputs.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/layouts.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/markups.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/panels.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/tables.py\', \'lib/python3.6/site-packages/bokeh/models/widgets/widget.py\', \'lib/python3.6/site-packages/bokeh/mpl.py\', \'lib/python3.6/site-packages/bokeh/palettes.py\', \'lib/python3.6/site-packages/bokeh/plotting/__init__.py\', \'lib/python3.6/site-packages/bokeh/plotting/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/__pycache__/figure.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/figure.py\', \'lib/python3.6/site-packages/bokeh/plotting/helpers.py\', \'lib/python3.6/site-packages/bokeh/plotting/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/plotting/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/tests/__pycache__/test_figure.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/tests/__pycache__/test_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/plotting/tests/test_figure.py\', \'lib/python3.6/site-packages/bokeh/plotting/tests/test_helpers.py\', \'lib/python3.6/site-packages/bokeh/plotting_helpers.py\', \'lib/python3.6/site-packages/bokeh/properties.py\', \'lib/python3.6/site-packages/bokeh/resources.py\', \'lib/python3.6/site-packages/bokeh/sampledata/USHolidays.ics\', \'lib/python3.6/site-packages/bokeh/sampledata/US_Regions_State_Boundaries.csv.gz\', \'lib/python3.6/site-packages/bokeh/sampledata/__init__.py\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/airports.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/autompg.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/autompg2.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/browsers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/daylight.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/degrees.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/gapminder.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/glucose.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/iris.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/les_mis.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/movies_data.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/mtb.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/olympics2014.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/periodic_table.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/population.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/project_funding.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/sample_geojson.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/sprint.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/stocks.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/unemployment.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/unemployment1948.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/us_cities.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/us_counties.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/us_holidays.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/us_marriages_divorces.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/us_states.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/__pycache__/world_cities.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sampledata/airports.py\', \'lib/python3.6/site-packages/bokeh/sampledata/auto-mpg.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/auto-mpg2.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/autompg.py\', \'lib/python3.6/site-packages/bokeh/sampledata/autompg2.py\', \'lib/python3.6/site-packages/bokeh/sampledata/browsers.py\', \'lib/python3.6/site-packages/bokeh/sampledata/browsers_nov_2013.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/daylight.py\', \'lib/python3.6/site-packages/bokeh/sampledata/daylight_warsaw_2013.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/degrees.py\', \'lib/python3.6/site-packages/bokeh/sampledata/elements.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/gapminder.py\', \'lib/python3.6/site-packages/bokeh/sampledata/glucose.py\', \'lib/python3.6/site-packages/bokeh/sampledata/icons/chrome_32x32.png\', \'lib/python3.6/site-packages/bokeh/sampledata/icons/firefox_32x32.png\', \'lib/python3.6/site-packages/bokeh/sampledata/icons/ie_32x32.png\', \'lib/python3.6/site-packages/bokeh/sampledata/icons/opera_32x32.png\', \'lib/python3.6/site-packages/bokeh/sampledata/icons/safari_32x32.png\', \'lib/python3.6/site-packages/bokeh/sampledata/iris.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/iris.py\', \'lib/python3.6/site-packages/bokeh/sampledata/les_mis.json\', \'lib/python3.6/site-packages/bokeh/sampledata/les_mis.py\', \'lib/python3.6/site-packages/bokeh/sampledata/movies_data.py\', \'lib/python3.6/site-packages/bokeh/sampledata/mtb.py\', \'lib/python3.6/site-packages/bokeh/sampledata/obiszow_mtb_xcm.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/olympics2014.json\', \'lib/python3.6/site-packages/bokeh/sampledata/olympics2014.py\', \'lib/python3.6/site-packages/bokeh/sampledata/percent-bachelors-degrees-women-usa.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/periodic_table.py\', \'lib/python3.6/site-packages/bokeh/sampledata/population.py\', \'lib/python3.6/site-packages/bokeh/sampledata/project_funding.py\', \'lib/python3.6/site-packages/bokeh/sampledata/sample_geojson.geojson\', \'lib/python3.6/site-packages/bokeh/sampledata/sample_geojson.py\', \'lib/python3.6/site-packages/bokeh/sampledata/sprint.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/sprint.py\', \'lib/python3.6/site-packages/bokeh/sampledata/stocks.py\', \'lib/python3.6/site-packages/bokeh/sampledata/unemployment.py\', \'lib/python3.6/site-packages/bokeh/sampledata/unemployment1948.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/unemployment1948.py\', \'lib/python3.6/site-packages/bokeh/sampledata/us_cities.py\', \'lib/python3.6/site-packages/bokeh/sampledata/us_counties.py\', \'lib/python3.6/site-packages/bokeh/sampledata/us_holidays.py\', \'lib/python3.6/site-packages/bokeh/sampledata/us_marriages_divorces.csv\', \'lib/python3.6/site-packages/bokeh/sampledata/us_marriages_divorces.py\', \'lib/python3.6/site-packages/bokeh/sampledata/us_states.py\', \'lib/python3.6/site-packages/bokeh/sampledata/world_cities.py\', \'lib/python3.6/site-packages/bokeh/server/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/application_context.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/task.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/tornado.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/__pycache__/urls.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/application_context.py\', \'lib/python3.6/site-packages/bokeh/server/connection.py\', \'lib/python3.6/site-packages/bokeh/server/exceptions.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/__pycache__/receiver.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/__pycache__/server_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/__pycache__/versions.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/message.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/ack.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/ok.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/patch_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/pull_doc_reply.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/pull_doc_req.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/push_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/server_info_reply.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/__pycache__/server_info_req.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/ack.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/error.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/ok.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/patch_doc.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/pull_doc_reply.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/pull_doc_req.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/push_doc.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/server_info_reply.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/server_info_req.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_ack.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_error.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_ok.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_patch_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_pull_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_push_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_server_info_reply.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_server_info_req.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/__pycache__/test_working.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_ack.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_error.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_ok.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_patch_doc.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_pull_doc.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_push_doc.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_server_info_reply.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_server_info_req.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/messages/tests/test_working.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/receiver.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/server_handler.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/__pycache__/test_message.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/__pycache__/test_receiver.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/__pycache__/test_versions.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/test_message.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/test_receiver.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/tests/test_versions.py\', \'lib/python3.6/site-packages/bokeh/server/protocol/versions.py\', \'lib/python3.6/site-packages/bokeh/server/server.py\', \'lib/python3.6/site-packages/bokeh/server/session.py\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh-widgets.css\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh-widgets.css.map\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh-widgets.min.css\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh-widgets.min.css.map\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh.css\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh.css.map\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh.min.css\', \'lib/python3.6/site-packages/bokeh/server/static/css/bokeh.min.css.map\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-api.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-api.js.map\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-api.min.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-widgets.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-widgets.js.map\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh-widgets.min.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh.js.map\', \'lib/python3.6/site-packages/bokeh/server/static/js/bokeh.min.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/compile.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/modules.json\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api/charts.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api/linalg.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api/models.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api/palettes.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/api/plotting.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/base.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/client.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/backbone.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/bokeh_view.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/build_views.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/enums.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/events.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/has_props.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/hittest.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/layout/layout_canvas.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/layout/side_panel.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/layout/solver.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/logging.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/properties.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/property_mixins.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/selection_manager.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/selector.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/ui_events.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/bbox.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/canvas.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/color.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/data_structures.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/deserialize.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/dom.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/math.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/proj4.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/projections.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/refs.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/selection.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/serialization.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/string.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/svg_colors.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/templating.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/text.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/throttle.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/underscore.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/util/zoom.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/core/visuals.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/document.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/embed.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/main.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/model.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/annotation.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/arrow.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/arrow_head.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/box_annotation.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/color_bar.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/label.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/label_set.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/legend.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/legend_item.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/poly_annotation.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/span.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/text_annotation.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/title.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/annotations/tooltip.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/categorical_axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/continuous_axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/datetime_axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/linear_axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/axes/log_axis.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/callbacks/customjs.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/callbacks/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/callbacks/open_url.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/canvas/canvas.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/canvas/canvas_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/canvas/cartesian_frame.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/basic_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/categorical_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/datetime_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/func_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/log_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/numeral_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/printf_tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/formatters/tick_formatter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/annular_wedge.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/annulus.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/arc.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/bezier.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/circle.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/ellipse.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/glyph.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/hbar.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/image.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/image_rgba.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/image_url.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/line.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/multi_line.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/oval.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/patch.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/patches.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/quad.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/quadratic.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/ray.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/rect.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/segment.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/text.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/vbar.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/webgl/base.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/webgl/line.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/webgl/main.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/webgl/markers.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/glyphs/wedge.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/grids/grid.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/grids/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/box.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/column.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/layout_dom.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/row.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/spacer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/layouts/widget_box.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/categorical_color_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/categorical_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/color_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/grid_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/linear_color_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/linear_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/log_color_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/mappers/log_mapper.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/markers/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/markers/marker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/plots/gmap_plot.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/plots/gmap_plot_canvas.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/plots/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/plots/plot.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/plots/plot_canvas.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/data_range.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/data_range1d.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/factor_range.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/range.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/ranges/range1d.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/renderers/glyph_renderer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/renderers/guide_renderer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/renderers/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/renderers/renderer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/ajax_data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/column_data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/columnar_data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/geojson_data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/sources/remote_data_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/adaptive_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/basic_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/categorical_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/composite_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/continuous_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/datetime_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/days_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/fixed_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/log_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/months_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/single_interval_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/util.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tickers/years_ticker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/bbox_tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/dynamic_image_renderer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/image_pool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/image_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/mercator_tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/quadkey_tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/tile_renderer.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/tile_utils.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/tms_tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tiles/wmts_tile_source.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/action_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/help_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/redo_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/reset_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/save_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/undo_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/zoom_in_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/actions/zoom_out_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/button_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/box_select_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/box_zoom_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/gesture_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/lasso_select_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/pan_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/poly_select_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/resize_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/select_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/tap_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/wheel_pan_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/gestures/wheel_zoom_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/inspectors/crosshair_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/inspectors/hover_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/inspectors/inspect_tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/on_off_button.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/tool.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/tool_events.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/tool_proxy.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/toolbar.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/toolbar_base.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/toolbar_box.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/tools/toolbar_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/interpolator.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/jitter.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/linear_interpolator.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/step_interpolator.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/transforms/transform.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/abstract_button.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/abstract_icon.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/autocomplete_input.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/button.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/button_group_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/button_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/cell_editors.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/cell_formatters.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/checkbox_button_group.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/checkbox_group.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/data_table.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/date_picker.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/date_range_slider.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/div.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/dropdown.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/dropdown_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/index.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/input_widget.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/main.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/markup.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/markup_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/multiselect.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/multiselecttemplate.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/panel.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/paragraph.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/pretext.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/radio_button_group.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/radio_group.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/range_slider.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/selectbox.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/selecttemplate.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/slider.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/slidertemplate.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/table_column.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/table_widget.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/tabs.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/tabs_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/text_input.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/text_input_template.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/toggle.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/models/widgets/widget.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/safely.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree/version.js\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/charts.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/linalg.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/models.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/palettes.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/plotting.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/bokeh.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/charts.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/colors.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/document.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/enums.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/mixins.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/annotations.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/axes.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/callbacks.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/formatters.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/glyphs.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/grids.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/images.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/layouts.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/map_plots.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/mappers.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/markers.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/model.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/plots.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/ranges.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/renderers.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/sources.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/tickers.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/tiles.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/toolbars.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/models/tools.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/palettes.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/plotting.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/selected.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/types.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/utils.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/vectorization.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/api/typings/views.d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/base.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/client.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/backbone.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/bokeh_view.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/build_views.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/enums.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/events.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/has_props.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/hittest.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/layout/layout_canvas.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/layout/side_panel.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/layout/solver.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/logging.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/properties.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/property_mixins.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/selection_manager.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/selector.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/ui_events.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/bbox.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/canvas.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/color.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/data_structures.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/deserialize.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/dom.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/math.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/proj4.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/projections.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/refs.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/selection.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/serialization.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/string.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/svg_colors.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/templating.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/text.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/throttle.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/underscore.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/util/zoom.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/core/visuals.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/document.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/embed.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/main.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/model.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/annotation.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/arrow.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/arrow_head.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/box_annotation.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/color_bar.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/label.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/label_set.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/legend.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/legend_item.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/poly_annotation.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/span.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/text_annotation.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/title.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/annotations/tooltip.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/categorical_axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/continuous_axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/datetime_axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/linear_axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/axes/log_axis.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/callbacks/customjs.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/callbacks/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/callbacks/open_url.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/canvas/canvas.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/canvas/canvas_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/canvas/cartesian_frame.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/basic_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/categorical_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/datetime_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/func_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/log_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/numeral_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/printf_tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/formatters/tick_formatter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/annular_wedge.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/annulus.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/arc.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/bezier.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/circle.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/ellipse.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/glyph.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/hbar.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/image.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/image_rgba.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/image_url.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/line.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/multi_line.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/oval.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/patch.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/patches.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/quad.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/quadratic.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/ray.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/rect.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/segment.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/text.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/vbar.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/webgl/base.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/webgl/line.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/webgl/main.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/webgl/markers.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/glyphs/wedge.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/grids/grid.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/grids/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/box.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/column.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/layout_dom.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/row.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/spacer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/layouts/widget_box.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/categorical_color_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/categorical_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/color_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/grid_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/linear_color_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/linear_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/log_color_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/mappers/log_mapper.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/markers/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/markers/marker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/plots/gmap_plot.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/plots/gmap_plot_canvas.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/plots/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/plots/plot.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/plots/plot_canvas.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/data_range.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/data_range1d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/factor_range.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/range.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/ranges/range1d.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/renderers/glyph_renderer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/renderers/guide_renderer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/renderers/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/renderers/renderer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/ajax_data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/column_data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/columnar_data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/geojson_data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/sources/remote_data_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/adaptive_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/basic_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/categorical_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/composite_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/continuous_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/datetime_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/days_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/fixed_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/log_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/months_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/single_interval_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/util.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tickers/years_ticker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/bbox_tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/dynamic_image_renderer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/image_pool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/image_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/mercator_tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/quadkey_tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/tile_renderer.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/tile_utils.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/tms_tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tiles/wmts_tile_source.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/action_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/help_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/redo_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/reset_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/save_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/undo_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/zoom_in_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/actions/zoom_out_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/button_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/box_select_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/box_zoom_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/gesture_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/lasso_select_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/pan_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/poly_select_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/resize_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/select_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/tap_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/wheel_pan_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/gestures/wheel_zoom_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/inspectors/crosshair_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/inspectors/hover_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/inspectors/inspect_tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/on_off_button.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/tool.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/tool_events.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/tool_proxy.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/toolbar.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/toolbar_base.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/toolbar_box.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/tools/toolbar_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/interpolator.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/jitter.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/linear_interpolator.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/step_interpolator.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/transforms/transform.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/abstract_button.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/abstract_icon.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/autocomplete_input.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/button.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/button_group_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/button_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/cell_editors.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/cell_formatters.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/checkbox_button_group.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/checkbox_group.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/data_table.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/date_picker.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/date_range_slider.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/div.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/dropdown.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/dropdown_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/index.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/input_widget.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/main.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/markup.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/markup_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/multiselect.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/multiselecttemplate.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/panel.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/paragraph.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/pretext.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/radio_button_group.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/radio_group.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/range_slider.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/selectbox.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/selecttemplate.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/slider.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/slidertemplate.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/table_column.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/table_widget.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/tabs.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/tabs_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/text_input.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/text_input_template.tsx\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/toggle.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/models/widgets/widget.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/safely.ts\', \'lib/python3.6/site-packages/bokeh/server/static/js/tree_ts/version.ts\', \'lib/python3.6/site-packages/bokeh/server/task.py\', \'lib/python3.6/site-packages/bokeh/server/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/tests/__pycache__/test_server.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/tests/__pycache__/test_tornado.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/tests/test_server.py\', \'lib/python3.6/site-packages/bokeh/server/tests/test_tornado.py\', \'lib/python3.6/site-packages/bokeh/server/tests/utils.py\', \'lib/python3.6/site-packages/bokeh/server/tornado.py\', \'lib/python3.6/site-packages/bokeh/server/urls.py\', \'lib/python3.6/site-packages/bokeh/server/views/__init__.py\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/autoload_js_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/doc_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/root_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/session_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/static_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/__pycache__/ws.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/server/views/app_index.html\', \'lib/python3.6/site-packages/bokeh/server/views/autoload_js_handler.py\', \'lib/python3.6/site-packages/bokeh/server/views/doc_handler.py\', \'lib/python3.6/site-packages/bokeh/server/views/root_handler.py\', \'lib/python3.6/site-packages/bokeh/server/views/session_handler.py\', \'lib/python3.6/site-packages/bokeh/server/views/static_handler.py\', \'lib/python3.6/site-packages/bokeh/server/views/ws.py\', \'lib/python3.6/site-packages/bokeh/settings.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/__init__.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_autodoc.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_directive.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_enum.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_gallery.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_github.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_index_toctree.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_jinja.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_model.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_options.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_palette.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_palette_group.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_plot.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_prop.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/bokeh_sitemap.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/collapsible_code_block.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/example_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/sample.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/__pycache__/templates.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/collapsible_code_block_epilogue.html\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/collapsible_code_block_prologue.html\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/enum_detail.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/gallery_page.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/jinja_detail.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/model_detail.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/options_detail.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/palette_detail.html\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/palette_group_detail.html\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/plot_page.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/_templates/prop_detail.rst\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_autodoc.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_directive.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_enum.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_gallery.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_github.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_index_toctree.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_jinja.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_model.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_options.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_palette.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_palette_group.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_plot.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_prop.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/bokeh_sitemap.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/collapsible_code_block.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/example_handler.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/sample.py\', \'lib/python3.6/site-packages/bokeh/sphinxext/templates.py\', \'lib/python3.6/site-packages/bokeh/templates.py\', \'lib/python3.6/site-packages/bokeh/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_bokeh_init.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_client_server.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_colors.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_document.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_driving.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_embed.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_layouts.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_main_module.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_model.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_palettes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_resources.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_server.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_themes.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/__pycache__/test_widgets.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/tests/test_bokeh_init.py\', \'lib/python3.6/site-packages/bokeh/tests/test_client_server.py\', \'lib/python3.6/site-packages/bokeh/tests/test_colors.py\', \'lib/python3.6/site-packages/bokeh/tests/test_document.py\', \'lib/python3.6/site-packages/bokeh/tests/test_driving.py\', \'lib/python3.6/site-packages/bokeh/tests/test_embed.py\', \'lib/python3.6/site-packages/bokeh/tests/test_io.py\', \'lib/python3.6/site-packages/bokeh/tests/test_layouts.py\', \'lib/python3.6/site-packages/bokeh/tests/test_main_module.py\', \'lib/python3.6/site-packages/bokeh/tests/test_model.py\', \'lib/python3.6/site-packages/bokeh/tests/test_objects.py\', \'lib/python3.6/site-packages/bokeh/tests/test_palettes.py\', \'lib/python3.6/site-packages/bokeh/tests/test_resources.py\', \'lib/python3.6/site-packages/bokeh/tests/test_server.py\', \'lib/python3.6/site-packages/bokeh/tests/test_themes.py\', \'lib/python3.6/site-packages/bokeh/tests/test_transforms.py\', \'lib/python3.6/site-packages/bokeh/tests/test_widgets.py\', \'lib/python3.6/site-packages/bokeh/themes/__init__.py\', \'lib/python3.6/site-packages/bokeh/themes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/themes/__pycache__/theme.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/themes/theme.py\', \'lib/python3.6/site-packages/bokeh/tile_providers.py\', \'lib/python3.6/site-packages/bokeh/util/__init__.py\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/_plot_arg_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/api_crawler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/browser.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/callback_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/dependencies.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/future.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/logconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/options.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/paths.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/platform.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/plot_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/session_id.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/string.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/tornado.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/__pycache__/warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/_plot_arg_helpers.py\', \'lib/python3.6/site-packages/bokeh/util/api_crawler.py\', \'lib/python3.6/site-packages/bokeh/util/browser.py\', \'lib/python3.6/site-packages/bokeh/util/callback_manager.py\', \'lib/python3.6/site-packages/bokeh/util/compiler.py\', \'lib/python3.6/site-packages/bokeh/util/dependencies.py\', \'lib/python3.6/site-packages/bokeh/util/deprecation.py\', \'lib/python3.6/site-packages/bokeh/util/future.py\', \'lib/python3.6/site-packages/bokeh/util/logconfig.py\', \'lib/python3.6/site-packages/bokeh/util/notebook.py\', \'lib/python3.6/site-packages/bokeh/util/options.py\', \'lib/python3.6/site-packages/bokeh/util/paths.py\', \'lib/python3.6/site-packages/bokeh/util/platform.py\', \'lib/python3.6/site-packages/bokeh/util/plot_utils.py\', \'lib/python3.6/site-packages/bokeh/util/serialization.py\', \'lib/python3.6/site-packages/bokeh/util/session_id.py\', \'lib/python3.6/site-packages/bokeh/util/string.py\', \'lib/python3.6/site-packages/bokeh/util/testing.py\', \'lib/python3.6/site-packages/bokeh/util/tests/__init__.py\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test__plot_arg_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_api_crawler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_browser.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_callback_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_dependencies.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_options.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_session_id.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_string.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_testing.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/__pycache__/test_tornado.cpython-36.pyc\', \'lib/python3.6/site-packages/bokeh/util/tests/test__plot_arg_helpers.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_api_crawler.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_browser.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_callback_manager.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_compiler.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_dependencies.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_deprecation.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_options.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_serialization.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_session_id.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_string.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_testing.py\', \'lib/python3.6/site-packages/bokeh/util/tests/test_tornado.py\', \'lib/python3.6/site-packages/bokeh/util/tornado.py\', \'lib/python3.6/site-packages/bokeh/util/version.py\', \'lib/python3.6/site-packages/bokeh/util/warnings.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/bokeh-0.12.4-py36_0\', type=1))", "defaults::boto-2.45.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'47e1f1bd39b84d1a5ca45de02f8d4553\', name=\'boto\', platform=\'linux\', subdir=\'linux-64\', version=\'2.45.0\', fn=\'boto-2.45.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/boto-2.45.0-py36_0.tar.bz2\', files=(\'bin/asadmin\', \'bin/bundle_image\', \'bin/cfadmin\', \'bin/cq\', \'bin/cwutil\', \'bin/dynamodb_dump\', \'bin/dynamodb_load\', \'bin/elbadmin\', \'bin/fetch_file\', \'bin/glacier\', \'bin/instance_events\', \'bin/kill_instance\', \'bin/launch_instance\', \'bin/list_instances\', \'bin/lss3\', \'bin/mturk\', \'bin/pyami_sendmail\', \'bin/route53\', \'bin/s3put\', \'bin/sdbadmin\', \'bin/taskadmin\', \'lib/python3.6/site-packages/boto-2.45.0-py3.6.egg-info\', \'lib/python3.6/site-packages/boto/__init__.py\', \'lib/python3.6/site-packages/boto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/auth.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/auth_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/handler.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/https_connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/jsonresponse.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/provider.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/regioninfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/requestlog.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/resultset.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/storage_uri.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/auth.py\', \'lib/python3.6/site-packages/boto/auth_handler.py\', \'lib/python3.6/site-packages/boto/awslambda/__init__.py\', \'lib/python3.6/site-packages/boto/awslambda/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/awslambda/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/awslambda/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/awslambda/exceptions.py\', \'lib/python3.6/site-packages/boto/awslambda/layer1.py\', \'lib/python3.6/site-packages/boto/beanstalk/__init__.py\', \'lib/python3.6/site-packages/boto/beanstalk/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/beanstalk/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/beanstalk/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/beanstalk/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/beanstalk/__pycache__/wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/beanstalk/exception.py\', \'lib/python3.6/site-packages/boto/beanstalk/layer1.py\', \'lib/python3.6/site-packages/boto/beanstalk/response.py\', \'lib/python3.6/site-packages/boto/beanstalk/wrapper.py\', \'lib/python3.6/site-packages/boto/cacerts/__init__.py\', \'lib/python3.6/site-packages/boto/cacerts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cacerts/cacerts.txt\', \'lib/python3.6/site-packages/boto/cloudformation/__init__.py\', \'lib/python3.6/site-packages/boto/cloudformation/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudformation/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudformation/__pycache__/stack.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudformation/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudformation/connection.py\', \'lib/python3.6/site-packages/boto/cloudformation/stack.py\', \'lib/python3.6/site-packages/boto/cloudformation/template.py\', \'lib/python3.6/site-packages/boto/cloudfront/__init__.py\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/distribution.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/identity.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/invalidation.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/object.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/origin.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/__pycache__/signers.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudfront/distribution.py\', \'lib/python3.6/site-packages/boto/cloudfront/exception.py\', \'lib/python3.6/site-packages/boto/cloudfront/identity.py\', \'lib/python3.6/site-packages/boto/cloudfront/invalidation.py\', \'lib/python3.6/site-packages/boto/cloudfront/logging.py\', \'lib/python3.6/site-packages/boto/cloudfront/object.py\', \'lib/python3.6/site-packages/boto/cloudfront/origin.py\', \'lib/python3.6/site-packages/boto/cloudfront/signers.py\', \'lib/python3.6/site-packages/boto/cloudhsm/__init__.py\', \'lib/python3.6/site-packages/boto/cloudhsm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudhsm/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudhsm/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudhsm/exceptions.py\', \'lib/python3.6/site-packages/boto/cloudhsm/layer1.py\', \'lib/python3.6/site-packages/boto/cloudsearch/__init__.py\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/document.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/domain.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/layer2.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/optionstatus.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/search.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/__pycache__/sourceattribute.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch/document.py\', \'lib/python3.6/site-packages/boto/cloudsearch/domain.py\', \'lib/python3.6/site-packages/boto/cloudsearch/layer1.py\', \'lib/python3.6/site-packages/boto/cloudsearch/layer2.py\', \'lib/python3.6/site-packages/boto/cloudsearch/optionstatus.py\', \'lib/python3.6/site-packages/boto/cloudsearch/search.py\', \'lib/python3.6/site-packages/boto/cloudsearch/sourceattribute.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/__init__.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/document.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/domain.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/layer2.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/optionstatus.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/__pycache__/search.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearch2/document.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/domain.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/exceptions.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/layer1.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/layer2.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/optionstatus.py\', \'lib/python3.6/site-packages/boto/cloudsearch2/search.py\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/__init__.py\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/exceptions.py\', \'lib/python3.6/site-packages/boto/cloudsearchdomain/layer1.py\', \'lib/python3.6/site-packages/boto/cloudtrail/__init__.py\', \'lib/python3.6/site-packages/boto/cloudtrail/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudtrail/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudtrail/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cloudtrail/exceptions.py\', \'lib/python3.6/site-packages/boto/cloudtrail/layer1.py\', \'lib/python3.6/site-packages/boto/codedeploy/__init__.py\', \'lib/python3.6/site-packages/boto/codedeploy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/codedeploy/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/codedeploy/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/codedeploy/exceptions.py\', \'lib/python3.6/site-packages/boto/codedeploy/layer1.py\', \'lib/python3.6/site-packages/boto/cognito/__init__.py\', \'lib/python3.6/site-packages/boto/cognito/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/identity/__init__.py\', \'lib/python3.6/site-packages/boto/cognito/identity/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/identity/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/identity/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/identity/exceptions.py\', \'lib/python3.6/site-packages/boto/cognito/identity/layer1.py\', \'lib/python3.6/site-packages/boto/cognito/sync/__init__.py\', \'lib/python3.6/site-packages/boto/cognito/sync/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/sync/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/sync/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/cognito/sync/exceptions.py\', \'lib/python3.6/site-packages/boto/cognito/sync/layer1.py\', \'lib/python3.6/site-packages/boto/compat.py\', \'lib/python3.6/site-packages/boto/configservice/__init__.py\', \'lib/python3.6/site-packages/boto/configservice/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/configservice/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/configservice/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/configservice/exceptions.py\', \'lib/python3.6/site-packages/boto/configservice/layer1.py\', \'lib/python3.6/site-packages/boto/connection.py\', \'lib/python3.6/site-packages/boto/contrib/__init__.py\', \'lib/python3.6/site-packages/boto/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/contrib/__pycache__/ymlmessage.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/contrib/ymlmessage.py\', \'lib/python3.6/site-packages/boto/datapipeline/__init__.py\', \'lib/python3.6/site-packages/boto/datapipeline/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/datapipeline/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/datapipeline/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/datapipeline/exceptions.py\', \'lib/python3.6/site-packages/boto/datapipeline/layer1.py\', \'lib/python3.6/site-packages/boto/directconnect/__init__.py\', \'lib/python3.6/site-packages/boto/directconnect/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/directconnect/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/directconnect/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/directconnect/exceptions.py\', \'lib/python3.6/site-packages/boto/directconnect/layer1.py\', \'lib/python3.6/site-packages/boto/dynamodb/__init__.py\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/batch.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/condition.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/item.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/layer2.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/schema.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb/batch.py\', \'lib/python3.6/site-packages/boto/dynamodb/condition.py\', \'lib/python3.6/site-packages/boto/dynamodb/exceptions.py\', \'lib/python3.6/site-packages/boto/dynamodb/item.py\', \'lib/python3.6/site-packages/boto/dynamodb/layer1.py\', \'lib/python3.6/site-packages/boto/dynamodb/layer2.py\', \'lib/python3.6/site-packages/boto/dynamodb/schema.py\', \'lib/python3.6/site-packages/boto/dynamodb/table.py\', \'lib/python3.6/site-packages/boto/dynamodb/types.py\', \'lib/python3.6/site-packages/boto/dynamodb2/__init__.py\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/fields.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/items.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/results.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/dynamodb2/exceptions.py\', \'lib/python3.6/site-packages/boto/dynamodb2/fields.py\', \'lib/python3.6/site-packages/boto/dynamodb2/items.py\', \'lib/python3.6/site-packages/boto/dynamodb2/layer1.py\', \'lib/python3.6/site-packages/boto/dynamodb2/results.py\', \'lib/python3.6/site-packages/boto/dynamodb2/table.py\', \'lib/python3.6/site-packages/boto/dynamodb2/types.py\', \'lib/python3.6/site-packages/boto/ec2/__init__.py\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/address.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/blockdevicemapping.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/bundleinstance.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/buyreservation.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/ec2object.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/group.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/instance.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/instanceinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/instancestatus.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/instancetype.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/keypair.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/launchspecification.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/networkinterface.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/placementgroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/regioninfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/reservedinstance.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/securitygroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/snapshot.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/spotdatafeedsubscription.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/spotinstancerequest.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/spotpricehistory.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/tag.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/volume.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/volumestatus.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/__pycache__/zone.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/address.py\', \'lib/python3.6/site-packages/boto/ec2/attributes.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__init__.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/activity.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/group.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/instance.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/launchconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/limits.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/policy.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/scheduled.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/__pycache__/tag.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/autoscale/activity.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/group.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/instance.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/launchconfig.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/limits.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/policy.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/request.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/scheduled.py\', \'lib/python3.6/site-packages/boto/ec2/autoscale/tag.py\', \'lib/python3.6/site-packages/boto/ec2/blockdevicemapping.py\', \'lib/python3.6/site-packages/boto/ec2/bundleinstance.py\', \'lib/python3.6/site-packages/boto/ec2/buyreservation.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__init__.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/alarm.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/datapoint.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/dimension.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/listelement.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/__pycache__/metric.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/alarm.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/datapoint.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/dimension.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/listelement.py\', \'lib/python3.6/site-packages/boto/ec2/cloudwatch/metric.py\', \'lib/python3.6/site-packages/boto/ec2/connection.py\', \'lib/python3.6/site-packages/boto/ec2/ec2object.py\', \'lib/python3.6/site-packages/boto/ec2/elb/__init__.py\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/healthcheck.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/instancestate.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/listelement.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/listener.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/loadbalancer.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/policies.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/__pycache__/securitygroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2/elb/attributes.py\', \'lib/python3.6/site-packages/boto/ec2/elb/healthcheck.py\', \'lib/python3.6/site-packages/boto/ec2/elb/instancestate.py\', \'lib/python3.6/site-packages/boto/ec2/elb/listelement.py\', \'lib/python3.6/site-packages/boto/ec2/elb/listener.py\', \'lib/python3.6/site-packages/boto/ec2/elb/loadbalancer.py\', \'lib/python3.6/site-packages/boto/ec2/elb/policies.py\', \'lib/python3.6/site-packages/boto/ec2/elb/securitygroup.py\', \'lib/python3.6/site-packages/boto/ec2/group.py\', \'lib/python3.6/site-packages/boto/ec2/image.py\', \'lib/python3.6/site-packages/boto/ec2/instance.py\', \'lib/python3.6/site-packages/boto/ec2/instanceinfo.py\', \'lib/python3.6/site-packages/boto/ec2/instancestatus.py\', \'lib/python3.6/site-packages/boto/ec2/instancetype.py\', \'lib/python3.6/site-packages/boto/ec2/keypair.py\', \'lib/python3.6/site-packages/boto/ec2/launchspecification.py\', \'lib/python3.6/site-packages/boto/ec2/networkinterface.py\', \'lib/python3.6/site-packages/boto/ec2/placementgroup.py\', \'lib/python3.6/site-packages/boto/ec2/regioninfo.py\', \'lib/python3.6/site-packages/boto/ec2/reservedinstance.py\', \'lib/python3.6/site-packages/boto/ec2/securitygroup.py\', \'lib/python3.6/site-packages/boto/ec2/snapshot.py\', \'lib/python3.6/site-packages/boto/ec2/spotdatafeedsubscription.py\', \'lib/python3.6/site-packages/boto/ec2/spotinstancerequest.py\', \'lib/python3.6/site-packages/boto/ec2/spotpricehistory.py\', \'lib/python3.6/site-packages/boto/ec2/tag.py\', \'lib/python3.6/site-packages/boto/ec2/volume.py\', \'lib/python3.6/site-packages/boto/ec2/volumestatus.py\', \'lib/python3.6/site-packages/boto/ec2/zone.py\', \'lib/python3.6/site-packages/boto/ec2containerservice/__init__.py\', \'lib/python3.6/site-packages/boto/ec2containerservice/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2containerservice/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2containerservice/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ec2containerservice/exceptions.py\', \'lib/python3.6/site-packages/boto/ec2containerservice/layer1.py\', \'lib/python3.6/site-packages/boto/ecs/__init__.py\', \'lib/python3.6/site-packages/boto/ecs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ecs/__pycache__/item.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ecs/item.py\', \'lib/python3.6/site-packages/boto/elasticache/__init__.py\', \'lib/python3.6/site-packages/boto/elasticache/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/elasticache/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/elasticache/layer1.py\', \'lib/python3.6/site-packages/boto/elastictranscoder/__init__.py\', \'lib/python3.6/site-packages/boto/elastictranscoder/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/elastictranscoder/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/elastictranscoder/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/elastictranscoder/exceptions.py\', \'lib/python3.6/site-packages/boto/elastictranscoder/layer1.py\', \'lib/python3.6/site-packages/boto/emr/__init__.py\', \'lib/python3.6/site-packages/boto/emr/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/__pycache__/bootstrap_action.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/__pycache__/emrobject.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/__pycache__/instance_group.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/__pycache__/step.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/emr/bootstrap_action.py\', \'lib/python3.6/site-packages/boto/emr/connection.py\', \'lib/python3.6/site-packages/boto/emr/emrobject.py\', \'lib/python3.6/site-packages/boto/emr/instance_group.py\', \'lib/python3.6/site-packages/boto/emr/step.py\', \'lib/python3.6/site-packages/boto/endpoints.json\', \'lib/python3.6/site-packages/boto/exception.py\', \'lib/python3.6/site-packages/boto/file/__init__.py\', \'lib/python3.6/site-packages/boto/file/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/file/__pycache__/bucket.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/file/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/file/__pycache__/key.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/file/__pycache__/simpleresultset.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/file/bucket.py\', \'lib/python3.6/site-packages/boto/file/connection.py\', \'lib/python3.6/site-packages/boto/file/key.py\', \'lib/python3.6/site-packages/boto/file/simpleresultset.py\', \'lib/python3.6/site-packages/boto/fps/__init__.py\', \'lib/python3.6/site-packages/boto/fps/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/fps/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/fps/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/fps/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/fps/connection.py\', \'lib/python3.6/site-packages/boto/fps/exception.py\', \'lib/python3.6/site-packages/boto/fps/response.py\', \'lib/python3.6/site-packages/boto/glacier/__init__.py\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/concurrent.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/job.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/layer2.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/vault.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/__pycache__/writer.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/glacier/concurrent.py\', \'lib/python3.6/site-packages/boto/glacier/exceptions.py\', \'lib/python3.6/site-packages/boto/glacier/job.py\', \'lib/python3.6/site-packages/boto/glacier/layer1.py\', \'lib/python3.6/site-packages/boto/glacier/layer2.py\', \'lib/python3.6/site-packages/boto/glacier/response.py\', \'lib/python3.6/site-packages/boto/glacier/utils.py\', \'lib/python3.6/site-packages/boto/glacier/vault.py\', \'lib/python3.6/site-packages/boto/glacier/writer.py\', \'lib/python3.6/site-packages/boto/gs/__init__.py\', \'lib/python3.6/site-packages/boto/gs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/acl.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/bucket.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/bucketlistresultset.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/cors.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/key.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/lifecycle.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/resumable_upload_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/__pycache__/user.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/gs/acl.py\', \'lib/python3.6/site-packages/boto/gs/bucket.py\', \'lib/python3.6/site-packages/boto/gs/bucketlistresultset.py\', \'lib/python3.6/site-packages/boto/gs/connection.py\', \'lib/python3.6/site-packages/boto/gs/cors.py\', \'lib/python3.6/site-packages/boto/gs/key.py\', \'lib/python3.6/site-packages/boto/gs/lifecycle.py\', \'lib/python3.6/site-packages/boto/gs/resumable_upload_handler.py\', \'lib/python3.6/site-packages/boto/gs/user.py\', \'lib/python3.6/site-packages/boto/handler.py\', \'lib/python3.6/site-packages/boto/https_connection.py\', \'lib/python3.6/site-packages/boto/iam/__init__.py\', \'lib/python3.6/site-packages/boto/iam/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/iam/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/iam/__pycache__/summarymap.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/iam/connection.py\', \'lib/python3.6/site-packages/boto/iam/summarymap.py\', \'lib/python3.6/site-packages/boto/jsonresponse.py\', \'lib/python3.6/site-packages/boto/kinesis/__init__.py\', \'lib/python3.6/site-packages/boto/kinesis/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kinesis/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kinesis/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kinesis/exceptions.py\', \'lib/python3.6/site-packages/boto/kinesis/layer1.py\', \'lib/python3.6/site-packages/boto/kms/__init__.py\', \'lib/python3.6/site-packages/boto/kms/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kms/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kms/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/kms/exceptions.py\', \'lib/python3.6/site-packages/boto/kms/layer1.py\', \'lib/python3.6/site-packages/boto/logs/__init__.py\', \'lib/python3.6/site-packages/boto/logs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/logs/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/logs/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/logs/exceptions.py\', \'lib/python3.6/site-packages/boto/logs/layer1.py\', \'lib/python3.6/site-packages/boto/machinelearning/__init__.py\', \'lib/python3.6/site-packages/boto/machinelearning/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/machinelearning/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/machinelearning/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/machinelearning/exceptions.py\', \'lib/python3.6/site-packages/boto/machinelearning/layer1.py\', \'lib/python3.6/site-packages/boto/manage/__init__.py\', \'lib/python3.6/site-packages/boto/manage/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/cmdshell.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/propget.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/task.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/test_manage.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/__pycache__/volume.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/manage/cmdshell.py\', \'lib/python3.6/site-packages/boto/manage/propget.py\', \'lib/python3.6/site-packages/boto/manage/server.py\', \'lib/python3.6/site-packages/boto/manage/task.py\', \'lib/python3.6/site-packages/boto/manage/test_manage.py\', \'lib/python3.6/site-packages/boto/manage/volume.py\', \'lib/python3.6/site-packages/boto/mashups/__init__.py\', \'lib/python3.6/site-packages/boto/mashups/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mashups/__pycache__/interactive.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mashups/__pycache__/iobject.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mashups/__pycache__/order.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mashups/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mashups/interactive.py\', \'lib/python3.6/site-packages/boto/mashups/iobject.py\', \'lib/python3.6/site-packages/boto/mashups/order.py\', \'lib/python3.6/site-packages/boto/mashups/server.py\', \'lib/python3.6/site-packages/boto/mturk/__init__.py\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/layoutparam.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/notification.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/price.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/qualification.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/__pycache__/question.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mturk/connection.py\', \'lib/python3.6/site-packages/boto/mturk/layoutparam.py\', \'lib/python3.6/site-packages/boto/mturk/notification.py\', \'lib/python3.6/site-packages/boto/mturk/price.py\', \'lib/python3.6/site-packages/boto/mturk/qualification.py\', \'lib/python3.6/site-packages/boto/mturk/question.py\', \'lib/python3.6/site-packages/boto/mws/__init__.py\', \'lib/python3.6/site-packages/boto/mws/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mws/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mws/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mws/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/mws/connection.py\', \'lib/python3.6/site-packages/boto/mws/exception.py\', \'lib/python3.6/site-packages/boto/mws/response.py\', \'lib/python3.6/site-packages/boto/opsworks/__init__.py\', \'lib/python3.6/site-packages/boto/opsworks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/opsworks/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/opsworks/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/opsworks/exceptions.py\', \'lib/python3.6/site-packages/boto/opsworks/layer1.py\', \'lib/python3.6/site-packages/boto/plugin.py\', \'lib/python3.6/site-packages/boto/provider.py\', \'lib/python3.6/site-packages/boto/pyami/__init__.py\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/bootstrap.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/copybot.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/helloworld.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/launch_ami.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/scriptbase.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/__pycache__/startup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/bootstrap.py\', \'lib/python3.6/site-packages/boto/pyami/config.py\', \'lib/python3.6/site-packages/boto/pyami/copybot.py\', \'lib/python3.6/site-packages/boto/pyami/helloworld.py\', \'lib/python3.6/site-packages/boto/pyami/installers/__init__.py\', \'lib/python3.6/site-packages/boto/pyami/installers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__init__.py\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/apache.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/ebs.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/installer.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/mysql.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/__pycache__/trac.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/apache.py\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/ebs.py\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/installer.py\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/mysql.py\', \'lib/python3.6/site-packages/boto/pyami/installers/ubuntu/trac.py\', \'lib/python3.6/site-packages/boto/pyami/launch_ami.py\', \'lib/python3.6/site-packages/boto/pyami/scriptbase.py\', \'lib/python3.6/site-packages/boto/pyami/startup.py\', \'lib/python3.6/site-packages/boto/rds/__init__.py\', \'lib/python3.6/site-packages/boto/rds/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/dbinstance.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/dbsecuritygroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/dbsnapshot.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/dbsubnetgroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/event.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/logfile.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/optiongroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/parametergroup.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/regioninfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/statusinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/__pycache__/vpcsecuritygroupmembership.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds/dbinstance.py\', \'lib/python3.6/site-packages/boto/rds/dbsecuritygroup.py\', \'lib/python3.6/site-packages/boto/rds/dbsnapshot.py\', \'lib/python3.6/site-packages/boto/rds/dbsubnetgroup.py\', \'lib/python3.6/site-packages/boto/rds/event.py\', \'lib/python3.6/site-packages/boto/rds/logfile.py\', \'lib/python3.6/site-packages/boto/rds/optiongroup.py\', \'lib/python3.6/site-packages/boto/rds/parametergroup.py\', \'lib/python3.6/site-packages/boto/rds/regioninfo.py\', \'lib/python3.6/site-packages/boto/rds/statusinfo.py\', \'lib/python3.6/site-packages/boto/rds/vpcsecuritygroupmembership.py\', \'lib/python3.6/site-packages/boto/rds2/__init__.py\', \'lib/python3.6/site-packages/boto/rds2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds2/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds2/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/rds2/exceptions.py\', \'lib/python3.6/site-packages/boto/rds2/layer1.py\', \'lib/python3.6/site-packages/boto/redshift/__init__.py\', \'lib/python3.6/site-packages/boto/redshift/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/redshift/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/redshift/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/redshift/exceptions.py\', \'lib/python3.6/site-packages/boto/redshift/layer1.py\', \'lib/python3.6/site-packages/boto/regioninfo.py\', \'lib/python3.6/site-packages/boto/requestlog.py\', \'lib/python3.6/site-packages/boto/resultset.py\', \'lib/python3.6/site-packages/boto/roboto/__init__.py\', \'lib/python3.6/site-packages/boto/roboto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/roboto/__pycache__/awsqueryrequest.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/roboto/__pycache__/awsqueryservice.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/roboto/__pycache__/param.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/roboto/awsqueryrequest.py\', \'lib/python3.6/site-packages/boto/roboto/awsqueryservice.py\', \'lib/python3.6/site-packages/boto/roboto/param.py\', \'lib/python3.6/site-packages/boto/route53/__init__.py\', \'lib/python3.6/site-packages/boto/route53/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/healthcheck.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/hostedzone.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/record.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/status.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/__pycache__/zone.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/connection.py\', \'lib/python3.6/site-packages/boto/route53/domains/__init__.py\', \'lib/python3.6/site-packages/boto/route53/domains/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/domains/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/domains/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/route53/domains/exceptions.py\', \'lib/python3.6/site-packages/boto/route53/domains/layer1.py\', \'lib/python3.6/site-packages/boto/route53/exception.py\', \'lib/python3.6/site-packages/boto/route53/healthcheck.py\', \'lib/python3.6/site-packages/boto/route53/hostedzone.py\', \'lib/python3.6/site-packages/boto/route53/record.py\', \'lib/python3.6/site-packages/boto/route53/status.py\', \'lib/python3.6/site-packages/boto/route53/zone.py\', \'lib/python3.6/site-packages/boto/s3/__init__.py\', \'lib/python3.6/site-packages/boto/s3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/acl.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/bucket.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/bucketlistresultset.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/bucketlogging.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/cors.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/deletemarker.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/key.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/keyfile.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/lifecycle.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/multidelete.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/multipart.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/prefix.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/resumable_download_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/tagging.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/user.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/__pycache__/website.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/s3/acl.py\', \'lib/python3.6/site-packages/boto/s3/bucket.py\', \'lib/python3.6/site-packages/boto/s3/bucketlistresultset.py\', \'lib/python3.6/site-packages/boto/s3/bucketlogging.py\', \'lib/python3.6/site-packages/boto/s3/connection.py\', \'lib/python3.6/site-packages/boto/s3/cors.py\', \'lib/python3.6/site-packages/boto/s3/deletemarker.py\', \'lib/python3.6/site-packages/boto/s3/key.py\', \'lib/python3.6/site-packages/boto/s3/keyfile.py\', \'lib/python3.6/site-packages/boto/s3/lifecycle.py\', \'lib/python3.6/site-packages/boto/s3/multidelete.py\', \'lib/python3.6/site-packages/boto/s3/multipart.py\', \'lib/python3.6/site-packages/boto/s3/prefix.py\', \'lib/python3.6/site-packages/boto/s3/resumable_download_handler.py\', \'lib/python3.6/site-packages/boto/s3/tagging.py\', \'lib/python3.6/site-packages/boto/s3/user.py\', \'lib/python3.6/site-packages/boto/s3/website.py\', \'lib/python3.6/site-packages/boto/sdb/__init__.py\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/domain.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/item.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/queryresultset.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/__pycache__/regioninfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/connection.py\', \'lib/python3.6/site-packages/boto/sdb/db/__init__.py\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/blob.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/key.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/model.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/property.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/query.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/__pycache__/test_db.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/blob.py\', \'lib/python3.6/site-packages/boto/sdb/db/key.py\', \'lib/python3.6/site-packages/boto/sdb/db/manager/__init__.py\', \'lib/python3.6/site-packages/boto/sdb/db/manager/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/manager/__pycache__/sdbmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/manager/__pycache__/xmlmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sdb/db/manager/sdbmanager.py\', \'lib/python3.6/site-packages/boto/sdb/db/manager/xmlmanager.py\', \'lib/python3.6/site-packages/boto/sdb/db/model.py\', \'lib/python3.6/site-packages/boto/sdb/db/property.py\', \'lib/python3.6/site-packages/boto/sdb/db/query.py\', \'lib/python3.6/site-packages/boto/sdb/db/sequence.py\', \'lib/python3.6/site-packages/boto/sdb/db/test_db.py\', \'lib/python3.6/site-packages/boto/sdb/domain.py\', \'lib/python3.6/site-packages/boto/sdb/item.py\', \'lib/python3.6/site-packages/boto/sdb/queryresultset.py\', \'lib/python3.6/site-packages/boto/sdb/regioninfo.py\', \'lib/python3.6/site-packages/boto/services/__init__.py\', \'lib/python3.6/site-packages/boto/services/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/bs.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/result.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/service.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/servicedef.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/sonofmmm.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/__pycache__/submit.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/services/bs.py\', \'lib/python3.6/site-packages/boto/services/message.py\', \'lib/python3.6/site-packages/boto/services/result.py\', \'lib/python3.6/site-packages/boto/services/service.py\', \'lib/python3.6/site-packages/boto/services/servicedef.py\', \'lib/python3.6/site-packages/boto/services/sonofmmm.py\', \'lib/python3.6/site-packages/boto/services/submit.py\', \'lib/python3.6/site-packages/boto/ses/__init__.py\', \'lib/python3.6/site-packages/boto/ses/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ses/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ses/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/ses/connection.py\', \'lib/python3.6/site-packages/boto/ses/exceptions.py\', \'lib/python3.6/site-packages/boto/sns/__init__.py\', \'lib/python3.6/site-packages/boto/sns/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sns/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sns/connection.py\', \'lib/python3.6/site-packages/boto/sqs/__init__.py\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/batchresults.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/bigmessage.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/jsonmessage.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/messageattributes.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/queue.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/__pycache__/regioninfo.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sqs/attributes.py\', \'lib/python3.6/site-packages/boto/sqs/batchresults.py\', \'lib/python3.6/site-packages/boto/sqs/bigmessage.py\', \'lib/python3.6/site-packages/boto/sqs/connection.py\', \'lib/python3.6/site-packages/boto/sqs/jsonmessage.py\', \'lib/python3.6/site-packages/boto/sqs/message.py\', \'lib/python3.6/site-packages/boto/sqs/messageattributes.py\', \'lib/python3.6/site-packages/boto/sqs/queue.py\', \'lib/python3.6/site-packages/boto/sqs/regioninfo.py\', \'lib/python3.6/site-packages/boto/storage_uri.py\', \'lib/python3.6/site-packages/boto/sts/__init__.py\', \'lib/python3.6/site-packages/boto/sts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sts/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sts/__pycache__/credentials.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/sts/connection.py\', \'lib/python3.6/site-packages/boto/sts/credentials.py\', \'lib/python3.6/site-packages/boto/support/__init__.py\', \'lib/python3.6/site-packages/boto/support/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/support/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/support/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/support/exceptions.py\', \'lib/python3.6/site-packages/boto/support/layer1.py\', \'lib/python3.6/site-packages/boto/swf/__init__.py\', \'lib/python3.6/site-packages/boto/swf/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/swf/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/swf/__pycache__/layer1.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/swf/__pycache__/layer1_decisions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/swf/__pycache__/layer2.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/swf/exceptions.py\', \'lib/python3.6/site-packages/boto/swf/layer1.py\', \'lib/python3.6/site-packages/boto/swf/layer1_decisions.py\', \'lib/python3.6/site-packages/boto/swf/layer2.py\', \'lib/python3.6/site-packages/boto/utils.py\', \'lib/python3.6/site-packages/boto/vendored/__init__.py\', \'lib/python3.6/site-packages/boto/vendored/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vendored/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vendored/six.py\', \'lib/python3.6/site-packages/boto/vpc/__init__.py\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/customergateway.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/dhcpoptions.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/internetgateway.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/networkacl.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/routetable.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/subnet.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/vpc.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/vpc_peering_connection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/vpnconnection.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/__pycache__/vpngateway.cpython-36.pyc\', \'lib/python3.6/site-packages/boto/vpc/customergateway.py\', \'lib/python3.6/site-packages/boto/vpc/dhcpoptions.py\', \'lib/python3.6/site-packages/boto/vpc/internetgateway.py\', \'lib/python3.6/site-packages/boto/vpc/networkacl.py\', \'lib/python3.6/site-packages/boto/vpc/routetable.py\', \'lib/python3.6/site-packages/boto/vpc/subnet.py\', \'lib/python3.6/site-packages/boto/vpc/vpc.py\', \'lib/python3.6/site-packages/boto/vpc/vpc_peering_connection.py\', \'lib/python3.6/site-packages/boto/vpc/vpnconnection.py\', \'lib/python3.6/site-packages/boto/vpc/vpngateway.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/boto-2.45.0-py36_0\', type=1))", "defaults::bottleneck-1.2.0-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'numpy 1.11*\', \'python 3.6*\'), license=\'Simplified BSD\', license_family=\'BSD\', md5=\'0015ca99284ad054fe6fe477edb28740\', name=\'bottleneck\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.0\', fn=\'bottleneck-1.2.0-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/bottleneck-1.2.0-np111py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/Bottleneck-1.2.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Bottleneck-1.2.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Bottleneck-1.2.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Bottleneck-1.2.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Bottleneck-1.2.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/bottleneck/LICENSE\', \'lib/python3.6/site-packages/bottleneck/__init__.py\', \'lib/python3.6/site-packages/bottleneck/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/benchmark/__init__.py\', \'lib/python3.6/site-packages/bottleneck/benchmark/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/benchmark/__pycache__/autotimeit.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/benchmark/__pycache__/bench.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/benchmark/__pycache__/bench_detailed.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/benchmark/autotimeit.py\', \'lib/python3.6/site-packages/bottleneck/benchmark/bench.py\', \'lib/python3.6/site-packages/bottleneck/benchmark/bench_detailed.py\', \'lib/python3.6/site-packages/bottleneck/move.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/bottleneck/nonreduce.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/bottleneck/nonreduce_axis.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/bottleneck/reduce.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/bottleneck/slow/__init__.py\', \'lib/python3.6/site-packages/bottleneck/slow/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/slow/__pycache__/move.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/slow/__pycache__/nonreduce.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/slow/__pycache__/nonreduce_axis.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/slow/__pycache__/reduce.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/slow/move.py\', \'lib/python3.6/site-packages/bottleneck/slow/nonreduce.py\', \'lib/python3.6/site-packages/bottleneck/slow/nonreduce_axis.py\', \'lib/python3.6/site-packages/bottleneck/slow/reduce.py\', \'lib/python3.6/site-packages/bottleneck/src/__init__.py\', \'lib/python3.6/site-packages/bottleneck/src/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/src/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/src/template.py\', \'lib/python3.6/site-packages/bottleneck/tests/__init__.py\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/input_modifcation_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/list_input_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/move_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/nonreduce_axis_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/nonreduce_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/reduce_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/scalar_input_test.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/bottleneck/tests/input_modifcation_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/list_input_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/move_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/nonreduce_axis_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/nonreduce_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/reduce_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/scalar_input_test.py\', \'lib/python3.6/site-packages/bottleneck/tests/util.py\', \'lib/python3.6/site-packages/bottleneck/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/bottleneck-1.2.0-np111py36_0\', type=1))", "defaults::cairo-1.14.8-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'fontconfig 2.12.*\', \'freetype 2.5.*\', \'libpng >=1.6.27,<1.7\', \'pixman 0.34.*\', \'zlib 1.2.*\'), license=\'LGPL 2.1, MPL 1.1\', license_family=\'LGPL\', md5=\'c373c512434e418cdfee4e6cd9f0a294\', name=\'cairo\', platform=\'linux\', subdir=\'linux-64\', version=\'1.14.8\', fn=\'cairo-1.14.8-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cairo-1.14.8-0.tar.bz2\', files=(\'bin/cairo-trace\', \'include/cairo/cairo-deprecated.h\', \'include/cairo/cairo-features.h\', \'include/cairo/cairo-ft.h\', \'include/cairo/cairo-pdf.h\', \'include/cairo/cairo-ps.h\', \'include/cairo/cairo-script-interpreter.h\', \'include/cairo/cairo-script.h\', \'include/cairo/cairo-svg.h\', \'include/cairo/cairo-version.h\', \'include/cairo/cairo-xlib-xrender.h\', \'include/cairo/cairo-xlib.h\', \'include/cairo/cairo.h\', \'lib/cairo/libcairo-trace.la\', \'lib/cairo/libcairo-trace.so\', \'lib/cairo/libcairo-trace.so.0\', \'lib/cairo/libcairo-trace.so.0.0.0\', \'lib/libcairo-script-interpreter.la\', \'lib/libcairo-script-interpreter.so\', \'lib/libcairo-script-interpreter.so.2\', \'lib/libcairo-script-interpreter.so.2.11400.8\', \'lib/libcairo.la\', \'lib/libcairo.so\', \'lib/libcairo.so.2\', \'lib/libcairo.so.2.11400.8\', \'lib/pkgconfig/cairo-fc.pc\', \'lib/pkgconfig/cairo-ft.pc\', \'lib/pkgconfig/cairo-pdf.pc\', \'lib/pkgconfig/cairo-png.pc\', \'lib/pkgconfig/cairo-ps.pc\', \'lib/pkgconfig/cairo-script.pc\', \'lib/pkgconfig/cairo-svg.pc\', \'lib/pkgconfig/cairo-xlib-xrender.pc\', \'lib/pkgconfig/cairo-xlib.pc\', \'lib/pkgconfig/cairo.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cairo-1.14.8-0\', type=1))", "defaults::cffi-1.9.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'libffi 3.2.1\', \'pycparser\', \'python 3.6*\'), license=\'MIT\', md5=\'e0f51268174e3ee33207089d50b84670\', name=\'cffi\', platform=\'linux\', requires=(\'libffi 3.2.1\', \'pycparser 2.17\', \'python 3.6\'), subdir=\'linux-64\', version=\'1.9.1\', fn=\'cffi-1.9.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cffi-1.9.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/_cffi_backend.so\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/cffi-1.9.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/cffi/__init__.py\', \'lib/python3.6/site-packages/cffi/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/backend_ctypes.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/cffi_opcode.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/commontypes.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/cparser.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/ffiplatform.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/lock.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/model.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/recompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/setuptools_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/vengine_cpy.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/vengine_gen.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/__pycache__/verifier.cpython-36.pyc\', \'lib/python3.6/site-packages/cffi/_cffi_include.h\', \'lib/python3.6/site-packages/cffi/_embedding.h\', \'lib/python3.6/site-packages/cffi/api.py\', \'lib/python3.6/site-packages/cffi/backend_ctypes.py\', \'lib/python3.6/site-packages/cffi/cffi_opcode.py\', \'lib/python3.6/site-packages/cffi/commontypes.py\', \'lib/python3.6/site-packages/cffi/cparser.py\', \'lib/python3.6/site-packages/cffi/ffiplatform.py\', \'lib/python3.6/site-packages/cffi/lock.py\', \'lib/python3.6/site-packages/cffi/model.py\', \'lib/python3.6/site-packages/cffi/parse_c_type.h\', \'lib/python3.6/site-packages/cffi/recompiler.py\', \'lib/python3.6/site-packages/cffi/setuptools_ext.py\', \'lib/python3.6/site-packages/cffi/vengine_cpy.py\', \'lib/python3.6/site-packages/cffi/vengine_gen.py\', \'lib/python3.6/site-packages/cffi/verifier.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cffi-1.9.1-py36_0\', type=1))", "defaults::chardet-2.3.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'GNU Library or Lesser General Public License\', license_family=\'GPL2\', md5=\'923423322626d76fa47797f7cddbca2f\', name=\'chardet\', platform=\'linux\', subdir=\'linux-64\', version=\'2.3.0\', fn=\'chardet-2.3.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/chardet-2.3.0-py36_0.tar.bz2\', files=(\'bin/chardetect\', \'lib/python3.6/site-packages/chardet-2.3.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/chardet-2.3.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/chardet-2.3.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/chardet-2.3.0-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/chardet-2.3.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/chardet/__init__.py\', \'lib/python3.6/site-packages/chardet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/big5freq.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/big5prober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/chardetect.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/chardistribution.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/charsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/cp949prober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/escprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/escsm.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/eucjpprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/euckrfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/euckrprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/euctwfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/euctwprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/gb2312freq.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/gb2312prober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/hebrewprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/jisfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/jpcntx.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/langthaimodel.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/latin1prober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/mbcssm.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/sjisprober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/universaldetector.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/__pycache__/utf8prober.cpython-36.pyc\', \'lib/python3.6/site-packages/chardet/big5freq.py\', \'lib/python3.6/site-packages/chardet/big5prober.py\', \'lib/python3.6/site-packages/chardet/chardetect.py\', \'lib/python3.6/site-packages/chardet/chardistribution.py\', \'lib/python3.6/site-packages/chardet/charsetgroupprober.py\', \'lib/python3.6/site-packages/chardet/charsetprober.py\', \'lib/python3.6/site-packages/chardet/codingstatemachine.py\', \'lib/python3.6/site-packages/chardet/compat.py\', \'lib/python3.6/site-packages/chardet/constants.py\', \'lib/python3.6/site-packages/chardet/cp949prober.py\', \'lib/python3.6/site-packages/chardet/escprober.py\', \'lib/python3.6/site-packages/chardet/escsm.py\', \'lib/python3.6/site-packages/chardet/eucjpprober.py\', \'lib/python3.6/site-packages/chardet/euckrfreq.py\', \'lib/python3.6/site-packages/chardet/euckrprober.py\', \'lib/python3.6/site-packages/chardet/euctwfreq.py\', \'lib/python3.6/site-packages/chardet/euctwprober.py\', \'lib/python3.6/site-packages/chardet/gb2312freq.py\', \'lib/python3.6/site-packages/chardet/gb2312prober.py\', \'lib/python3.6/site-packages/chardet/hebrewprober.py\', \'lib/python3.6/site-packages/chardet/jisfreq.py\', \'lib/python3.6/site-packages/chardet/jpcntx.py\', \'lib/python3.6/site-packages/chardet/langbulgarianmodel.py\', \'lib/python3.6/site-packages/chardet/langcyrillicmodel.py\', \'lib/python3.6/site-packages/chardet/langgreekmodel.py\', \'lib/python3.6/site-packages/chardet/langhebrewmodel.py\', \'lib/python3.6/site-packages/chardet/langhungarianmodel.py\', \'lib/python3.6/site-packages/chardet/langthaimodel.py\', \'lib/python3.6/site-packages/chardet/latin1prober.py\', \'lib/python3.6/site-packages/chardet/mbcharsetprober.py\', \'lib/python3.6/site-packages/chardet/mbcsgroupprober.py\', \'lib/python3.6/site-packages/chardet/mbcssm.py\', \'lib/python3.6/site-packages/chardet/sbcharsetprober.py\', \'lib/python3.6/site-packages/chardet/sbcsgroupprober.py\', \'lib/python3.6/site-packages/chardet/sjisprober.py\', \'lib/python3.6/site-packages/chardet/universaldetector.py\', \'lib/python3.6/site-packages/chardet/utf8prober.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/chardet-2.3.0-py36_0\', type=1))", "defaults::chest-0.2.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'heapdict\', \'python 3.6*\'), license=\'BSD\', md5=\'7380bbf102d2c8c0a34134f5da69f9f0\', name=\'chest\', platform=\'linux\', subdir=\'linux-64\', version=\'0.2.3\', fn=\'chest-0.2.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/chest-0.2.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/chest-0.2.3-py3.6.egg-info\', \'lib/python3.6/site-packages/chest/__init__.py\', \'lib/python3.6/site-packages/chest/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/chest/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/chest/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/chest/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/chest/_version.py\', \'lib/python3.6/site-packages/chest/core.py\', \'lib/python3.6/site-packages/chest/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/chest-0.2.3-py36_0\', type=1))", "defaults::click-6.7-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'fd85c2377dec737a6d800b7de08b2565\', name=\'click\', platform=\'linux\', subdir=\'linux-64\', version=\'6.7\', fn=\'click-6.7-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/click-6.7-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/click-6.7-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/click-6.7-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/click-6.7-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/click-6.7-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/click/__init__.py\', \'lib/python3.6/site-packages/click/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_bashcomplete.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_termui_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_textwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_unicodefun.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/_winconsole.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/formatting.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/globals.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/termui.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/click/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/click/_bashcomplete.py\', \'lib/python3.6/site-packages/click/_compat.py\', \'lib/python3.6/site-packages/click/_termui_impl.py\', \'lib/python3.6/site-packages/click/_textwrap.py\', \'lib/python3.6/site-packages/click/_unicodefun.py\', \'lib/python3.6/site-packages/click/_winconsole.py\', \'lib/python3.6/site-packages/click/core.py\', \'lib/python3.6/site-packages/click/decorators.py\', \'lib/python3.6/site-packages/click/exceptions.py\', \'lib/python3.6/site-packages/click/formatting.py\', \'lib/python3.6/site-packages/click/globals.py\', \'lib/python3.6/site-packages/click/parser.py\', \'lib/python3.6/site-packages/click/termui.py\', \'lib/python3.6/site-packages/click/testing.py\', \'lib/python3.6/site-packages/click/types.py\', \'lib/python3.6/site-packages/click/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/click-6.7-py36_0\', type=1))", "defaults::cloudpickle-0.2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'67b1aca61f47d7279e88958ff1cea52b\', name=\'cloudpickle\', platform=\'linux\', subdir=\'linux-64\', version=\'0.2.2\', fn=\'cloudpickle-0.2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cloudpickle-0.2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/cloudpickle-0.2.2-py3.6.egg-info\', \'lib/python3.6/site-packages/cloudpickle/__init__.py\', \'lib/python3.6/site-packages/cloudpickle/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cloudpickle/__pycache__/cloudpickle.cpython-36.pyc\', \'lib/python3.6/site-packages/cloudpickle/cloudpickle.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cloudpickle-0.2.2-py36_0\', type=1))", "defaults::clyent-1.2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'setuptools\'), license=\'BSD\', md5=\'c1a2d756eb9643a87097f111a4214878\', name=\'clyent\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.2\', fn=\'clyent-1.2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/clyent-1.2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/clyent-1.2.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/clyent-1.2.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/clyent-1.2.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/clyent-1.2.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/clyent/__init__.py\', \'lib/python3.6/site-packages/clyent/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/_version.py\', \'lib/python3.6/site-packages/clyent/colors/__init__.py\', \'lib/python3.6/site-packages/clyent/colors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/colors/__pycache__/color.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/colors/__pycache__/color_formatter.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/colors/color.py\', \'lib/python3.6/site-packages/clyent/colors/color_formatter.py\', \'lib/python3.6/site-packages/clyent/errors.py\', \'lib/python3.6/site-packages/clyent/logs/__init__.py\', \'lib/python3.6/site-packages/clyent/logs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/logs/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/logs/colors/__init__.py\', \'lib/python3.6/site-packages/clyent/logs/colors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/logs/colors/__pycache__/printer.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/logs/colors/printer.py\', \'lib/python3.6/site-packages/clyent/logs/handlers.py\', \'lib/python3.6/site-packages/clyent/tests/__init__.py\', \'lib/python3.6/site-packages/clyent/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/tests/__pycache__/test_clyent.cpython-36.pyc\', \'lib/python3.6/site-packages/clyent/tests/test_clyent.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/clyent-1.2.2-py36_0\', type=1))", "defaults::colorama-0.3.7-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'d0dc2948dc81ceb8d24e5ad2ceed5637\', name=\'colorama\', platform=\'linux\', subdir=\'linux-64\', version=\'0.3.7\', fn=\'colorama-0.3.7-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/colorama-0.3.7-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/colorama-0.3.7-py3.6.egg-info\', \'lib/python3.6/site-packages/colorama/__init__.py\', \'lib/python3.6/site-packages/colorama/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/__pycache__/ansi.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/__pycache__/ansitowin32.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/__pycache__/initialise.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/__pycache__/win32.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/__pycache__/winterm.cpython-36.pyc\', \'lib/python3.6/site-packages/colorama/ansi.py\', \'lib/python3.6/site-packages/colorama/ansitowin32.py\', \'lib/python3.6/site-packages/colorama/initialise.py\', \'lib/python3.6/site-packages/colorama/win32.py\', \'lib/python3.6/site-packages/colorama/winterm.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/colorama-0.3.7-py36_0\', type=1))", "defaults::conda-4.3.14-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, date=\'2017-03-03\', depends=(\'conda-env >=2.6\', \'pycosat >=0.6.1\', \'pyopenssl >=16.2\', \'python 3.6*\', \'requests >=2.12.4\', \'ruamel_yaml >=0.11.14\'), license=\'BSD\', md5=\'18611ee5d682b100a589dc31672d87c3\', name=\'conda\', noarch=None, platform=\'linux\', size=507594, subdir=\'linux-64\', version=\'4.3.14\', fn=\'conda-4.3.14-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', priority=1, url=\'https://repo.continuum.io/pkgs/free/linux-64/conda-4.3.14-py36_0.tar.bz2\', auth=None, files=(\'bin/activate\', \'bin/conda\', \'bin/conda-env\', \'bin/deactivate\', \'etc/fish/conf.d/conda.fish\', \'lib/python3.6/site-packages/conda-4.3.14-py3.6.egg-info\', \'lib/python3.6/site-packages/conda/.version\', \'lib/python3.6/site-packages/conda/__init__.py\', \'lib/python3.6/site-packages/conda/__main__.py\', \'lib/python3.6/site-packages/conda/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/egg_info.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/exports.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/fetch.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/instructions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/lock.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/logic.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/plan.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/resolve.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/signature.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/toposort.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/__pycache__/appdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/appdirs.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/collection.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/configuration.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/crypt.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/entity.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/factory.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/ish.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/logz.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/packaging.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/__pycache__/type_coercion.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/__pycache__/five.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/boltons/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/boltons/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/boltons/__pycache__/timeutils.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/boltons/timeutils.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/five.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/_vendor/six.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/collection.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/compat.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/configuration.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/crypt.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/decorators.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/deprecation.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/entity.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/exceptions.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/factory.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/ish.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/logz.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/packaging.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/path.py\', \'lib/python3.6/site-packages/conda/_vendor/auxlib/type_coercion.py\', \'lib/python3.6/site-packages/conda/_vendor/boltons/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/boltons/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/boltons/__pycache__/setutils.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/boltons/setutils.py\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/__pycache__/widgets.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/compat.py\', \'lib/python3.6/site-packages/conda/_vendor/progressbar/widgets.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/dicttoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/functoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/itertoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/recipes.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/toolz/_signatures.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/compatibility.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/dicttoolz.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/functoolz.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/itertoolz.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/recipes.py\', \'lib/python3.6/site-packages/conda/_vendor/toolz/utils.py\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/exceptions.py\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/util/__init__.py\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/util/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/_vendor/urllib3/util/url.py\', \'lib/python3.6/site-packages/conda/api.py\', \'lib/python3.6/site-packages/conda/base/__init__.py\', \'lib/python3.6/site-packages/conda/base/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/base/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/base/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/base/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/base/constants.py\', \'lib/python3.6/site-packages/conda/base/context.py\', \'lib/python3.6/site-packages/conda/base/exceptions.py\', \'lib/python3.6/site-packages/conda/cli/__init__.py\', \'lib/python3.6/site-packages/conda/cli/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/activate.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/conda_argparse.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/find_commands.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_clean.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_config.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_create.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_help.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_info.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_install.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_list.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_package.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_remove.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_search.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/main_update.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/pip_warning.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/__pycache__/python_api.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/cli/activate.py\', \'lib/python3.6/site-packages/conda/cli/common.py\', \'lib/python3.6/site-packages/conda/cli/conda_argparse.py\', \'lib/python3.6/site-packages/conda/cli/find_commands.py\', \'lib/python3.6/site-packages/conda/cli/help.py\', \'lib/python3.6/site-packages/conda/cli/install.py\', \'lib/python3.6/site-packages/conda/cli/main.py\', \'lib/python3.6/site-packages/conda/cli/main_clean.py\', \'lib/python3.6/site-packages/conda/cli/main_config.py\', \'lib/python3.6/site-packages/conda/cli/main_create.py\', \'lib/python3.6/site-packages/conda/cli/main_help.py\', \'lib/python3.6/site-packages/conda/cli/main_info.py\', \'lib/python3.6/site-packages/conda/cli/main_install.py\', \'lib/python3.6/site-packages/conda/cli/main_list.py\', \'lib/python3.6/site-packages/conda/cli/main_package.py\', \'lib/python3.6/site-packages/conda/cli/main_remove.py\', \'lib/python3.6/site-packages/conda/cli/main_search.py\', \'lib/python3.6/site-packages/conda/cli/main_update.py\', \'lib/python3.6/site-packages/conda/cli/pip_warning.py\', \'lib/python3.6/site-packages/conda/cli/python_api.py\', \'lib/python3.6/site-packages/conda/common/__init__.py\', \'lib/python3.6/site-packages/conda/common/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/configuration.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/disk.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/signals.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/__pycache__/yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/common/compat.py\', \'lib/python3.6/site-packages/conda/common/configuration.py\', \'lib/python3.6/site-packages/conda/common/constants.py\', \'lib/python3.6/site-packages/conda/common/disk.py\', \'lib/python3.6/site-packages/conda/common/io.py\', \'lib/python3.6/site-packages/conda/common/path.py\', \'lib/python3.6/site-packages/conda/common/signals.py\', \'lib/python3.6/site-packages/conda/common/url.py\', \'lib/python3.6/site-packages/conda/common/yaml.py\', \'lib/python3.6/site-packages/conda/compat.py\', \'lib/python3.6/site-packages/conda/config.py\', \'lib/python3.6/site-packages/conda/connection.py\', \'lib/python3.6/site-packages/conda/console.py\', \'lib/python3.6/site-packages/conda/core/__init__.py\', \'lib/python3.6/site-packages/conda/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/link.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/linked_data.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/package_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/path_actions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/portability.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/__pycache__/repodata.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/core/index.py\', \'lib/python3.6/site-packages/conda/core/link.py\', \'lib/python3.6/site-packages/conda/core/linked_data.py\', \'lib/python3.6/site-packages/conda/core/package_cache.py\', \'lib/python3.6/site-packages/conda/core/path_actions.py\', \'lib/python3.6/site-packages/conda/core/portability.py\', \'lib/python3.6/site-packages/conda/core/repodata.py\', \'lib/python3.6/site-packages/conda/egg_info.py\', \'lib/python3.6/site-packages/conda/exceptions.py\', \'lib/python3.6/site-packages/conda/exports.py\', \'lib/python3.6/site-packages/conda/fetch.py\', \'lib/python3.6/site-packages/conda/gateways/__init__.py\', \'lib/python3.6/site-packages/conda/gateways/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/__pycache__/anaconda_client.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/__pycache__/download.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/adapters/__init__.py\', \'lib/python3.6/site-packages/conda/gateways/adapters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/adapters/__pycache__/ftp.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/adapters/__pycache__/localfs.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/adapters/__pycache__/s3.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/adapters/ftp.py\', \'lib/python3.6/site-packages/conda/gateways/adapters/localfs.py\', \'lib/python3.6/site-packages/conda/gateways/adapters/s3.py\', \'lib/python3.6/site-packages/conda/gateways/anaconda_client.py\', \'lib/python3.6/site-packages/conda/gateways/disk/__init__.py\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/create.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/delete.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/link.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/permissions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/read.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/__pycache__/update.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/gateways/disk/create.py\', \'lib/python3.6/site-packages/conda/gateways/disk/delete.py\', \'lib/python3.6/site-packages/conda/gateways/disk/link.py\', \'lib/python3.6/site-packages/conda/gateways/disk/permissions.py\', \'lib/python3.6/site-packages/conda/gateways/disk/read.py\', \'lib/python3.6/site-packages/conda/gateways/disk/test.py\', \'lib/python3.6/site-packages/conda/gateways/disk/update.py\', \'lib/python3.6/site-packages/conda/gateways/download.py\', \'lib/python3.6/site-packages/conda/gateways/logging.py\', \'lib/python3.6/site-packages/conda/gateways/subprocess.py\', \'lib/python3.6/site-packages/conda/history.py\', \'lib/python3.6/site-packages/conda/install.py\', \'lib/python3.6/site-packages/conda/instructions.py\', \'lib/python3.6/site-packages/conda/lock.py\', \'lib/python3.6/site-packages/conda/logic.py\', \'lib/python3.6/site-packages/conda/misc.py\', \'lib/python3.6/site-packages/conda/models/__init__.py\', \'lib/python3.6/site-packages/conda/models/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/__pycache__/channel.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/__pycache__/dist.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/__pycache__/index_record.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/__pycache__/package_info.cpython-36.pyc\', \'lib/python3.6/site-packages/conda/models/channel.py\', \'lib/python3.6/site-packages/conda/models/dist.py\', \'lib/python3.6/site-packages/conda/models/enums.py\', \'lib/python3.6/site-packages/conda/models/index_record.py\', \'lib/python3.6/site-packages/conda/models/package_info.py\', \'lib/python3.6/site-packages/conda/plan.py\', \'lib/python3.6/site-packages/conda/resolve.py\', \'lib/python3.6/site-packages/conda/signature.py\', \'lib/python3.6/site-packages/conda/toposort.py\', \'lib/python3.6/site-packages/conda/utils.py\', \'lib/python3.6/site-packages/conda/version.py\', \'lib/python3.6/site-packages/conda_env/__init__.py\', \'lib/python3.6/site-packages/conda_env/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/__pycache__/env.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/__pycache__/pip_util.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/__pycache__/yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__init__.py\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_attach.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_create.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_export.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_list.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_remove.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_update.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/__pycache__/main_upload.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/cli/common.py\', \'lib/python3.6/site-packages/conda_env/cli/main.py\', \'lib/python3.6/site-packages/conda_env/cli/main_attach.py\', \'lib/python3.6/site-packages/conda_env/cli/main_create.py\', \'lib/python3.6/site-packages/conda_env/cli/main_export.py\', \'lib/python3.6/site-packages/conda_env/cli/main_list.py\', \'lib/python3.6/site-packages/conda_env/cli/main_remove.py\', \'lib/python3.6/site-packages/conda_env/cli/main_update.py\', \'lib/python3.6/site-packages/conda_env/cli/main_upload.py\', \'lib/python3.6/site-packages/conda_env/compat.py\', \'lib/python3.6/site-packages/conda_env/env.py\', \'lib/python3.6/site-packages/conda_env/exceptions.py\', \'lib/python3.6/site-packages/conda_env/installers/__init__.py\', \'lib/python3.6/site-packages/conda_env/installers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/installers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/installers/__pycache__/conda.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/installers/__pycache__/pip.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/installers/base.py\', \'lib/python3.6/site-packages/conda_env/installers/conda.py\', \'lib/python3.6/site-packages/conda_env/installers/pip.py\', \'lib/python3.6/site-packages/conda_env/pip_util.py\', \'lib/python3.6/site-packages/conda_env/specs/__init__.py\', \'lib/python3.6/site-packages/conda_env/specs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/specs/__pycache__/binstar.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/specs/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/specs/__pycache__/requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/specs/__pycache__/yaml_file.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/specs/binstar.py\', \'lib/python3.6/site-packages/conda_env/specs/notebook.py\', \'lib/python3.6/site-packages/conda_env/specs/requirements.py\', \'lib/python3.6/site-packages/conda_env/specs/yaml_file.py\', \'lib/python3.6/site-packages/conda_env/utils/__init__.py\', \'lib/python3.6/site-packages/conda_env/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/utils/__pycache__/notebooks.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/utils/__pycache__/uploader.cpython-36.pyc\', \'lib/python3.6/site-packages/conda_env/utils/notebooks.py\', \'lib/python3.6/site-packages/conda_env/utils/uploader.py\', \'lib/python3.6/site-packages/conda_env/yaml.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/conda-4.3.14-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "defaults::conda-env-2.6.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'BSD\', md5=\'2960d60b70d36823df7d9daea41decd0\', name=\'conda-env\', platform=\'linux\', subdir=\'linux-64\', version=\'2.6.0\', fn=\'conda-env-2.6.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/conda-env-2.6.0-0.tar.bz2\', files=(), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/conda-env-2.6.0-0\', type=1))", "defaults::configobj-5.0.6-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'BSD\', md5=\'d8c1ca9236ee601ebb1a13b4c030f0fb\', name=\'configobj\', platform=\'linux\', subdir=\'linux-64\', version=\'5.0.6\', fn=\'configobj-5.0.6-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/configobj-5.0.6-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/configobj.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/validate.cpython-36.pyc\', \'lib/python3.6/site-packages/_version.py\', \'lib/python3.6/site-packages/configobj-5.0.6-py3.6.egg-info\', \'lib/python3.6/site-packages/configobj.py\', \'lib/python3.6/site-packages/validate.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/configobj-5.0.6-py36_0\', type=1))", "defaults::contextlib2-0.5.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'PSF\', md5=\'6ee98bdfbd992a21f8326645a49a5f99\', name=\'contextlib2\', platform=\'linux\', subdir=\'linux-64\', version=\'0.5.4\', fn=\'contextlib2-0.5.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/contextlib2-0.5.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/contextlib2.cpython-36.pyc\', \'lib/python3.6/site-packages/contextlib2-0.5.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/contextlib2-0.5.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/contextlib2-0.5.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/contextlib2-0.5.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/contextlib2.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/contextlib2-0.5.4-py36_0\', type=1))", "defaults::coverage-4.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, date=\'2016-12-23\', depends=(\'python 3.6*\',), license=\'Apache 2.0\', license_family=\'Apache\', md5=\'769e3a0fdabf812aaf97938d7e9b8acf\', name=\'coverage\', noarch=None, platform=\'linux\', size=223492, subdir=\'linux-64\', version=\'4.2\', fn=\'coverage-4.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', priority=1, url=\'https://repo.continuum.io/pkgs/free/linux-64/coverage-4.2-py36_0.tar.bz2\', auth=None, files=(\'bin/coverage\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/coverage-4.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/coverage/__init__.py\', \'lib/python3.6/site-packages/coverage/__main__.py\', \'lib/python3.6/site-packages/coverage/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/annotate.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/backunittest.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/backward.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/bytecode.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/cmdline.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/collector.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/control.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/env.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/execfile.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/files.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/multiproc.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/phystokens.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/pickle2json.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/plugin_support.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/pytracer.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/report.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/results.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/summary.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/templite.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/__pycache__/xmlreport.cpython-36.pyc\', \'lib/python3.6/site-packages/coverage/annotate.py\', \'lib/python3.6/site-packages/coverage/backunittest.py\', \'lib/python3.6/site-packages/coverage/backward.py\', \'lib/python3.6/site-packages/coverage/bytecode.py\', \'lib/python3.6/site-packages/coverage/cmdline.py\', \'lib/python3.6/site-packages/coverage/collector.py\', \'lib/python3.6/site-packages/coverage/config.py\', \'lib/python3.6/site-packages/coverage/control.py\', \'lib/python3.6/site-packages/coverage/data.py\', \'lib/python3.6/site-packages/coverage/debug.py\', \'lib/python3.6/site-packages/coverage/env.py\', \'lib/python3.6/site-packages/coverage/execfile.py\', \'lib/python3.6/site-packages/coverage/files.py\', \'lib/python3.6/site-packages/coverage/html.py\', \'lib/python3.6/site-packages/coverage/htmlfiles/coverage_html.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/index.html\', \'lib/python3.6/site-packages/coverage/htmlfiles/jquery.debounce.min.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/jquery.hotkeys.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/jquery.isonscreen.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/jquery.min.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/jquery.tablesorter.min.js\', \'lib/python3.6/site-packages/coverage/htmlfiles/keybd_closed.png\', \'lib/python3.6/site-packages/coverage/htmlfiles/keybd_open.png\', \'lib/python3.6/site-packages/coverage/htmlfiles/pyfile.html\', \'lib/python3.6/site-packages/coverage/htmlfiles/style.css\', \'lib/python3.6/site-packages/coverage/misc.py\', \'lib/python3.6/site-packages/coverage/multiproc.py\', \'lib/python3.6/site-packages/coverage/parser.py\', \'lib/python3.6/site-packages/coverage/phystokens.py\', \'lib/python3.6/site-packages/coverage/pickle2json.py\', \'lib/python3.6/site-packages/coverage/plugin.py\', \'lib/python3.6/site-packages/coverage/plugin_support.py\', \'lib/python3.6/site-packages/coverage/python.py\', \'lib/python3.6/site-packages/coverage/pytracer.py\', \'lib/python3.6/site-packages/coverage/report.py\', \'lib/python3.6/site-packages/coverage/results.py\', \'lib/python3.6/site-packages/coverage/summary.py\', \'lib/python3.6/site-packages/coverage/templite.py\', \'lib/python3.6/site-packages/coverage/tracer.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/coverage/version.py\', \'lib/python3.6/site-packages/coverage/xmlreport.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/coverage-4.2-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "defaults::cryptography-1.7.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'cffi >=1.4.1\', \'idna >=2.0\', \'openssl 1.0.2*\', \'pyasn1 >=0.1.8\', \'python 3.6*\', \'setuptools\', \'six >=1.4.1\'), license=\'Apache\', md5=\'4159cc727d0d862bd67ee8d1664b7b13\', name=\'cryptography\', platform=\'linux\', subdir=\'linux-64\', version=\'1.7.1\', fn=\'cryptography-1.7.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cryptography-1.7.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/cryptography-1.7.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/cryptography/__about__.py\', \'lib/python3.6/site-packages/cryptography/__init__.py\', \'lib/python3.6/site-packages/cryptography/__pycache__/__about__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/__pycache__/fernet.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/exceptions.py\', \'lib/python3.6/site-packages/cryptography/fernet.py\', \'lib/python3.6/site-packages/cryptography/hazmat/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/__pycache__/interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/__pycache__/multibackend.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__pycache__/backend.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__pycache__/ciphers.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__pycache__/hashes.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/__pycache__/hmac.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/backend.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/ciphers.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/hashes.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/commoncrypto/hmac.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/interfaces.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/multibackend.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/backend.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/ciphers.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/cmac.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/decode_asn1.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/dh.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/dsa.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/ec.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/encode_asn1.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/hashes.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/hmac.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/rsa.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/__pycache__/x509.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/backend.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/ciphers.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/cmac.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/decode_asn1.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/dh.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/dsa.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/ec.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/encode_asn1.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/hashes.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/hmac.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/rsa.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/utils.py\', \'lib/python3.6/site-packages/cryptography/hazmat/backends/openssl/x509.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/_constant_time.abi3.so\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/_padding.abi3.so\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/commoncrypto/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/commoncrypto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/commoncrypto/__pycache__/binding.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/commoncrypto/binding.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/_conditional.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/__pycache__/binding.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py\', \'lib/python3.6/site-packages/cryptography/hazmat/bindings/openssl/binding.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/cmac.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/constant_time.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/hashes.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/hmac.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/keywrap.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/padding.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/__pycache__/serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dh.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/dsa.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/ec.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/padding.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/rsa.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/algorithms.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/__pycache__/modes.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/base.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/ciphers/modes.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/cmac.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/constant_time.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/hashes.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/hmac.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/interfaces/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/interfaces/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/concatkdf.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/hkdf.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/kbkdf.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/pbkdf2.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/scrypt.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/__pycache__/x963kdf.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/keywrap.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/padding.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/serialization.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/hotp.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/totp.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/totp.py\', \'lib/python3.6/site-packages/cryptography/hazmat/primitives/twofactor/utils.py\', \'lib/python3.6/site-packages/cryptography/utils.py\', \'lib/python3.6/site-packages/cryptography/x509/__init__.py\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/extensions.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/general_name.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/name.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/__pycache__/oid.cpython-36.pyc\', \'lib/python3.6/site-packages/cryptography/x509/base.py\', \'lib/python3.6/site-packages/cryptography/x509/extensions.py\', \'lib/python3.6/site-packages/cryptography/x509/general_name.py\', \'lib/python3.6/site-packages/cryptography/x509/name.py\', \'lib/python3.6/site-packages/cryptography/x509/oid.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cryptography-1.7.1-py36_0\', type=1))", "defaults::curl-7.52.1-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'openssl 1.0.2*\', \'zlib 1.2.*\'), license=\'MIT/X derivate\', license_family=\'MIT\', md5=\'c33cc04cd7aaf7a7485a58986339fec0\', name=\'curl\', platform=\'linux\', subdir=\'linux-64\', version=\'7.52.1\', fn=\'curl-7.52.1-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/curl-7.52.1-0.tar.bz2\', files=(\'bin/curl\', \'bin/curl-config\', \'include/curl/curl.h\', \'include/curl/curlbuild.h\', \'include/curl/curlrules.h\', \'include/curl/curlver.h\', \'include/curl/easy.h\', \'include/curl/mprintf.h\', \'include/curl/multi.h\', \'include/curl/stdcheaders.h\', \'include/curl/typecheck-gcc.h\', \'lib/libcurl.a\', \'lib/libcurl.la\', \'lib/libcurl.so\', \'lib/libcurl.so.4\', \'lib/libcurl.so.4.4.0\', \'lib/pkgconfig/libcurl.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/curl-7.52.1-0\', type=1))", "defaults::cycler-0.10.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'BSD\', md5=\'b8636ee4f85a371b4485aa02306e502d\', name=\'cycler\', platform=\'linux\', subdir=\'linux-64\', version=\'0.10.0\', fn=\'cycler-0.10.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cycler-0.10.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/cycler.cpython-36.pyc\', \'lib/python3.6/site-packages/cycler-0.10.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/cycler-0.10.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/cycler-0.10.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/cycler-0.10.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/cycler-0.10.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/cycler.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cycler-0.10.0-py36_0\', type=1))", "defaults::cython-0.25.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'Apache version 2.0\', license_family=\'Apache\', md5=\'545c59b36030002bbdf7404b3658ed7e\', name=\'cython\', platform=\'linux\', subdir=\'linux-64\', version=\'0.25.2\', fn=\'cython-0.25.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cython-0.25.2-py36_0.tar.bz2\', files=(\'bin/cygdb\', \'bin/cython\', \'bin/cythonize\', \'lib/python3.6/site-packages/Cython-0.25.2-py3.6.egg-info\', \'lib/python3.6/site-packages/Cython/Build/BuildExecutable.py\', \'lib/python3.6/site-packages/Cython/Build/Cythonize.py\', \'lib/python3.6/site-packages/Cython/Build/Dependencies.py\', \'lib/python3.6/site-packages/Cython/Build/Distutils.py\', \'lib/python3.6/site-packages/Cython/Build/Inline.py\', \'lib/python3.6/site-packages/Cython/Build/IpythonMagic.py\', \'lib/python3.6/site-packages/Cython/Build/Tests/TestInline.py\', \'lib/python3.6/site-packages/Cython/Build/Tests/TestIpythonMagic.py\', \'lib/python3.6/site-packages/Cython/Build/Tests/TestStripLiterals.py\', \'lib/python3.6/site-packages/Cython/Build/Tests/__init__.py\', \'lib/python3.6/site-packages/Cython/Build/Tests/__pycache__/TestInline.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/Tests/__pycache__/TestIpythonMagic.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/Tests/__pycache__/TestStripLiterals.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/Tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__init__.py\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/BuildExecutable.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/Cythonize.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/Dependencies.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/Distutils.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/Inline.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/IpythonMagic.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Build/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/CodeWriter.py\', \'lib/python3.6/site-packages/Cython/Compiler/AnalysedTreeTransforms.py\', \'lib/python3.6/site-packages/Cython/Compiler/Annotate.py\', \'lib/python3.6/site-packages/Cython/Compiler/AutoDocTransforms.py\', \'lib/python3.6/site-packages/Cython/Compiler/Buffer.py\', \'lib/python3.6/site-packages/Cython/Compiler/Builtin.py\', \'lib/python3.6/site-packages/Cython/Compiler/CmdLine.py\', \'lib/python3.6/site-packages/Cython/Compiler/Code.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/Code.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/Code.py\', \'lib/python3.6/site-packages/Cython/Compiler/CodeGeneration.py\', \'lib/python3.6/site-packages/Cython/Compiler/CythonScope.py\', \'lib/python3.6/site-packages/Cython/Compiler/DebugFlags.py\', \'lib/python3.6/site-packages/Cython/Compiler/Errors.py\', \'lib/python3.6/site-packages/Cython/Compiler/ExprNodes.py\', \'lib/python3.6/site-packages/Cython/Compiler/FlowControl.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/FlowControl.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/FlowControl.py\', \'lib/python3.6/site-packages/Cython/Compiler/FusedNode.py\', \'lib/python3.6/site-packages/Cython/Compiler/Future.py\', \'lib/python3.6/site-packages/Cython/Compiler/Interpreter.py\', \'lib/python3.6/site-packages/Cython/Compiler/Lexicon.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/Lexicon.py\', \'lib/python3.6/site-packages/Cython/Compiler/Main.py\', \'lib/python3.6/site-packages/Cython/Compiler/MemoryView.py\', \'lib/python3.6/site-packages/Cython/Compiler/ModuleNode.py\', \'lib/python3.6/site-packages/Cython/Compiler/Naming.py\', \'lib/python3.6/site-packages/Cython/Compiler/Nodes.py\', \'lib/python3.6/site-packages/Cython/Compiler/Optimize.py\', \'lib/python3.6/site-packages/Cython/Compiler/Options.py\', \'lib/python3.6/site-packages/Cython/Compiler/ParseTreeTransforms.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/ParseTreeTransforms.py\', \'lib/python3.6/site-packages/Cython/Compiler/Parsing.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/Parsing.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/Parsing.py\', \'lib/python3.6/site-packages/Cython/Compiler/Pipeline.py\', \'lib/python3.6/site-packages/Cython/Compiler/PyrexTypes.py\', \'lib/python3.6/site-packages/Cython/Compiler/Scanning.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/Scanning.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/Scanning.py\', \'lib/python3.6/site-packages/Cython/Compiler/StringEncoding.py\', \'lib/python3.6/site-packages/Cython/Compiler/Symtab.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestBuffer.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestCmdLine.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestFlowControl.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestGrammar.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestMemView.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestParseTreeTransforms.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestSignatureMatching.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestTreeFragment.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestTreePath.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestUtilityLoad.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/TestVisitor.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__init__.py\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestBuffer.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestCmdLine.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestFlowControl.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestGrammar.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestMemView.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestParseTreeTransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestSignatureMatching.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestTreeFragment.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestTreePath.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestUtilityLoad.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/TestVisitor.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/Tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/TreeFragment.py\', \'lib/python3.6/site-packages/Cython/Compiler/TreePath.py\', \'lib/python3.6/site-packages/Cython/Compiler/TypeInference.py\', \'lib/python3.6/site-packages/Cython/Compiler/TypeSlots.py\', \'lib/python3.6/site-packages/Cython/Compiler/UtilNodes.py\', \'lib/python3.6/site-packages/Cython/Compiler/UtilityCode.py\', \'lib/python3.6/site-packages/Cython/Compiler/Version.py\', \'lib/python3.6/site-packages/Cython/Compiler/Visitor.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Compiler/Visitor.pxd\', \'lib/python3.6/site-packages/Cython/Compiler/Visitor.py\', \'lib/python3.6/site-packages/Cython/Compiler/__init__.py\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/AnalysedTreeTransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Annotate.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/AutoDocTransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Buffer.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Builtin.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/CmdLine.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Code.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/CodeGeneration.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/CythonScope.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/DebugFlags.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Errors.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/ExprNodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/FlowControl.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/FusedNode.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Future.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Interpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Lexicon.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Main.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/MemoryView.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/ModuleNode.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Naming.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Options.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/ParseTreeTransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Parsing.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Pipeline.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/PyrexTypes.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Scanning.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/StringEncoding.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Symtab.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/TreeFragment.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/TreePath.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/TypeInference.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/TypeSlots.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/UtilNodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/UtilityCode.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Version.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/Visitor.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Compiler/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Coverage.py\', \'lib/python3.6/site-packages/Cython/Debugger/Cygdb.py\', \'lib/python3.6/site-packages/Cython/Debugger/DebugWriter.py\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/TestLibCython.py\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/__init__.py\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/__pycache__/TestLibCython.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/__pycache__/test_libcython_in_gdb.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/__pycache__/test_libpython_in_gdb.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/cfuncs.c\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/codefile\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/test_libcython_in_gdb.py\', \'lib/python3.6/site-packages/Cython/Debugger/Tests/test_libpython_in_gdb.py\', \'lib/python3.6/site-packages/Cython/Debugger/__init__.py\', \'lib/python3.6/site-packages/Cython/Debugger/__pycache__/Cygdb.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/__pycache__/DebugWriter.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/__pycache__/libcython.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/__pycache__/libpython.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Debugger/libcython.py\', \'lib/python3.6/site-packages/Cython/Debugger/libpython.py\', \'lib/python3.6/site-packages/Cython/Debugging.py\', \'lib/python3.6/site-packages/Cython/Distutils/__init__.py\', \'lib/python3.6/site-packages/Cython/Distutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Distutils/__pycache__/build_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Distutils/__pycache__/extension.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Distutils/__pycache__/old_build_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Distutils/build_ext.py\', \'lib/python3.6/site-packages/Cython/Distutils/extension.py\', \'lib/python3.6/site-packages/Cython/Distutils/old_build_ext.py\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python2.5.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_bool.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_buffer.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_bytes.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_cobject.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_complex.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_dict.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_exc.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_float.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_function.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_getargs.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_instance.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_int.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_iterator.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_list.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_long.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_mapping.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_mem.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_method.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_module.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_number.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_object.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_oldbuffer.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_pycapsule.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_ref.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_sequence.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_set.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_string.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_tuple.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_type.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_unicode.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_version.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/python_weakref.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/stdio.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/stdlib.pxd\', \'lib/python3.6/site-packages/Cython/Includes/Deprecated/stl.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/__init__.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/array.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/bool.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/buffer.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/bytes.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/cobject.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/complex.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/datetime.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/dict.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/exc.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/float.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/function.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/getargs.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/instance.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/int.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/iterator.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/list.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/long.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/longintrepr.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/mapping.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/mem.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/method.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/module.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/number.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/object.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/oldbuffer.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/pycapsule.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/pystate.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/pythread.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/ref.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/sequence.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/set.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/slice.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/string.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/tuple.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/type.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/unicode.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/version.pxd\', \'lib/python3.6/site-packages/Cython/Includes/cpython/weakref.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/__init__.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/errno.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/float.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/limits.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/locale.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/math.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/setjmp.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/signal.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/stddef.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/stdint.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/stdio.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/stdlib.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/string.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libc/time.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/__init__.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/algorithm.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/cast.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/complex.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/deque.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/iterator.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/limits.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/list.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/map.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/memory.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/pair.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/queue.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/set.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/stack.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/string.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/typeindex.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/typeinfo.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/unordered_map.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/unordered_set.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/utility.pxd\', \'lib/python3.6/site-packages/Cython/Includes/libcpp/vector.pxd\', \'lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd\', \'lib/python3.6/site-packages/Cython/Includes/numpy/math.pxd\', \'lib/python3.6/site-packages/Cython/Includes/openmp.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/__init__.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/dlfcn.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/fcntl.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/ioctl.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/mman.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/resource.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/select.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/signal.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/stat.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/stdio.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/stdlib.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/strings.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/time.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/types.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/unistd.pxd\', \'lib/python3.6/site-packages/Cython/Includes/posix/wait.pxd\', \'lib/python3.6/site-packages/Cython/Plex/Actions.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Plex/Actions.pxd\', \'lib/python3.6/site-packages/Cython/Plex/Actions.py\', \'lib/python3.6/site-packages/Cython/Plex/DFA.py\', \'lib/python3.6/site-packages/Cython/Plex/Errors.py\', \'lib/python3.6/site-packages/Cython/Plex/Lexicons.py\', \'lib/python3.6/site-packages/Cython/Plex/Machines.py\', \'lib/python3.6/site-packages/Cython/Plex/Regexps.py\', \'lib/python3.6/site-packages/Cython/Plex/Scanners.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Plex/Scanners.pxd\', \'lib/python3.6/site-packages/Cython/Plex/Scanners.py\', \'lib/python3.6/site-packages/Cython/Plex/Timing.py\', \'lib/python3.6/site-packages/Cython/Plex/Traditional.py\', \'lib/python3.6/site-packages/Cython/Plex/Transitions.py\', \'lib/python3.6/site-packages/Cython/Plex/__init__.py\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Actions.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/DFA.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Errors.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Lexicons.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Machines.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Regexps.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Scanners.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Timing.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Traditional.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/Transitions.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Plex/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Runtime/__init__.py\', \'lib/python3.6/site-packages/Cython/Runtime/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Runtime/refnanny.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Runtime/refnanny.pyx\', \'lib/python3.6/site-packages/Cython/Shadow.py\', \'lib/python3.6/site-packages/Cython/StringIOTree.py\', \'lib/python3.6/site-packages/Cython/Tempita/__init__.py\', \'lib/python3.6/site-packages/Cython/Tempita/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tempita/__pycache__/_looper.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tempita/__pycache__/_tempita.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tempita/__pycache__/compat3.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tempita/_looper.py\', \'lib/python3.6/site-packages/Cython/Tempita/_tempita.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Cython/Tempita/_tempita.py\', \'lib/python3.6/site-packages/Cython/Tempita/compat3.py\', \'lib/python3.6/site-packages/Cython/TestUtils.py\', \'lib/python3.6/site-packages/Cython/Tests/TestCodeWriter.py\', \'lib/python3.6/site-packages/Cython/Tests/TestJediTyper.py\', \'lib/python3.6/site-packages/Cython/Tests/TestStringIOTree.py\', \'lib/python3.6/site-packages/Cython/Tests/__init__.py\', \'lib/python3.6/site-packages/Cython/Tests/__pycache__/TestCodeWriter.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tests/__pycache__/TestJediTyper.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tests/__pycache__/TestStringIOTree.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tests/__pycache__/xmlrunner.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Tests/xmlrunner.py\', \'lib/python3.6/site-packages/Cython/Utility/Buffer.c\', \'lib/python3.6/site-packages/Cython/Utility/Builtins.c\', \'lib/python3.6/site-packages/Cython/Utility/CConvert.pyx\', \'lib/python3.6/site-packages/Cython/Utility/CMath.c\', \'lib/python3.6/site-packages/Cython/Utility/Capsule.c\', \'lib/python3.6/site-packages/Cython/Utility/CommonTypes.c\', \'lib/python3.6/site-packages/Cython/Utility/Complex.c\', \'lib/python3.6/site-packages/Cython/Utility/Coroutine.c\', \'lib/python3.6/site-packages/Cython/Utility/CpdefEnums.pyx\', \'lib/python3.6/site-packages/Cython/Utility/CppConvert.pyx\', \'lib/python3.6/site-packages/Cython/Utility/CppSupport.cpp\', \'lib/python3.6/site-packages/Cython/Utility/CythonFunction.c\', \'lib/python3.6/site-packages/Cython/Utility/Embed.c\', \'lib/python3.6/site-packages/Cython/Utility/Exceptions.c\', \'lib/python3.6/site-packages/Cython/Utility/ExtensionTypes.c\', \'lib/python3.6/site-packages/Cython/Utility/FunctionArguments.c\', \'lib/python3.6/site-packages/Cython/Utility/ImportExport.c\', \'lib/python3.6/site-packages/Cython/Utility/MemoryView.pyx\', \'lib/python3.6/site-packages/Cython/Utility/MemoryView_C.c\', \'lib/python3.6/site-packages/Cython/Utility/ModuleSetupCode.c\', \'lib/python3.6/site-packages/Cython/Utility/ObjectHandling.c\', \'lib/python3.6/site-packages/Cython/Utility/Optimize.c\', \'lib/python3.6/site-packages/Cython/Utility/Overflow.c\', \'lib/python3.6/site-packages/Cython/Utility/Printing.c\', \'lib/python3.6/site-packages/Cython/Utility/Profile.c\', \'lib/python3.6/site-packages/Cython/Utility/StringTools.c\', \'lib/python3.6/site-packages/Cython/Utility/TestCyUtilityLoader.pyx\', \'lib/python3.6/site-packages/Cython/Utility/TestCythonScope.pyx\', \'lib/python3.6/site-packages/Cython/Utility/TestUtilityLoader.c\', \'lib/python3.6/site-packages/Cython/Utility/TypeConversion.c\', \'lib/python3.6/site-packages/Cython/Utility/__init__.py\', \'lib/python3.6/site-packages/Cython/Utility/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/Utility/arrayarray.h\', \'lib/python3.6/site-packages/Cython/Utils.py\', \'lib/python3.6/site-packages/Cython/__init__.py\', \'lib/python3.6/site-packages/Cython/__pycache__/CodeWriter.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/Coverage.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/Debugging.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/Shadow.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/StringIOTree.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/TestUtils.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/Utils.cpython-36.pyc\', \'lib/python3.6/site-packages/Cython/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/cython.cpython-36.pyc\', \'lib/python3.6/site-packages/cython.py\', \'lib/python3.6/site-packages/pyximport/__init__.py\', \'lib/python3.6/site-packages/pyximport/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyximport/__pycache__/pyxbuild.cpython-36.pyc\', \'lib/python3.6/site-packages/pyximport/__pycache__/pyximport.cpython-36.pyc\', \'lib/python3.6/site-packages/pyximport/pyxbuild.py\', \'lib/python3.6/site-packages/pyximport/pyximport.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cython-0.25.2-py36_0\', type=1))", "defaults::cytoolz-0.8.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'toolz >=0.8.0\'), license=\'BSD\', md5=\'857a2eef4ab39d987e493f5edf2e2163\', name=\'cytoolz\', platform=\'linux\', subdir=\'linux-64\', version=\'0.8.2\', fn=\'cytoolz-0.8.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/cytoolz-0.8.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/cytoolz-0.8.2-py3.6.egg-info\', \'lib/python3.6/site-packages/cytoolz/__init__.pxd\', \'lib/python3.6/site-packages/cytoolz/__init__.py\', \'lib/python3.6/site-packages/cytoolz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/__pycache__/_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/__pycache__/utils_test.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/_signatures.py\', \'lib/python3.6/site-packages/cytoolz/_version.py\', \'lib/python3.6/site-packages/cytoolz/compatibility.py\', \'lib/python3.6/site-packages/cytoolz/cpython.pxd\', \'lib/python3.6/site-packages/cytoolz/curried/__init__.py\', \'lib/python3.6/site-packages/cytoolz/curried/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/curried/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/curried/__pycache__/operator.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/curried/exceptions.py\', \'lib/python3.6/site-packages/cytoolz/curried/operator.py\', \'lib/python3.6/site-packages/cytoolz/dicttoolz.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/cytoolz/dicttoolz.pxd\', \'lib/python3.6/site-packages/cytoolz/dicttoolz.pyx\', \'lib/python3.6/site-packages/cytoolz/functoolz.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/cytoolz/functoolz.pxd\', \'lib/python3.6/site-packages/cytoolz/functoolz.pyx\', \'lib/python3.6/site-packages/cytoolz/itertoolz.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/cytoolz/itertoolz.pxd\', \'lib/python3.6/site-packages/cytoolz/itertoolz.pyx\', \'lib/python3.6/site-packages/cytoolz/recipes.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/cytoolz/recipes.pxd\', \'lib/python3.6/site-packages/cytoolz/recipes.pyx\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/dev_skip_test.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_curried.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_curried_toolzlike.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_dev_skip_test.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_dicttoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_docstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_doctests.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_embedded_sigs.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_functoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_inspect_args.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_itertoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_none_safe.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_recipes.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_tlz.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/cytoolz/tests/dev_skip_test.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_compatibility.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_curried.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_curried_toolzlike.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_dev_skip_test.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_dicttoolz.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_docstrings.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_doctests.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_embedded_sigs.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_functoolz.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_inspect_args.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_itertoolz.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_none_safe.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_recipes.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_serialization.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_signatures.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_tlz.py\', \'lib/python3.6/site-packages/cytoolz/tests/test_utils.py\', \'lib/python3.6/site-packages/cytoolz/utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/cytoolz/utils.pxd\', \'lib/python3.6/site-packages/cytoolz/utils.pyx\', \'lib/python3.6/site-packages/cytoolz/utils_test.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/cytoolz-0.8.2-py36_0\', type=1))", "defaults::dask-0.13.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'bokeh\', \'chest\', \'cloudpickle >=0.2.1\', \'numpy\', \'pandas >=0.18.0\', \'partd >=0.3.6\', \'python 3.6*\', \'toolz >=0.7.2\'), license=\'BSD\', md5=\'2c3b61bc6795bc8efc0bcc940d878f93\', name=\'dask\', platform=\'linux\', subdir=\'linux-64\', version=\'0.13.0\', fn=\'dask-0.13.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/dask-0.13.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/dask-0.13.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/dask/__init__.py\', \'lib/python3.6/site-packages/dask/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/async.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/callbacks.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/delayed.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/distributed.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/dot.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/multiprocessing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/order.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/threaded.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/__pycache__/utils_test.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/_version.py\', \'lib/python3.6/site-packages/dask/array/__init__.py\', \'lib/python3.6/site-packages/dask/array/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/chunk.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/creation.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/fft.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/ghost.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/learn.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/numpy_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/optimization.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/percentile.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/random.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/rechunk.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/reductions.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/ufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/__pycache__/wrap.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/chunk.py\', \'lib/python3.6/site-packages/dask/array/conftest.py\', \'lib/python3.6/site-packages/dask/array/core.py\', \'lib/python3.6/site-packages/dask/array/creation.py\', \'lib/python3.6/site-packages/dask/array/fft.py\', \'lib/python3.6/site-packages/dask/array/ghost.py\', \'lib/python3.6/site-packages/dask/array/image.py\', \'lib/python3.6/site-packages/dask/array/learn.py\', \'lib/python3.6/site-packages/dask/array/linalg.py\', \'lib/python3.6/site-packages/dask/array/numpy_compat.py\', \'lib/python3.6/site-packages/dask/array/optimization.py\', \'lib/python3.6/site-packages/dask/array/percentile.py\', \'lib/python3.6/site-packages/dask/array/random.py\', \'lib/python3.6/site-packages/dask/array/rechunk.py\', \'lib/python3.6/site-packages/dask/array/reductions.py\', \'lib/python3.6/site-packages/dask/array/slicing.py\', \'lib/python3.6/site-packages/dask/array/tests/__init__.py\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_array_core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_chunk.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_creation.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_fft.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_ghost.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_image.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_learn.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_linearoperator.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_optimization.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_percentiles.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_random.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_rechunk.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_reductions.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_ufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/__pycache__/test_wrap.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/array/tests/test_array_core.py\', \'lib/python3.6/site-packages/dask/array/tests/test_chunk.py\', \'lib/python3.6/site-packages/dask/array/tests/test_creation.py\', \'lib/python3.6/site-packages/dask/array/tests/test_fft.py\', \'lib/python3.6/site-packages/dask/array/tests/test_ghost.py\', \'lib/python3.6/site-packages/dask/array/tests/test_image.py\', \'lib/python3.6/site-packages/dask/array/tests/test_learn.py\', \'lib/python3.6/site-packages/dask/array/tests/test_linalg.py\', \'lib/python3.6/site-packages/dask/array/tests/test_linearoperator.py\', \'lib/python3.6/site-packages/dask/array/tests/test_optimization.py\', \'lib/python3.6/site-packages/dask/array/tests/test_percentiles.py\', \'lib/python3.6/site-packages/dask/array/tests/test_random.py\', \'lib/python3.6/site-packages/dask/array/tests/test_rechunk.py\', \'lib/python3.6/site-packages/dask/array/tests/test_reductions.py\', \'lib/python3.6/site-packages/dask/array/tests/test_slicing.py\', \'lib/python3.6/site-packages/dask/array/tests/test_ufunc.py\', \'lib/python3.6/site-packages/dask/array/tests/test_wrap.py\', \'lib/python3.6/site-packages/dask/array/ufunc.py\', \'lib/python3.6/site-packages/dask/array/utils.py\', \'lib/python3.6/site-packages/dask/array/wrap.py\', \'lib/python3.6/site-packages/dask/async.py\', \'lib/python3.6/site-packages/dask/bag/__init__.py\', \'lib/python3.6/site-packages/dask/bag/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/core.py\', \'lib/python3.6/site-packages/dask/bag/tests/__init__.py\', \'lib/python3.6/site-packages/dask/bag/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/tests/__pycache__/test_bag.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/tests/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bag/tests/test_bag.py\', \'lib/python3.6/site-packages/dask/bag/tests/test_text.py\', \'lib/python3.6/site-packages/dask/bag/text.py\', \'lib/python3.6/site-packages/dask/base.py\', \'lib/python3.6/site-packages/dask/bytes/__init__.py\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/compression.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/local.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/s3.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/compression.py\', \'lib/python3.6/site-packages/dask/bytes/core.py\', \'lib/python3.6/site-packages/dask/bytes/local.py\', \'lib/python3.6/site-packages/dask/bytes/s3.py\', \'lib/python3.6/site-packages/dask/bytes/tests/__init__.py\', \'lib/python3.6/site-packages/dask/bytes/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/tests/__pycache__/test_bytes_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/tests/__pycache__/test_compression.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/tests/__pycache__/test_local.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/tests/__pycache__/test_s3.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/bytes/tests/test_bytes_utils.py\', \'lib/python3.6/site-packages/dask/bytes/tests/test_compression.py\', \'lib/python3.6/site-packages/dask/bytes/tests/test_local.py\', \'lib/python3.6/site-packages/dask/bytes/tests/test_s3.py\', \'lib/python3.6/site-packages/dask/bytes/utils.py\', \'lib/python3.6/site-packages/dask/cache.py\', \'lib/python3.6/site-packages/dask/callbacks.py\', \'lib/python3.6/site-packages/dask/compatibility.py\', \'lib/python3.6/site-packages/dask/context.py\', \'lib/python3.6/site-packages/dask/core.py\', \'lib/python3.6/site-packages/dask/dataframe/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/accessor.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/hyperloglog.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/methods.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/multi.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/partitionquantiles.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/reshape.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/rolling.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/shuffle.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/accessor.py\', \'lib/python3.6/site-packages/dask/dataframe/categorical.py\', \'lib/python3.6/site-packages/dask/dataframe/core.py\', \'lib/python3.6/site-packages/dask/dataframe/groupby.py\', \'lib/python3.6/site-packages/dask/dataframe/hashing.py\', \'lib/python3.6/site-packages/dask/dataframe/hyperloglog.py\', \'lib/python3.6/site-packages/dask/dataframe/indexing.py\', \'lib/python3.6/site-packages/dask/dataframe/io/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/csv.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/demo.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/hdf.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/__pycache__/parquet.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/csv.py\', \'lib/python3.6/site-packages/dask/dataframe/io/demo.py\', \'lib/python3.6/site-packages/dask/dataframe/io/hdf.py\', \'lib/python3.6/site-packages/dask/dataframe/io/io.py\', \'lib/python3.6/site-packages/dask/dataframe/io/parquet.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/test_csv.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/test_demo.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/test_hdf.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/__pycache__/test_parquet.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/test_csv.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/test_demo.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/test_hdf.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/test_io.py\', \'lib/python3.6/site-packages/dask/dataframe/io/tests/test_parquet.py\', \'lib/python3.6/site-packages/dask/dataframe/methods.py\', \'lib/python3.6/site-packages/dask/dataframe/multi.py\', \'lib/python3.6/site-packages/dask/dataframe/optimize.py\', \'lib/python3.6/site-packages/dask/dataframe/partitionquantiles.py\', \'lib/python3.6/site-packages/dask/dataframe/reshape.py\', \'lib/python3.6/site-packages/dask/dataframe/rolling.py\', \'lib/python3.6/site-packages/dask/dataframe/shuffle.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_arithmetics_reduction.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_hyperloglog.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_multi.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_optimize_dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_reshape.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_rolling.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_shuffle.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_ufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/__pycache__/test_utils_dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_arithmetics_reduction.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_categorical.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_dataframe.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_groupby.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_hashing.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_hyperloglog.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_indexing.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_multi.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_optimize_dataframe.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_reshape.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_rolling.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_shuffle.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_ufunc.py\', \'lib/python3.6/site-packages/dask/dataframe/tests/test_utils_dataframe.py\', \'lib/python3.6/site-packages/dask/dataframe/tseries/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/tseries/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tseries/__pycache__/resample.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tseries/resample.py\', \'lib/python3.6/site-packages/dask/dataframe/tseries/tests/__init__.py\', \'lib/python3.6/site-packages/dask/dataframe/tseries/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tseries/tests/__pycache__/test_resample.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/dataframe/tseries/tests/test_resample.py\', \'lib/python3.6/site-packages/dask/dataframe/utils.py\', \'lib/python3.6/site-packages/dask/delayed.py\', \'lib/python3.6/site-packages/dask/diagnostics/__init__.py\', \'lib/python3.6/site-packages/dask/diagnostics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/__pycache__/profile.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/__pycache__/profile_visualize.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/__pycache__/progress.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/profile.py\', \'lib/python3.6/site-packages/dask/diagnostics/profile_visualize.py\', \'lib/python3.6/site-packages/dask/diagnostics/progress.py\', \'lib/python3.6/site-packages/dask/diagnostics/tests/__init__.py\', \'lib/python3.6/site-packages/dask/diagnostics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/tests/__pycache__/test_profiler.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/tests/__pycache__/test_progress.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/diagnostics/tests/test_profiler.py\', \'lib/python3.6/site-packages/dask/diagnostics/tests/test_progress.py\', \'lib/python3.6/site-packages/dask/distributed.py\', \'lib/python3.6/site-packages/dask/dot.py\', \'lib/python3.6/site-packages/dask/multiprocessing.py\', \'lib/python3.6/site-packages/dask/optimize.py\', \'lib/python3.6/site-packages/dask/order.py\', \'lib/python3.6/site-packages/dask/rewrite.py\', \'lib/python3.6/site-packages/dask/store/__init__.py\', \'lib/python3.6/site-packages/dask/store/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/store/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/store/core.py\', \'lib/python3.6/site-packages/dask/store/tests/__init__.py\', \'lib/python3.6/site-packages/dask/store/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/store/tests/__pycache__/test_store.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/store/tests/test_store.py\', \'lib/python3.6/site-packages/dask/tests/__init__.py\', \'lib/python3.6/site-packages/dask/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_async.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_callbacks.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_context.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_delayed.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_distributed.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_dot.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_multiprocessing.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_order.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_threaded.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/dask/tests/test_async.py\', \'lib/python3.6/site-packages/dask/tests/test_base.py\', \'lib/python3.6/site-packages/dask/tests/test_cache.py\', \'lib/python3.6/site-packages/dask/tests/test_callbacks.py\', \'lib/python3.6/site-packages/dask/tests/test_context.py\', \'lib/python3.6/site-packages/dask/tests/test_core.py\', \'lib/python3.6/site-packages/dask/tests/test_delayed.py\', \'lib/python3.6/site-packages/dask/tests/test_distributed.py\', \'lib/python3.6/site-packages/dask/tests/test_dot.py\', \'lib/python3.6/site-packages/dask/tests/test_multiprocessing.py\', \'lib/python3.6/site-packages/dask/tests/test_optimize.py\', \'lib/python3.6/site-packages/dask/tests/test_order.py\', \'lib/python3.6/site-packages/dask/tests/test_rewrite.py\', \'lib/python3.6/site-packages/dask/tests/test_threaded.py\', \'lib/python3.6/site-packages/dask/tests/test_utils.py\', \'lib/python3.6/site-packages/dask/threaded.py\', \'lib/python3.6/site-packages/dask/utils.py\', \'lib/python3.6/site-packages/dask/utils_test.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/dask-0.13.0-py36_0\', type=1))", "defaults::datashape-0.5.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'multipledispatch >=0.4.7\', \'numpy >=1.7\', \'python 3.6*\', \'python-dateutil\'), license=\'BSD\', md5=\'a1845a5f5dd9dff3d7edf2ec1facd06f\', name=\'datashape\', platform=\'linux\', subdir=\'linux-64\', version=\'0.5.4\', fn=\'datashape-0.5.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/datashape-0.5.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/datashape-0.5.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/datashape/__init__.py\', \'lib/python3.6/site-packages/datashape/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/coretypes.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/discovery.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/dispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/internal_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/predicates.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/promote.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/py2help.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/type_symbol_table.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/typesets.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/user.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/__pycache__/validation.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/_version.py\', \'lib/python3.6/site-packages/datashape/coretypes.py\', \'lib/python3.6/site-packages/datashape/discovery.py\', \'lib/python3.6/site-packages/datashape/dispatch.py\', \'lib/python3.6/site-packages/datashape/error.py\', \'lib/python3.6/site-packages/datashape/internal_utils.py\', \'lib/python3.6/site-packages/datashape/lexer.py\', \'lib/python3.6/site-packages/datashape/parser.py\', \'lib/python3.6/site-packages/datashape/predicates.py\', \'lib/python3.6/site-packages/datashape/promote.py\', \'lib/python3.6/site-packages/datashape/py2help.py\', \'lib/python3.6/site-packages/datashape/tests/__init__.py\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_coretypes.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_creation.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_discovery.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_operations.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_predicates.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_promote.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_str.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_typeset.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_user.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/__pycache__/test_version.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/tests/test_coretypes.py\', \'lib/python3.6/site-packages/datashape/tests/test_creation.py\', \'lib/python3.6/site-packages/datashape/tests/test_discovery.py\', \'lib/python3.6/site-packages/datashape/tests/test_lexer.py\', \'lib/python3.6/site-packages/datashape/tests/test_operations.py\', \'lib/python3.6/site-packages/datashape/tests/test_parser.py\', \'lib/python3.6/site-packages/datashape/tests/test_predicates.py\', \'lib/python3.6/site-packages/datashape/tests/test_promote.py\', \'lib/python3.6/site-packages/datashape/tests/test_str.py\', \'lib/python3.6/site-packages/datashape/tests/test_typeset.py\', \'lib/python3.6/site-packages/datashape/tests/test_user.py\', \'lib/python3.6/site-packages/datashape/tests/test_util.py\', \'lib/python3.6/site-packages/datashape/tests/test_version.py\', \'lib/python3.6/site-packages/datashape/type_symbol_table.py\', \'lib/python3.6/site-packages/datashape/typesets.py\', \'lib/python3.6/site-packages/datashape/user.py\', \'lib/python3.6/site-packages/datashape/util/__init__.py\', \'lib/python3.6/site-packages/datashape/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/util/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/datashape/util/testing.py\', \'lib/python3.6/site-packages/datashape/validation.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/datashape-0.5.4-py36_0\', type=1))", "defaults::dbus-1.10.10-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'expat\',), license=\'GPL2\', md5=\'80493c5ee4ee933a24e8e25f9e09cdaa\', name=\'dbus\', platform=\'linux\', subdir=\'linux-64\', version=\'1.10.10\', fn=\'dbus-1.10.10-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/dbus-1.10.10-0.tar.bz2\', files=(\'bin/.dbus-post-link.sh\', \'bin/dbus-cleanup-sockets\', \'bin/dbus-daemon\', \'bin/dbus-launch\', \'bin/dbus-monitor\', \'bin/dbus-run-session\', \'bin/dbus-send\', \'bin/dbus-test-tool\', \'bin/dbus-update-activation-environment\', \'bin/dbus-uuidgen\', \'etc/dbus-1/session.conf\', \'etc/dbus-1/system.conf\', \'etc/rc.d/init.d/messagebus\', \'include/dbus-1.0/dbus/dbus-address.h\', \'include/dbus-1.0/dbus/dbus-bus.h\', \'include/dbus-1.0/dbus/dbus-connection.h\', \'include/dbus-1.0/dbus/dbus-errors.h\', \'include/dbus-1.0/dbus/dbus-macros.h\', \'include/dbus-1.0/dbus/dbus-memory.h\', \'include/dbus-1.0/dbus/dbus-message.h\', \'include/dbus-1.0/dbus/dbus-misc.h\', \'include/dbus-1.0/dbus/dbus-pending-call.h\', \'include/dbus-1.0/dbus/dbus-protocol.h\', \'include/dbus-1.0/dbus/dbus-server.h\', \'include/dbus-1.0/dbus/dbus-shared.h\', \'include/dbus-1.0/dbus/dbus-signature.h\', \'include/dbus-1.0/dbus/dbus-syntax.h\', \'include/dbus-1.0/dbus/dbus-threads.h\', \'include/dbus-1.0/dbus/dbus-types.h\', \'include/dbus-1.0/dbus/dbus.h\', \'lib/dbus-1.0/include/dbus/dbus-arch-deps.h\', \'lib/libdbus-1.a\', \'lib/libdbus-1.la\', \'lib/libdbus-1.so\', \'lib/libdbus-1.so.3\', \'lib/libdbus-1.so.3.14.7\', \'lib/pkgconfig/dbus-1.pc\', \'libexec/dbus-daemon-launch-helper\', \'share/dbus-1/session.conf\', \'share/dbus-1/system.conf\', \'share/doc/dbus/api/annotated.html\', \'share/doc/dbus/api/dbus-address_8c-source.html\', \'share/doc/dbus/api/dbus-address_8h-source.html\', \'share/doc/dbus/api/dbus-arch-deps_8h-source.html\', \'share/doc/dbus/api/dbus-asv-util_8c-source.html\', \'share/doc/dbus/api/dbus-asv-util_8h-source.html\', \'share/doc/dbus/api/dbus-auth-script_8c-source.html\', \'share/doc/dbus/api/dbus-auth-script_8h-source.html\', \'share/doc/dbus/api/dbus-auth-util_8c-source.html\', \'share/doc/dbus/api/dbus-auth_8c-source.html\', \'share/doc/dbus/api/dbus-auth_8h-source.html\', \'share/doc/dbus/api/dbus-bus_8c-source.html\', \'share/doc/dbus/api/dbus-bus_8h-source.html\', \'share/doc/dbus/api/dbus-connection-internal_8h-source.html\', \'share/doc/dbus/api/dbus-connection_8c-source.html\', \'share/doc/dbus/api/dbus-connection_8h-source.html\', \'share/doc/dbus/api/dbus-credentials-util_8c-source.html\', \'share/doc/dbus/api/dbus-credentials_8c-source.html\', \'share/doc/dbus/api/dbus-credentials_8h-source.html\', \'share/doc/dbus/api/dbus-dataslot_8c-source.html\', \'share/doc/dbus/api/dbus-dataslot_8h-source.html\', \'share/doc/dbus/api/dbus-errors_8c-source.html\', \'share/doc/dbus/api/dbus-errors_8h-source.html\', \'share/doc/dbus/api/dbus-file-unix_8c-source.html\', \'share/doc/dbus/api/dbus-file-win_8c-source.html\', \'share/doc/dbus/api/dbus-file_8c-source.html\', \'share/doc/dbus/api/dbus-file_8h-source.html\', \'share/doc/dbus/api/dbus-hash_8c-source.html\', \'share/doc/dbus/api/dbus-hash_8h-source.html\', \'share/doc/dbus/api/dbus-internals_8c-source.html\', \'share/doc/dbus/api/dbus-internals_8h-source.html\', \'share/doc/dbus/api/dbus-keyring_8c-source.html\', \'share/doc/dbus/api/dbus-keyring_8h-source.html\', \'share/doc/dbus/api/dbus-list_8c-source.html\', \'share/doc/dbus/api/dbus-list_8h-source.html\', \'share/doc/dbus/api/dbus-macros_8h-source.html\', \'share/doc/dbus/api/dbus-mainloop_8c-source.html\', \'share/doc/dbus/api/dbus-mainloop_8h-source.html\', \'share/doc/dbus/api/dbus-marshal-basic_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-basic_8h-source.html\', \'share/doc/dbus/api/dbus-marshal-byteswap-util_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-byteswap_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-byteswap_8h-source.html\', \'share/doc/dbus/api/dbus-marshal-header_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-header_8h-source.html\', \'share/doc/dbus/api/dbus-marshal-recursive-util_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-recursive_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-recursive_8h-source.html\', \'share/doc/dbus/api/dbus-marshal-validate-util_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-validate_8c-source.html\', \'share/doc/dbus/api/dbus-marshal-validate_8h-source.html\', \'share/doc/dbus/api/dbus-memory_8c-source.html\', \'share/doc/dbus/api/dbus-memory_8h-source.html\', \'share/doc/dbus/api/dbus-mempool_8c-source.html\', \'share/doc/dbus/api/dbus-mempool_8h-source.html\', \'share/doc/dbus/api/dbus-message-factory_8c-source.html\', \'share/doc/dbus/api/dbus-message-factory_8h-source.html\', \'share/doc/dbus/api/dbus-message-internal_8h-source.html\', \'share/doc/dbus/api/dbus-message-private_8h-source.html\', \'share/doc/dbus/api/dbus-message-util_8c-source.html\', \'share/doc/dbus/api/dbus-message_8c-source.html\', \'share/doc/dbus/api/dbus-message_8h-source.html\', \'share/doc/dbus/api/dbus-misc_8c-source.html\', \'share/doc/dbus/api/dbus-misc_8h-source.html\', \'share/doc/dbus/api/dbus-nonce_8c-source.html\', \'share/doc/dbus/api/dbus-nonce_8h-source.html\', \'share/doc/dbus/api/dbus-object-tree_8c-source.html\', \'share/doc/dbus/api/dbus-object-tree_8h-source.html\', \'share/doc/dbus/api/dbus-pending-call-internal_8h-source.html\', \'share/doc/dbus/api/dbus-pending-call_8c-source.html\', \'share/doc/dbus/api/dbus-pending-call_8h-source.html\', \'share/doc/dbus/api/dbus-pipe-unix_8c-source.html\', \'share/doc/dbus/api/dbus-pipe-win_8c-source.html\', \'share/doc/dbus/api/dbus-pipe_8c-source.html\', \'share/doc/dbus/api/dbus-pipe_8h-source.html\', \'share/doc/dbus/api/dbus-protocol_8h-source.html\', \'share/doc/dbus/api/dbus-resources_8c-source.html\', \'share/doc/dbus/api/dbus-resources_8h-source.html\', \'share/doc/dbus/api/dbus-server-debug-pipe_8c-source.html\', \'share/doc/dbus/api/dbus-server-debug-pipe_8h-source.html\', \'share/doc/dbus/api/dbus-server-launchd_8c-source.html\', \'share/doc/dbus/api/dbus-server-launchd_8h-source.html\', \'share/doc/dbus/api/dbus-server-protected_8h-source.html\', \'share/doc/dbus/api/dbus-server-socket_8c-source.html\', \'share/doc/dbus/api/dbus-server-socket_8h-source.html\', \'share/doc/dbus/api/dbus-server-unix_8c-source.html\', \'share/doc/dbus/api/dbus-server-unix_8h-source.html\', \'share/doc/dbus/api/dbus-server-win_8c-source.html\', \'share/doc/dbus/api/dbus-server-win_8h-source.html\', \'share/doc/dbus/api/dbus-server_8c-source.html\', \'share/doc/dbus/api/dbus-server_8h-source.html\', \'share/doc/dbus/api/dbus-sha_8c-source.html\', \'share/doc/dbus/api/dbus-sha_8h-source.html\', \'share/doc/dbus/api/dbus-shared_8h-source.html\', \'share/doc/dbus/api/dbus-shell_8c-source.html\', \'share/doc/dbus/api/dbus-shell_8h-source.html\', \'share/doc/dbus/api/dbus-signature_8c-source.html\', \'share/doc/dbus/api/dbus-signature_8h-source.html\', \'share/doc/dbus/api/dbus-socket-set-epoll_8c-source.html\', \'share/doc/dbus/api/dbus-socket-set-poll_8c-source.html\', \'share/doc/dbus/api/dbus-socket-set_8c-source.html\', \'share/doc/dbus/api/dbus-socket-set_8h-source.html\', \'share/doc/dbus/api/dbus-sockets-win_8h-source.html\', \'share/doc/dbus/api/dbus-spawn-win_8c-source.html\', \'share/doc/dbus/api/dbus-spawn_8c-source.html\', \'share/doc/dbus/api/dbus-spawn_8h-source.html\', \'share/doc/dbus/api/dbus-string-private_8h-source.html\', \'share/doc/dbus/api/dbus-string-util_8c-source.html\', \'share/doc/dbus/api/dbus-string_8c-source.html\', \'share/doc/dbus/api/dbus-string_8h-source.html\', \'share/doc/dbus/api/dbus-syntax_8c-source.html\', \'share/doc/dbus/api/dbus-syntax_8h-source.html\', \'share/doc/dbus/api/dbus-sysdeps-pthread_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-thread-win_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-unix_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-unix_8h-source.html\', \'share/doc/dbus/api/dbus-sysdeps-util-unix_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-util-win_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-util_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-win_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-win_8h-source.html\', \'share/doc/dbus/api/dbus-sysdeps-wince-glue_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps-wince-glue_8h-source.html\', \'share/doc/dbus/api/dbus-sysdeps_8c-source.html\', \'share/doc/dbus/api/dbus-sysdeps_8h-source.html\', \'share/doc/dbus/api/dbus-test-main_8c-source.html\', \'share/doc/dbus/api/dbus-test_8c-source.html\', \'share/doc/dbus/api/dbus-test_8h-source.html\', \'share/doc/dbus/api/dbus-threads-internal_8h-source.html\', \'share/doc/dbus/api/dbus-threads_8c-source.html\', \'share/doc/dbus/api/dbus-threads_8h-source.html\', \'share/doc/dbus/api/dbus-timeout_8c-source.html\', \'share/doc/dbus/api/dbus-timeout_8h-source.html\', \'share/doc/dbus/api/dbus-transport-protected_8h-source.html\', \'share/doc/dbus/api/dbus-transport-socket_8c-source.html\', \'share/doc/dbus/api/dbus-transport-socket_8h-source.html\', \'share/doc/dbus/api/dbus-transport-unix_8c-source.html\', \'share/doc/dbus/api/dbus-transport-unix_8h-source.html\', \'share/doc/dbus/api/dbus-transport-win_8c-source.html\', \'share/doc/dbus/api/dbus-transport-win_8h-source.html\', \'share/doc/dbus/api/dbus-transport_8c-source.html\', \'share/doc/dbus/api/dbus-transport_8h-source.html\', \'share/doc/dbus/api/dbus-types_8h-source.html\', \'share/doc/dbus/api/dbus-userdb-util_8c-source.html\', \'share/doc/dbus/api/dbus-userdb_8c-source.html\', \'share/doc/dbus/api/dbus-userdb_8h-source.html\', \'share/doc/dbus/api/dbus-uuidgen_8c-source.html\', \'share/doc/dbus/api/dbus-uuidgen_8h-source.html\', \'share/doc/dbus/api/dbus-valgrind-internal_8h-source.html\', \'share/doc/dbus/api/dbus-watch_8c-source.html\', \'share/doc/dbus/api/dbus-watch_8h-source.html\', \'share/doc/dbus/api/dbus_8h-source.html\', \'share/doc/dbus/api/doxygen.css\', \'share/doc/dbus/api/doxygen.png\', \'share/doc/dbus/api/files.html\', \'share/doc/dbus/api/functions.html\', \'share/doc/dbus/api/functions_0x62.html\', \'share/doc/dbus/api/functions_0x63.html\', \'share/doc/dbus/api/functions_0x64.html\', \'share/doc/dbus/api/functions_0x65.html\', \'share/doc/dbus/api/functions_0x66.html\', \'share/doc/dbus/api/functions_0x67.html\', \'share/doc/dbus/api/functions_0x68.html\', \'share/doc/dbus/api/functions_0x69.html\', \'share/doc/dbus/api/functions_0x6b.html\', \'share/doc/dbus/api/functions_0x6c.html\', \'share/doc/dbus/api/functions_0x6d.html\', \'share/doc/dbus/api/functions_0x6e.html\', \'share/doc/dbus/api/functions_0x6f.html\', \'share/doc/dbus/api/functions_0x70.html\', \'share/doc/dbus/api/functions_0x71.html\', \'share/doc/dbus/api/functions_0x72.html\', \'share/doc/dbus/api/functions_0x73.html\', \'share/doc/dbus/api/functions_0x74.html\', \'share/doc/dbus/api/functions_0x75.html\', \'share/doc/dbus/api/functions_0x76.html\', \'share/doc/dbus/api/functions_0x77.html\', \'share/doc/dbus/api/functions_0x7a.html\', \'share/doc/dbus/api/functions_vars.html\', \'share/doc/dbus/api/functions_vars_0x62.html\', \'share/doc/dbus/api/functions_vars_0x63.html\', \'share/doc/dbus/api/functions_vars_0x64.html\', \'share/doc/dbus/api/functions_vars_0x65.html\', \'share/doc/dbus/api/functions_vars_0x66.html\', \'share/doc/dbus/api/functions_vars_0x67.html\', \'share/doc/dbus/api/functions_vars_0x68.html\', \'share/doc/dbus/api/functions_vars_0x69.html\', \'share/doc/dbus/api/functions_vars_0x6b.html\', \'share/doc/dbus/api/functions_vars_0x6c.html\', \'share/doc/dbus/api/functions_vars_0x6d.html\', \'share/doc/dbus/api/functions_vars_0x6e.html\', \'share/doc/dbus/api/functions_vars_0x6f.html\', \'share/doc/dbus/api/functions_vars_0x70.html\', \'share/doc/dbus/api/functions_vars_0x71.html\', \'share/doc/dbus/api/functions_vars_0x72.html\', \'share/doc/dbus/api/functions_vars_0x73.html\', \'share/doc/dbus/api/functions_vars_0x74.html\', \'share/doc/dbus/api/functions_vars_0x75.html\', \'share/doc/dbus/api/functions_vars_0x76.html\', \'share/doc/dbus/api/functions_vars_0x77.html\', \'share/doc/dbus/api/functions_vars_0x7a.html\', \'share/doc/dbus/api/group__DBus.html\', \'share/doc/dbus/api/group__DBusAddress.html\', \'share/doc/dbus/api/group__DBusAddressInternals.html\', \'share/doc/dbus/api/group__DBusAuth.html\', \'share/doc/dbus/api/group__DBusAuthInternals.html\', \'share/doc/dbus/api/group__DBusBus.html\', \'share/doc/dbus/api/group__DBusBusInternals.html\', \'share/doc/dbus/api/group__DBusConnection.html\', \'share/doc/dbus/api/group__DBusConnectionInternals.html\', \'share/doc/dbus/api/group__DBusCredentials.html\', \'share/doc/dbus/api/group__DBusCredentialsInternals.html\', \'share/doc/dbus/api/group__DBusDataSlot.html\', \'share/doc/dbus/api/group__DBusErrorInternals.html\', \'share/doc/dbus/api/group__DBusErrors.html\', \'share/doc/dbus/api/group__DBusFile.html\', \'share/doc/dbus/api/group__DBusHashTable.html\', \'share/doc/dbus/api/group__DBusHashTableInternals.html\', \'share/doc/dbus/api/group__DBusInternals.html\', \'share/doc/dbus/api/group__DBusInternalsUtils.html\', \'share/doc/dbus/api/group__DBusInternalsUuidgen.html\', \'share/doc/dbus/api/group__DBusKeyring.html\', \'share/doc/dbus/api/group__DBusKeyringInternals.html\', \'share/doc/dbus/api/group__DBusList.html\', \'share/doc/dbus/api/group__DBusListInternals.html\', \'share/doc/dbus/api/group__DBusMacros.html\', \'share/doc/dbus/api/group__DBusMarshal.html\', \'share/doc/dbus/api/group__DBusMemPool.html\', \'share/doc/dbus/api/group__DBusMemPoolInternals.html\', \'share/doc/dbus/api/group__DBusMemory.html\', \'share/doc/dbus/api/group__DBusMemoryInternals.html\', \'share/doc/dbus/api/group__DBusMessage.html\', \'share/doc/dbus/api/group__DBusMessageInternals.html\', \'share/doc/dbus/api/group__DBusMisc.html\', \'share/doc/dbus/api/group__DBusObjectTree.html\', \'share/doc/dbus/api/group__DBusPendingCall.html\', \'share/doc/dbus/api/group__DBusPendingCallInternals.html\', \'share/doc/dbus/api/group__DBusProtocol.html\', \'share/doc/dbus/api/group__DBusResources.html\', \'share/doc/dbus/api/group__DBusResourcesInternals.html\', \'share/doc/dbus/api/group__DBusSHA.html\', \'share/doc/dbus/api/group__DBusSHAInternals.html\', \'share/doc/dbus/api/group__DBusServer.html\', \'share/doc/dbus/api/group__DBusServerInternals.html\', \'share/doc/dbus/api/group__DBusServerLaunchd.html\', \'share/doc/dbus/api/group__DBusServerSocket.html\', \'share/doc/dbus/api/group__DBusServerUnix.html\', \'share/doc/dbus/api/group__DBusServerWin.html\', \'share/doc/dbus/api/group__DBusShared.html\', \'share/doc/dbus/api/group__DBusSignature.html\', \'share/doc/dbus/api/group__DBusString.html\', \'share/doc/dbus/api/group__DBusStringInternals.html\', \'share/doc/dbus/api/group__DBusSyntax.html\', \'share/doc/dbus/api/group__DBusSysdeps.html\', \'share/doc/dbus/api/group__DBusSysdepsUnix.html\', \'share/doc/dbus/api/group__DBusThreads.html\', \'share/doc/dbus/api/group__DBusThreadsInternals.html\', \'share/doc/dbus/api/group__DBusTimeout.html\', \'share/doc/dbus/api/group__DBusTimeoutInternals.html\', \'share/doc/dbus/api/group__DBusTransport.html\', \'share/doc/dbus/api/group__DBusTransportSocket.html\', \'share/doc/dbus/api/group__DBusTransportUnix.html\', \'share/doc/dbus/api/group__DBusTypes.html\', \'share/doc/dbus/api/group__DBusWatch.html\', \'share/doc/dbus/api/group__DBusWatchInternals.html\', \'share/doc/dbus/api/index.html\', \'share/doc/dbus/api/modules.html\', \'share/doc/dbus/api/pages.html\', \'share/doc/dbus/api/structBusData.html\', \'share/doc/dbus/api/structDBus8ByteStruct.html\', \'share/doc/dbus/api/structDBusAddressEntry.html\', \'share/doc/dbus/api/structDBusAllocatedSlot.html\', \'share/doc/dbus/api/structDBusArrayLenFixup.html\', \'share/doc/dbus/api/structDBusAtomic.html\', \'share/doc/dbus/api/structDBusAuth.html\', \'share/doc/dbus/api/structDBusAuthClient.html\', \'share/doc/dbus/api/structDBusAuthCommandName.html\', \'share/doc/dbus/api/structDBusAuthMechanismHandler.html\', \'share/doc/dbus/api/structDBusAuthServer.html\', \'share/doc/dbus/api/structDBusAuthStateData.html\', \'share/doc/dbus/api/structDBusBabysitter.html\', \'share/doc/dbus/api/structDBusCMutex.html\', \'share/doc/dbus/api/structDBusCondVar.html\', \'share/doc/dbus/api/structDBusConnection.html\', \'share/doc/dbus/api/structDBusCounter.html\', \'share/doc/dbus/api/structDBusCredentials.html\', \'share/doc/dbus/api/structDBusDataSlot.html\', \'share/doc/dbus/api/structDBusDataSlotAllocator.html\', \'share/doc/dbus/api/structDBusDataSlotList.html\', \'share/doc/dbus/api/structDBusDirIter.html\', \'share/doc/dbus/api/structDBusError.html\', \'share/doc/dbus/api/structDBusFreedElement.html\', \'share/doc/dbus/api/structDBusGroupInfo.html\', \'share/doc/dbus/api/structDBusHashEntry.html\', \'share/doc/dbus/api/structDBusHashIter.html\', \'share/doc/dbus/api/structDBusHashTable.html\', \'share/doc/dbus/api/structDBusHeader.html\', \'share/doc/dbus/api/structDBusHeaderField.html\', \'share/doc/dbus/api/structDBusKey.html\', \'share/doc/dbus/api/structDBusKeyring.html\', \'share/doc/dbus/api/structDBusList.html\', \'share/doc/dbus/api/structDBusMemBlock.html\', \'share/doc/dbus/api/structDBusMemPool.html\', \'share/doc/dbus/api/structDBusMessage.html\', \'share/doc/dbus/api/structDBusMessageFilter.html\', \'share/doc/dbus/api/structDBusMessageIter.html\', \'share/doc/dbus/api/structDBusMessageIter__1__10__0.html\', \'share/doc/dbus/api/structDBusMessageLoader.html\', \'share/doc/dbus/api/structDBusMessageRealIter.html\', \'share/doc/dbus/api/structDBusNonceFile.html\', \'share/doc/dbus/api/structDBusObjectPathVTable.html\', \'share/doc/dbus/api/structDBusObjectSubtree.html\', \'share/doc/dbus/api/structDBusObjectTree.html\', \'share/doc/dbus/api/structDBusPendingCall.html\', \'share/doc/dbus/api/structDBusPipe.html\', \'share/doc/dbus/api/structDBusPreallocatedSend.html\', \'share/doc/dbus/api/structDBusRLimit.html\', \'share/doc/dbus/api/structDBusRMutex.html\', \'share/doc/dbus/api/structDBusRealError.html\', \'share/doc/dbus/api/structDBusRealHashIter.html\', \'share/doc/dbus/api/structDBusRealString.html\', \'share/doc/dbus/api/structDBusSHAContext.html\', \'share/doc/dbus/api/structDBusServer.html\', \'share/doc/dbus/api/structDBusServerSocket.html\', \'share/doc/dbus/api/structDBusServerVTable.html\', \'share/doc/dbus/api/structDBusSignatureIter.html\', \'share/doc/dbus/api/structDBusSignatureRealIter.html\', \'share/doc/dbus/api/structDBusSocket.html\', \'share/doc/dbus/api/structDBusStat.html\', \'share/doc/dbus/api/structDBusString.html\', \'share/doc/dbus/api/structDBusThreadFunctions.html\', \'share/doc/dbus/api/structDBusTimeout.html\', \'share/doc/dbus/api/structDBusTimeoutList.html\', \'share/doc/dbus/api/structDBusTransport.html\', \'share/doc/dbus/api/structDBusTransportSocket.html\', \'share/doc/dbus/api/structDBusTransportVTable.html\', \'share/doc/dbus/api/structDBusTypeReader.html\', \'share/doc/dbus/api/structDBusTypeReaderClass.html\', \'share/doc/dbus/api/structDBusTypeWriter.html\', \'share/doc/dbus/api/structDBusUserInfo.html\', \'share/doc/dbus/api/structDBusWatch.html\', \'share/doc/dbus/api/structDBusWatchList.html\', \'share/doc/dbus/api/structHeaderFieldType.html\', \'share/doc/dbus/api/structReplacementBlock.html\', \'share/doc/dbus/api/structShutdownClosure.html\', \'share/doc/dbus/api/tab_b.gif\', \'share/doc/dbus/api/tab_l.gif\', \'share/doc/dbus/api/tab_r.gif\', \'share/doc/dbus/api/tabs.css\', \'share/doc/dbus/api/todo.html\', \'share/doc/dbus/api/unionDBusBasicValue.html\', \'share/doc/dbus/api/unionDBusGUID.html\', \'share/doc/dbus/dbus.devhelp\', \'share/doc/dbus/diagram.png\', \'share/doc/dbus/diagram.svg\', \'share/doc/dbus/examples/GetAllMatchRules.py\', \'share/doc/dbus/examples/GetAllMatchRules.pyc\', \'share/doc/dbus/examples/example-session-disable-stats.conf\', \'share/doc/dbus/examples/example-system-enable-stats.conf\', \'share/doc/dbus/system-activation.txt\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/dbus-1.10.10-0\', type=1))", "defaults::decorator-4.0.11-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'daea8d26910b001cb7a204aca93c68cd\', name=\'decorator\', platform=\'linux\', subdir=\'linux-64\', version=\'4.0.11\', fn=\'decorator-4.0.11-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/decorator-4.0.11-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/decorator-4.0.11-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/decorator-4.0.11-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/decorator-4.0.11-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/decorator-4.0.11-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/decorator-4.0.11-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/decorator.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/decorator-4.0.11-py36_0\', type=1))", "defaults::dill-0.2.5-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'37cfe88fede1ec37522c5f6ab43940a7\', name=\'dill\', platform=\'linux\', subdir=\'linux-64\', version=\'0.2.5\', fn=\'dill-0.2.5-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/dill-0.2.5-py36_0.tar.bz2\', files=(\'bin/get_objgraph.py\', \'bin/unpickle.py\', \'lib/python3.6/site-packages/dill-0.2.5-py3.6.egg-info\', \'lib/python3.6/site-packages/dill/__diff.py\', \'lib/python3.6/site-packages/dill/__init__.py\', \'lib/python3.6/site-packages/dill/__pycache__/__diff.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/detect.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/dill.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/objtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/pointers.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/settings.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/source.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/__pycache__/temp.cpython-36.pyc\', \'lib/python3.6/site-packages/dill/_objects.py\', \'lib/python3.6/site-packages/dill/detect.py\', \'lib/python3.6/site-packages/dill/dill.py\', \'lib/python3.6/site-packages/dill/info.py\', \'lib/python3.6/site-packages/dill/objtypes.py\', \'lib/python3.6/site-packages/dill/pointers.py\', \'lib/python3.6/site-packages/dill/settings.py\', \'lib/python3.6/site-packages/dill/source.py\', \'lib/python3.6/site-packages/dill/temp.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/dill-0.2.5-py36_0\', type=1))", "defaults::docutils-0.13.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'Public-Domain, PSF, 2-clause BSD, GPLv3\', license_family=\'GPL3\', md5=\'b0d5fec95d6d6205a5fc9aeb77d12f01\', name=\'docutils\', platform=\'linux\', subdir=\'linux-64\', version=\'0.13.1\', fn=\'docutils-0.13.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/docutils-0.13.1-py36_0.tar.bz2\', files=(\'bin/rst2html.py\', \'bin/rst2html5.py\', \'bin/rst2latex.py\', \'bin/rst2man.py\', \'bin/rst2odt.py\', \'bin/rst2odt_prepstyles.py\', \'bin/rst2pseudoxml.py\', \'bin/rst2s5.py\', \'bin/rst2xetex.py\', \'bin/rst2xml.py\', \'bin/rstpep2html.py\', \'lib/python3.6/site-packages/docutils-0.13.1-py3.6.egg-info\', \'lib/python3.6/site-packages/docutils/__init__.py\', \'lib/python3.6/site-packages/docutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/examples.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/frontend.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/__pycache__/statemachine.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/_compat.py\', \'lib/python3.6/site-packages/docutils/core.py\', \'lib/python3.6/site-packages/docutils/examples.py\', \'lib/python3.6/site-packages/docutils/frontend.py\', \'lib/python3.6/site-packages/docutils/io.py\', \'lib/python3.6/site-packages/docutils/languages/__init__.py\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/af.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/ca.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/cs.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/da.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/de.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/en.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/eo.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/es.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/fa.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/fi.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/fr.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/gl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/he.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/it.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/ja.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/lt.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/lv.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/nl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/pl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/pt_br.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/ru.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/sk.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/sv.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/zh_cn.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/__pycache__/zh_tw.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/languages/af.py\', \'lib/python3.6/site-packages/docutils/languages/ca.py\', \'lib/python3.6/site-packages/docutils/languages/cs.py\', \'lib/python3.6/site-packages/docutils/languages/da.py\', \'lib/python3.6/site-packages/docutils/languages/de.py\', \'lib/python3.6/site-packages/docutils/languages/en.py\', \'lib/python3.6/site-packages/docutils/languages/eo.py\', \'lib/python3.6/site-packages/docutils/languages/es.py\', \'lib/python3.6/site-packages/docutils/languages/fa.py\', \'lib/python3.6/site-packages/docutils/languages/fi.py\', \'lib/python3.6/site-packages/docutils/languages/fr.py\', \'lib/python3.6/site-packages/docutils/languages/gl.py\', \'lib/python3.6/site-packages/docutils/languages/he.py\', \'lib/python3.6/site-packages/docutils/languages/it.py\', \'lib/python3.6/site-packages/docutils/languages/ja.py\', \'lib/python3.6/site-packages/docutils/languages/lt.py\', \'lib/python3.6/site-packages/docutils/languages/lv.py\', \'lib/python3.6/site-packages/docutils/languages/nl.py\', \'lib/python3.6/site-packages/docutils/languages/pl.py\', \'lib/python3.6/site-packages/docutils/languages/pt_br.py\', \'lib/python3.6/site-packages/docutils/languages/ru.py\', \'lib/python3.6/site-packages/docutils/languages/sk.py\', \'lib/python3.6/site-packages/docutils/languages/sv.py\', \'lib/python3.6/site-packages/docutils/languages/zh_cn.py\', \'lib/python3.6/site-packages/docutils/languages/zh_tw.py\', \'lib/python3.6/site-packages/docutils/nodes.py\', \'lib/python3.6/site-packages/docutils/parsers/__init__.py\', \'lib/python3.6/site-packages/docutils/parsers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/__pycache__/null.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/null.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/__init__.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/__pycache__/roles.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/__pycache__/states.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/__pycache__/tableparser.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__init__.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/admonitions.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/body.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/images.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/parts.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/references.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/__pycache__/tables.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/admonitions.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/body.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/html.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/images.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/misc.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/parts.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/references.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/directives/tables.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/README.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamsa.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamsb.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamsc.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamsn.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamso.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isoamsr.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isobox.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isocyr1.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isocyr2.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isodia.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isogrk1.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isogrk2.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isogrk3.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isogrk4-wide.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isogrk4.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isolat1.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isolat2.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomfrk-wide.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomfrk.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomopf-wide.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomopf.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomscr-wide.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isomscr.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isonum.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isopub.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/isotech.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/mmlalias.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/mmlextra-wide.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/mmlextra.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/s5defs.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/xhtml1-lat1.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/xhtml1-special.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/include/xhtml1-symbol.txt\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__init__.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/af.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/ca.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/cs.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/da.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/de.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/en.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/eo.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/es.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/fa.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/fi.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/fr.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/gl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/he.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/it.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/ja.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/lt.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/lv.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/nl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/pl.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/pt_br.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/ru.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/sk.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/sv.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/zh_cn.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/__pycache__/zh_tw.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/af.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/ca.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/cs.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/da.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/de.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/en.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/eo.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/es.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/fa.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/fi.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/fr.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/gl.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/he.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/it.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/ja.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/lt.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/lv.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/nl.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/pl.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/pt_br.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/ru.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/sk.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/sv.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/zh_cn.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/languages/zh_tw.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/roles.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/states.py\', \'lib/python3.6/site-packages/docutils/parsers/rst/tableparser.py\', \'lib/python3.6/site-packages/docutils/readers/__init__.py\', \'lib/python3.6/site-packages/docutils/readers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/readers/__pycache__/doctree.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/readers/__pycache__/pep.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/readers/__pycache__/standalone.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/readers/doctree.py\', \'lib/python3.6/site-packages/docutils/readers/pep.py\', \'lib/python3.6/site-packages/docutils/readers/standalone.py\', \'lib/python3.6/site-packages/docutils/statemachine.py\', \'lib/python3.6/site-packages/docutils/transforms/__init__.py\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/components.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/frontmatter.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/parts.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/peps.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/references.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/universal.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/__pycache__/writer_aux.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/transforms/components.py\', \'lib/python3.6/site-packages/docutils/transforms/frontmatter.py\', \'lib/python3.6/site-packages/docutils/transforms/misc.py\', \'lib/python3.6/site-packages/docutils/transforms/parts.py\', \'lib/python3.6/site-packages/docutils/transforms/peps.py\', \'lib/python3.6/site-packages/docutils/transforms/references.py\', \'lib/python3.6/site-packages/docutils/transforms/universal.py\', \'lib/python3.6/site-packages/docutils/transforms/writer_aux.py\', \'lib/python3.6/site-packages/docutils/utils/__init__.py\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/code_analyzer.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/error_reporting.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/punctuation_chars.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/roman.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/smartquotes.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/__pycache__/urischemes.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/code_analyzer.py\', \'lib/python3.6/site-packages/docutils/utils/error_reporting.py\', \'lib/python3.6/site-packages/docutils/utils/math/__init__.py\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/latex2mathml.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/math2html.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/tex2mathml_extern.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/tex2unichar.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/__pycache__/unichar2tex.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/utils/math/latex2mathml.py\', \'lib/python3.6/site-packages/docutils/utils/math/math2html.py\', \'lib/python3.6/site-packages/docutils/utils/math/tex2mathml_extern.py\', \'lib/python3.6/site-packages/docutils/utils/math/tex2unichar.py\', \'lib/python3.6/site-packages/docutils/utils/math/unichar2tex.py\', \'lib/python3.6/site-packages/docutils/utils/punctuation_chars.py\', \'lib/python3.6/site-packages/docutils/utils/roman.py\', \'lib/python3.6/site-packages/docutils/utils/smartquotes.py\', \'lib/python3.6/site-packages/docutils/utils/urischemes.py\', \'lib/python3.6/site-packages/docutils/writers/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/_html_base.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/docutils_xml.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/manpage.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/null.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/__pycache__/pseudoxml.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/_html_base.py\', \'lib/python3.6/site-packages/docutils/writers/docutils_xml.py\', \'lib/python3.6/site-packages/docutils/writers/html4css1/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/html4css1/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/html4css1/html4css1.css\', \'lib/python3.6/site-packages/docutils/writers/html4css1/template.txt\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/math.css\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/minimal.css\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/plain.css\', \'lib/python3.6/site-packages/docutils/writers/html5_polyglot/template.txt\', \'lib/python3.6/site-packages/docutils/writers/latex2e/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/latex2e/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/latex2e/default.tex\', \'lib/python3.6/site-packages/docutils/writers/latex2e/titlepage.tex\', \'lib/python3.6/site-packages/docutils/writers/latex2e/xelatex.tex\', \'lib/python3.6/site-packages/docutils/writers/manpage.py\', \'lib/python3.6/site-packages/docutils/writers/null.py\', \'lib/python3.6/site-packages/docutils/writers/odf_odt/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/odf_odt/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/odf_odt/__pycache__/pygmentsformatter.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/odf_odt/pygmentsformatter.py\', \'lib/python3.6/site-packages/docutils/writers/odf_odt/styles.odt\', \'lib/python3.6/site-packages/docutils/writers/pep_html/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/pep_html/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/pep_html/pep.css\', \'lib/python3.6/site-packages/docutils/writers/pep_html/template.txt\', \'lib/python3.6/site-packages/docutils/writers/pseudoxml.py\', \'lib/python3.6/site-packages/docutils/writers/s5_html/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/s5_html/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/README.txt\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/big-black/__base__\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/big-black/framing.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/big-black/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/big-white/framing.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/big-white/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/blank.gif\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/framing.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/iepngfix.htc\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/opera.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/outline.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/print.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/s5-core.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/slides.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/default/slides.js\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/medium-black/__base__\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/medium-black/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/medium-white/framing.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/medium-white/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/small-black/__base__\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/small-black/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/small-white/framing.css\', \'lib/python3.6/site-packages/docutils/writers/s5_html/themes/small-white/pretty.css\', \'lib/python3.6/site-packages/docutils/writers/xetex/__init__.py\', \'lib/python3.6/site-packages/docutils/writers/xetex/__pycache__/__init__.cpython-36.pyc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/docutils-0.13.1-py36_0\', type=1))", "defaults::entrypoints-0.2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'8993ffc44a6bc2f31145e1728cba1637\', name=\'entrypoints\', platform=\'linux\', subdir=\'linux-64\', version=\'0.2.2\', fn=\'entrypoints-0.2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/entrypoints-0.2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/entrypoints.cpython-36.pyc\', \'lib/python3.6/site-packages/entrypoints.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/entrypoints-0.2.2-py36_0\', type=1))", "defaults::et_xmlfile-1.0.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'5bb11f119b2ed7197e8d736a04e41d22\', name=\'et_xmlfile\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.1\', fn=\'et_xmlfile-1.0.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/et_xmlfile-1.0.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/et_xmlfile-1.0.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/et_xmlfile-1.0.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/et_xmlfile-1.0.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/et_xmlfile-1.0.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/et_xmlfile-1.0.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/et_xmlfile/__init__.py\', \'lib/python3.6/site-packages/et_xmlfile/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/__pycache__/xmlfile.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/tests/__init__.py\', \'lib/python3.6/site-packages/et_xmlfile/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/tests/__pycache__/common_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/tests/__pycache__/helper.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/tests/__pycache__/test_incremental_xmlfile.cpython-36.pyc\', \'lib/python3.6/site-packages/et_xmlfile/tests/common_imports.py\', \'lib/python3.6/site-packages/et_xmlfile/tests/helper.py\', \'lib/python3.6/site-packages/et_xmlfile/tests/test_incremental_xmlfile.py\', \'lib/python3.6/site-packages/et_xmlfile/xmlfile.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/et_xmlfile-1.0.1-py36_0\', type=1))", "defaults::expat-2.1.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'MIT\', md5=\'13df3cb2b432de77be2c13103c39692c\', name=\'expat\', platform=\'linux\', subdir=\'linux-64\', version=\'2.1.0\', fn=\'expat-2.1.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/expat-2.1.0-0.tar.bz2\', files=(\'bin/xmlwf\', \'include/expat.h\', \'include/expat_external.h\', \'lib/libexpat.a\', \'lib/libexpat.la\', \'lib/libexpat.so\', \'lib/libexpat.so.1\', \'lib/libexpat.so.1.6.0\', \'lib/pkgconfig/expat.pc\', \'share/man/man1/xmlwf.1\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/expat-2.1.0-0\', type=1))", "defaults::fastcache-1.0.2-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'d49102f21764ce66d0a24cc13a483281\', name=\'fastcache\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.2\', fn=\'fastcache-1.0.2-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/fastcache-1.0.2-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/fastcache-1.0.2-py3.6.egg-info\', \'lib/python3.6/site-packages/fastcache/__init__.py\', \'lib/python3.6/site-packages/fastcache/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/__pycache__/benchmark.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/_lrucache.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/fastcache/benchmark.py\', \'lib/python3.6/site-packages/fastcache/tests/__init__.py\', \'lib/python3.6/site-packages/fastcache/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/tests/__pycache__/test_clrucache.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/tests/__pycache__/test_functools.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/tests/__pycache__/test_thread.cpython-36.pyc\', \'lib/python3.6/site-packages/fastcache/tests/test_clrucache.py\', \'lib/python3.6/site-packages/fastcache/tests/test_functools.py\', \'lib/python3.6/site-packages/fastcache/tests/test_thread.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/fastcache-1.0.2-py36_1\', type=1))", "defaults::flask-0.12-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'click >=2.0\', \'itsdangerous >=0.21\', \'jinja2 >=2.4\', \'python 3.6*\', \'werkzeug >=0.7\'), license=\'BSD\', md5=\'9319d67273c54bb3cf52df5fbf4aec72\', name=\'flask\', platform=\'linux\', subdir=\'linux-64\', version=\'0.12\', fn=\'flask-0.12-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/flask-0.12-py36_0.tar.bz2\', files=(\'bin/flask\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Flask-0.12-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/flask/__init__.py\', \'lib/python3.6/site-packages/flask/__main__.py\', \'lib/python3.6/site-packages/flask/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/app.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/blueprints.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/cli.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/ctx.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/debughelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/exthook.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/globals.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/sessions.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/signals.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/templating.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/views.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/_compat.py\', \'lib/python3.6/site-packages/flask/app.py\', \'lib/python3.6/site-packages/flask/blueprints.py\', \'lib/python3.6/site-packages/flask/cli.py\', \'lib/python3.6/site-packages/flask/config.py\', \'lib/python3.6/site-packages/flask/ctx.py\', \'lib/python3.6/site-packages/flask/debughelpers.py\', \'lib/python3.6/site-packages/flask/ext/__init__.py\', \'lib/python3.6/site-packages/flask/ext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/flask/exthook.py\', \'lib/python3.6/site-packages/flask/globals.py\', \'lib/python3.6/site-packages/flask/helpers.py\', \'lib/python3.6/site-packages/flask/json.py\', \'lib/python3.6/site-packages/flask/logging.py\', \'lib/python3.6/site-packages/flask/sessions.py\', \'lib/python3.6/site-packages/flask/signals.py\', \'lib/python3.6/site-packages/flask/templating.py\', \'lib/python3.6/site-packages/flask/testing.py\', \'lib/python3.6/site-packages/flask/views.py\', \'lib/python3.6/site-packages/flask/wrappers.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/flask-0.12-py36_0\', type=1))", "defaults::flask-cors-3.0.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'flask >=0.9\', \'python 3.6*\', \'six\'), license=\'MIT\', md5=\'c5ac3974a29985558a3647be59723d88\', name=\'flask-cors\', platform=\'linux\', subdir=\'linux-64\', version=\'3.0.2\', fn=\'flask-cors-3.0.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/flask-cors-3.0.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Flask_Cors-3.0.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/flask_cors/__init__.py\', \'lib/python3.6/site-packages/flask_cors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/flask_cors/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/flask_cors/__pycache__/decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/flask_cors/__pycache__/extension.cpython-36.pyc\', \'lib/python3.6/site-packages/flask_cors/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/flask_cors/core.py\', \'lib/python3.6/site-packages/flask_cors/decorator.py\', \'lib/python3.6/site-packages/flask_cors/extension.py\', \'lib/python3.6/site-packages/flask_cors/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/flask-cors-3.0.2-py36_0\', type=1))", "defaults::fontconfig-2.12.1-2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'2\', build_number=2, depends=(\'freetype 2.5.*\', \'libiconv 1.14*\', \'libpng >=1.6.27,<1.7\', \'libxml2 2.9.*\'), license=\'BSD\', md5=\'9afd8d876b5db0608f7caff1dd760826\', name=\'fontconfig\', platform=\'linux\', subdir=\'linux-64\', version=\'2.12.1\', fn=\'fontconfig-2.12.1-2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/fontconfig-2.12.1-2.tar.bz2\', files=(\'bin/fc-cache\', \'bin/fc-cat\', \'bin/fc-list\', \'bin/fc-match\', \'bin/fc-pattern\', \'bin/fc-query\', \'bin/fc-scan\', \'bin/fc-validate\', \'etc/fonts/conf.d/10-hinting-slight.conf\', \'etc/fonts/conf.d/10-scale-bitmap-fonts.conf\', \'etc/fonts/conf.d/20-unhint-small-vera.conf\', \'etc/fonts/conf.d/30-metric-aliases.conf\', \'etc/fonts/conf.d/30-urw-aliases.conf\', \'etc/fonts/conf.d/40-nonlatin.conf\', \'etc/fonts/conf.d/45-latin.conf\', \'etc/fonts/conf.d/49-sansserif.conf\', \'etc/fonts/conf.d/50-user.conf\', \'etc/fonts/conf.d/51-local.conf\', \'etc/fonts/conf.d/60-latin.conf\', \'etc/fonts/conf.d/65-fonts-persian.conf\', \'etc/fonts/conf.d/65-nonlatin.conf\', \'etc/fonts/conf.d/69-unifont.conf\', \'etc/fonts/conf.d/80-delicious.conf\', \'etc/fonts/conf.d/90-synthetic.conf\', \'etc/fonts/conf.d/README\', \'etc/fonts/fonts.conf\', \'include/fontconfig/fcfreetype.h\', \'include/fontconfig/fcprivate.h\', \'include/fontconfig/fontconfig.h\', \'lib/libfontconfig.la\', \'lib/libfontconfig.so\', \'lib/libfontconfig.so.1\', \'lib/libfontconfig.so.1.9.2\', \'lib/pkgconfig/fontconfig.pc\', \'share/fontconfig/conf.avail/10-autohint.conf\', \'share/fontconfig/conf.avail/10-hinting-full.conf\', \'share/fontconfig/conf.avail/10-hinting-medium.conf\', \'share/fontconfig/conf.avail/10-hinting-none.conf\', \'share/fontconfig/conf.avail/10-hinting-slight.conf\', \'share/fontconfig/conf.avail/10-no-sub-pixel.conf\', \'share/fontconfig/conf.avail/10-scale-bitmap-fonts.conf\', \'share/fontconfig/conf.avail/10-sub-pixel-bgr.conf\', \'share/fontconfig/conf.avail/10-sub-pixel-rgb.conf\', \'share/fontconfig/conf.avail/10-sub-pixel-vbgr.conf\', \'share/fontconfig/conf.avail/10-sub-pixel-vrgb.conf\', \'share/fontconfig/conf.avail/10-unhinted.conf\', \'share/fontconfig/conf.avail/11-lcdfilter-default.conf\', \'share/fontconfig/conf.avail/11-lcdfilter-legacy.conf\', \'share/fontconfig/conf.avail/11-lcdfilter-light.conf\', \'share/fontconfig/conf.avail/20-unhint-small-vera.conf\', \'share/fontconfig/conf.avail/25-unhint-nonlatin.conf\', \'share/fontconfig/conf.avail/30-metric-aliases.conf\', \'share/fontconfig/conf.avail/30-urw-aliases.conf\', \'share/fontconfig/conf.avail/40-nonlatin.conf\', \'share/fontconfig/conf.avail/45-latin.conf\', \'share/fontconfig/conf.avail/49-sansserif.conf\', \'share/fontconfig/conf.avail/50-user.conf\', \'share/fontconfig/conf.avail/51-local.conf\', \'share/fontconfig/conf.avail/60-latin.conf\', \'share/fontconfig/conf.avail/65-fonts-persian.conf\', \'share/fontconfig/conf.avail/65-khmer.conf\', \'share/fontconfig/conf.avail/65-nonlatin.conf\', \'share/fontconfig/conf.avail/69-unifont.conf\', \'share/fontconfig/conf.avail/70-no-bitmaps.conf\', \'share/fontconfig/conf.avail/70-yes-bitmaps.conf\', \'share/fontconfig/conf.avail/80-delicious.conf\', \'share/fontconfig/conf.avail/90-synthetic.conf\', \'share/xml/fontconfig/fonts.dtd\', \'var/cache/fontconfig/.leave\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/fontconfig-2.12.1-2\', type=1))", "defaults::freetype-2.5.5-2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'2\', build_number=2, depends=(\'libpng >=1.6.27,<1.7\', \'zlib 1.2.*\'), license=\'FreeType License\', license_family=\'Other\', md5=\'cb3923944a73c59b557cd85a8c55fcb3\', name=\'freetype\', platform=\'linux\', subdir=\'linux-64\', version=\'2.5.5\', fn=\'freetype-2.5.5-2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/freetype-2.5.5-2.tar.bz2\', files=(\'bin/freetype-config\', \'include/freetype2/config/ftconfig.h\', \'include/freetype2/config/ftheader.h\', \'include/freetype2/config/ftmodule.h\', \'include/freetype2/config/ftoption.h\', \'include/freetype2/config/ftstdlib.h\', \'include/freetype2/freetype.h\', \'include/freetype2/ft2build.h\', \'include/freetype2/ftadvanc.h\', \'include/freetype2/ftautoh.h\', \'include/freetype2/ftbbox.h\', \'include/freetype2/ftbdf.h\', \'include/freetype2/ftbitmap.h\', \'include/freetype2/ftbzip2.h\', \'include/freetype2/ftcache.h\', \'include/freetype2/ftcffdrv.h\', \'include/freetype2/ftchapters.h\', \'include/freetype2/ftcid.h\', \'include/freetype2/fterrdef.h\', \'include/freetype2/fterrors.h\', \'include/freetype2/ftgasp.h\', \'include/freetype2/ftglyph.h\', \'include/freetype2/ftgxval.h\', \'include/freetype2/ftgzip.h\', \'include/freetype2/ftimage.h\', \'include/freetype2/ftincrem.h\', \'include/freetype2/ftlcdfil.h\', \'include/freetype2/ftlist.h\', \'include/freetype2/ftlzw.h\', \'include/freetype2/ftmac.h\', \'include/freetype2/ftmm.h\', \'include/freetype2/ftmodapi.h\', \'include/freetype2/ftmoderr.h\', \'include/freetype2/ftotval.h\', \'include/freetype2/ftoutln.h\', \'include/freetype2/ftpfr.h\', \'include/freetype2/ftrender.h\', \'include/freetype2/ftsizes.h\', \'include/freetype2/ftsnames.h\', \'include/freetype2/ftstroke.h\', \'include/freetype2/ftsynth.h\', \'include/freetype2/ftsystem.h\', \'include/freetype2/fttrigon.h\', \'include/freetype2/ftttdrv.h\', \'include/freetype2/fttypes.h\', \'include/freetype2/ftwinfnt.h\', \'include/freetype2/ftxf86.h\', \'include/freetype2/t1tables.h\', \'include/freetype2/ttnameid.h\', \'include/freetype2/tttables.h\', \'include/freetype2/tttags.h\', \'include/freetype2/ttunpat.h\', \'lib/libfreetype.a\', \'lib/libfreetype.la\', \'lib/libfreetype.so\', \'lib/libfreetype.so.6\', \'lib/libfreetype.so.6.11.4\', \'lib/pkgconfig/freetype2.pc\', \'share/aclocal/freetype2.m4\', \'share/man/man1/freetype-config.1\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/freetype-2.5.5-2\', type=1))", "defaults::get_terminal_size-1.0.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'backports\', \'python 3.6*\'), license=\'MIT\', md5=\'7f7d364481b80173e06d073ea56bd7f1\', name=\'get_terminal_size\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.0\', fn=\'get_terminal_size-1.0.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/get_terminal_size-1.0.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/backports.shutil_get_terminal_size-1.0.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/backports.shutil_get_terminal_size-1.0.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/backports.shutil_get_terminal_size-1.0.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/backports.shutil_get_terminal_size-1.0.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/backports/shutil_get_terminal_size/__init__.py\', \'lib/python3.6/site-packages/backports/shutil_get_terminal_size/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/backports/shutil_get_terminal_size/__pycache__/get_terminal_size.cpython-36.pyc\', \'lib/python3.6/site-packages/backports/shutil_get_terminal_size/get_terminal_size.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/get_terminal_size-1.0.0-py36_0\', type=1))", "defaults::gevent-1.2.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'greenlet >=0.4.10\', \'python 3.6*\'), license=\'MIT\', md5=\'fff890dae17e3ddc460431884c776f08\', name=\'gevent\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.1\', fn=\'gevent-1.2.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/gevent-1.2.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/gevent-1.2.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/gevent/__init__.py\', \'lib/python3.6/site-packages/gevent/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_fileobjectcommon.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_fileobjectposix.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_semaphore.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_socket2.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_socket3.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_socketcommon.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_ssl2.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_ssl3.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_sslgte279.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_tblib.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_threading.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/_util.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/backdoor.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/baseserver.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/event.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/fileobject.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/greenlet.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/hub.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/local.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/lock.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/monkey.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/os.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/pool.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/pywsgi.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/queue.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/resolver_ares.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/resolver_thread.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/select.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/signal.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/socket.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/ssl.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/thread.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/threading.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/threadpool.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/timeout.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/win32util.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/__pycache__/wsgi.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/_compat.py\', \'lib/python3.6/site-packages/gevent/_fileobjectcommon.py\', \'lib/python3.6/site-packages/gevent/_fileobjectposix.py\', \'lib/python3.6/site-packages/gevent/_semaphore.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/gevent/_semaphore.pxd\', \'lib/python3.6/site-packages/gevent/_semaphore.py\', \'lib/python3.6/site-packages/gevent/_socket2.py\', \'lib/python3.6/site-packages/gevent/_socket3.py\', \'lib/python3.6/site-packages/gevent/_socketcommon.py\', \'lib/python3.6/site-packages/gevent/_ssl2.py\', \'lib/python3.6/site-packages/gevent/_ssl3.py\', \'lib/python3.6/site-packages/gevent/_sslgte279.py\', \'lib/python3.6/site-packages/gevent/_tblib.py\', \'lib/python3.6/site-packages/gevent/_threading.py\', \'lib/python3.6/site-packages/gevent/_util.py\', \'lib/python3.6/site-packages/gevent/_util_py2.py\', \'lib/python3.6/site-packages/gevent/ares.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/gevent/ares.pyx\', \'lib/python3.6/site-packages/gevent/backdoor.py\', \'lib/python3.6/site-packages/gevent/baseserver.py\', \'lib/python3.6/site-packages/gevent/builtins.py\', \'lib/python3.6/site-packages/gevent/cares.pxd\', \'lib/python3.6/site-packages/gevent/cares_ntop.h\', \'lib/python3.6/site-packages/gevent/cares_pton.h\', \'lib/python3.6/site-packages/gevent/core.py\', \'lib/python3.6/site-packages/gevent/dnshelper.c\', \'lib/python3.6/site-packages/gevent/event.py\', \'lib/python3.6/site-packages/gevent/fileobject.py\', \'lib/python3.6/site-packages/gevent/gevent._semaphore.c\', \'lib/python3.6/site-packages/gevent/gevent.ares.c\', \'lib/python3.6/site-packages/gevent/gevent.ares.h\', \'lib/python3.6/site-packages/gevent/greenlet.py\', \'lib/python3.6/site-packages/gevent/hub.py\', \'lib/python3.6/site-packages/gevent/libev/__init__.py\', \'lib/python3.6/site-packages/gevent/libev/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/libev/__pycache__/_corecffi_build.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/libev/__pycache__/corecffi.cpython-36.pyc\', \'lib/python3.6/site-packages/gevent/libev/_corecffi_build.py\', \'lib/python3.6/site-packages/gevent/libev/_corecffi_cdef.c\', \'lib/python3.6/site-packages/gevent/libev/_corecffi_source.c\', \'lib/python3.6/site-packages/gevent/libev/callbacks.c\', \'lib/python3.6/site-packages/gevent/libev/callbacks.h\', \'lib/python3.6/site-packages/gevent/libev/corecext.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/gevent/libev/corecext.ppyx\', \'lib/python3.6/site-packages/gevent/libev/corecext.pyx\', \'lib/python3.6/site-packages/gevent/libev/corecffi.py\', \'lib/python3.6/site-packages/gevent/libev/gevent.corecext.c\', \'lib/python3.6/site-packages/gevent/libev/libev.h\', \'lib/python3.6/site-packages/gevent/libev/libev.pxd\', \'lib/python3.6/site-packages/gevent/libev/libev_vfd.h\', \'lib/python3.6/site-packages/gevent/libev/stathelper.c\', \'lib/python3.6/site-packages/gevent/local.py\', \'lib/python3.6/site-packages/gevent/lock.py\', \'lib/python3.6/site-packages/gevent/monkey.py\', \'lib/python3.6/site-packages/gevent/os.py\', \'lib/python3.6/site-packages/gevent/pool.py\', \'lib/python3.6/site-packages/gevent/python.pxd\', \'lib/python3.6/site-packages/gevent/pywsgi.py\', \'lib/python3.6/site-packages/gevent/queue.py\', \'lib/python3.6/site-packages/gevent/resolver_ares.py\', \'lib/python3.6/site-packages/gevent/resolver_thread.py\', \'lib/python3.6/site-packages/gevent/select.py\', \'lib/python3.6/site-packages/gevent/server.py\', \'lib/python3.6/site-packages/gevent/signal.py\', \'lib/python3.6/site-packages/gevent/socket.py\', \'lib/python3.6/site-packages/gevent/ssl.py\', \'lib/python3.6/site-packages/gevent/subprocess.py\', \'lib/python3.6/site-packages/gevent/thread.py\', \'lib/python3.6/site-packages/gevent/threading.py\', \'lib/python3.6/site-packages/gevent/threadpool.py\', \'lib/python3.6/site-packages/gevent/timeout.py\', \'lib/python3.6/site-packages/gevent/util.py\', \'lib/python3.6/site-packages/gevent/win32util.py\', \'lib/python3.6/site-packages/gevent/wsgi.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/gevent-1.2.1-py36_0\', type=1))", "defaults::glib-2.50.2-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(\'libffi >=3.2.1\', \'pcre 8.39\', \'zlib\'), license=\'LGPL\', license_family=\'LGPL\', md5=\'a9e31763e3c9a330a3273e4f75829c15\', name=\'glib\', platform=\'linux\', subdir=\'linux-64\', version=\'2.50.2\', fn=\'glib-2.50.2-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/glib-2.50.2-1.tar.bz2\', files=(\'bin/gapplication\', \'bin/gdbus\', \'bin/gdbus-codegen\', \'bin/gio\', \'bin/gio-querymodules\', \'bin/glib-compile-resources\', \'bin/glib-compile-schemas\', \'bin/glib-genmarshal\', \'bin/glib-gettextize\', \'bin/glib-mkenums\', \'bin/gobject-query\', \'bin/gresource\', \'bin/gsettings\', \'bin/gtester\', \'bin/gtester-report\', \'include/gio-unix-2.0/gio/gdesktopappinfo.h\', \'include/gio-unix-2.0/gio/gfiledescriptorbased.h\', \'include/gio-unix-2.0/gio/gunixconnection.h\', \'include/gio-unix-2.0/gio/gunixcredentialsmessage.h\', \'include/gio-unix-2.0/gio/gunixfdlist.h\', \'include/gio-unix-2.0/gio/gunixfdmessage.h\', \'include/gio-unix-2.0/gio/gunixinputstream.h\', \'include/gio-unix-2.0/gio/gunixmounts.h\', \'include/gio-unix-2.0/gio/gunixoutputstream.h\', \'include/gio-unix-2.0/gio/gunixsocketaddress.h\', \'include/glib-2.0/gio/gaction.h\', \'include/glib-2.0/gio/gactiongroup.h\', \'include/glib-2.0/gio/gactiongroupexporter.h\', \'include/glib-2.0/gio/gactionmap.h\', \'include/glib-2.0/gio/gappinfo.h\', \'include/glib-2.0/gio/gapplication.h\', \'include/glib-2.0/gio/gapplicationcommandline.h\', \'include/glib-2.0/gio/gasyncinitable.h\', \'include/glib-2.0/gio/gasyncresult.h\', \'include/glib-2.0/gio/gbufferedinputstream.h\', \'include/glib-2.0/gio/gbufferedoutputstream.h\', \'include/glib-2.0/gio/gbytesicon.h\', \'include/glib-2.0/gio/gcancellable.h\', \'include/glib-2.0/gio/gcharsetconverter.h\', \'include/glib-2.0/gio/gcontenttype.h\', \'include/glib-2.0/gio/gconverter.h\', \'include/glib-2.0/gio/gconverterinputstream.h\', \'include/glib-2.0/gio/gconverteroutputstream.h\', \'include/glib-2.0/gio/gcredentials.h\', \'include/glib-2.0/gio/gdatagrambased.h\', \'include/glib-2.0/gio/gdatainputstream.h\', \'include/glib-2.0/gio/gdataoutputstream.h\', \'include/glib-2.0/gio/gdbusactiongroup.h\', \'include/glib-2.0/gio/gdbusaddress.h\', \'include/glib-2.0/gio/gdbusauthobserver.h\', \'include/glib-2.0/gio/gdbusconnection.h\', \'include/glib-2.0/gio/gdbuserror.h\', \'include/glib-2.0/gio/gdbusinterface.h\', \'include/glib-2.0/gio/gdbusinterfaceskeleton.h\', \'include/glib-2.0/gio/gdbusintrospection.h\', \'include/glib-2.0/gio/gdbusmenumodel.h\', \'include/glib-2.0/gio/gdbusmessage.h\', \'include/glib-2.0/gio/gdbusmethodinvocation.h\', \'include/glib-2.0/gio/gdbusnameowning.h\', \'include/glib-2.0/gio/gdbusnamewatching.h\', \'include/glib-2.0/gio/gdbusobject.h\', \'include/glib-2.0/gio/gdbusobjectmanager.h\', \'include/glib-2.0/gio/gdbusobjectmanagerclient.h\', \'include/glib-2.0/gio/gdbusobjectmanagerserver.h\', \'include/glib-2.0/gio/gdbusobjectproxy.h\', \'include/glib-2.0/gio/gdbusobjectskeleton.h\', \'include/glib-2.0/gio/gdbusproxy.h\', \'include/glib-2.0/gio/gdbusserver.h\', \'include/glib-2.0/gio/gdbusutils.h\', \'include/glib-2.0/gio/gdrive.h\', \'include/glib-2.0/gio/gdtlsclientconnection.h\', \'include/glib-2.0/gio/gdtlsconnection.h\', \'include/glib-2.0/gio/gdtlsserverconnection.h\', \'include/glib-2.0/gio/gemblem.h\', \'include/glib-2.0/gio/gemblemedicon.h\', \'include/glib-2.0/gio/gfile.h\', \'include/glib-2.0/gio/gfileattribute.h\', \'include/glib-2.0/gio/gfileenumerator.h\', \'include/glib-2.0/gio/gfileicon.h\', \'include/glib-2.0/gio/gfileinfo.h\', \'include/glib-2.0/gio/gfileinputstream.h\', \'include/glib-2.0/gio/gfileiostream.h\', \'include/glib-2.0/gio/gfilemonitor.h\', \'include/glib-2.0/gio/gfilenamecompleter.h\', \'include/glib-2.0/gio/gfileoutputstream.h\', \'include/glib-2.0/gio/gfilterinputstream.h\', \'include/glib-2.0/gio/gfilteroutputstream.h\', \'include/glib-2.0/gio/gicon.h\', \'include/glib-2.0/gio/ginetaddress.h\', \'include/glib-2.0/gio/ginetaddressmask.h\', \'include/glib-2.0/gio/ginetsocketaddress.h\', \'include/glib-2.0/gio/ginitable.h\', \'include/glib-2.0/gio/ginputstream.h\', \'include/glib-2.0/gio/gio-autocleanups.h\', \'include/glib-2.0/gio/gio.h\', \'include/glib-2.0/gio/gioenums.h\', \'include/glib-2.0/gio/gioenumtypes.h\', \'include/glib-2.0/gio/gioerror.h\', \'include/glib-2.0/gio/giomodule.h\', \'include/glib-2.0/gio/gioscheduler.h\', \'include/glib-2.0/gio/giostream.h\', \'include/glib-2.0/gio/giotypes.h\', \'include/glib-2.0/gio/glistmodel.h\', \'include/glib-2.0/gio/gliststore.h\', \'include/glib-2.0/gio/gloadableicon.h\', \'include/glib-2.0/gio/gmemoryinputstream.h\', \'include/glib-2.0/gio/gmemoryoutputstream.h\', \'include/glib-2.0/gio/gmenu.h\', \'include/glib-2.0/gio/gmenuexporter.h\', \'include/glib-2.0/gio/gmenumodel.h\', \'include/glib-2.0/gio/gmount.h\', \'include/glib-2.0/gio/gmountoperation.h\', \'include/glib-2.0/gio/gnativevolumemonitor.h\', \'include/glib-2.0/gio/gnetworkaddress.h\', \'include/glib-2.0/gio/gnetworking.h\', \'include/glib-2.0/gio/gnetworkmonitor.h\', \'include/glib-2.0/gio/gnetworkservice.h\', \'include/glib-2.0/gio/gnotification.h\', \'include/glib-2.0/gio/goutputstream.h\', \'include/glib-2.0/gio/gpermission.h\', \'include/glib-2.0/gio/gpollableinputstream.h\', \'include/glib-2.0/gio/gpollableoutputstream.h\', \'include/glib-2.0/gio/gpollableutils.h\', \'include/glib-2.0/gio/gpropertyaction.h\', \'include/glib-2.0/gio/gproxy.h\', \'include/glib-2.0/gio/gproxyaddress.h\', \'include/glib-2.0/gio/gproxyaddressenumerator.h\', \'include/glib-2.0/gio/gproxyresolver.h\', \'include/glib-2.0/gio/gremoteactiongroup.h\', \'include/glib-2.0/gio/gresolver.h\', \'include/glib-2.0/gio/gresource.h\', \'include/glib-2.0/gio/gseekable.h\', \'include/glib-2.0/gio/gsettings.h\', \'include/glib-2.0/gio/gsettingsbackend.h\', \'include/glib-2.0/gio/gsettingsschema.h\', \'include/glib-2.0/gio/gsimpleaction.h\', \'include/glib-2.0/gio/gsimpleactiongroup.h\', \'include/glib-2.0/gio/gsimpleasyncresult.h\', \'include/glib-2.0/gio/gsimpleiostream.h\', \'include/glib-2.0/gio/gsimplepermission.h\', \'include/glib-2.0/gio/gsimpleproxyresolver.h\', \'include/glib-2.0/gio/gsocket.h\', \'include/glib-2.0/gio/gsocketaddress.h\', \'include/glib-2.0/gio/gsocketaddressenumerator.h\', \'include/glib-2.0/gio/gsocketclient.h\', \'include/glib-2.0/gio/gsocketconnectable.h\', \'include/glib-2.0/gio/gsocketconnection.h\', \'include/glib-2.0/gio/gsocketcontrolmessage.h\', \'include/glib-2.0/gio/gsocketlistener.h\', \'include/glib-2.0/gio/gsocketservice.h\', \'include/glib-2.0/gio/gsrvtarget.h\', \'include/glib-2.0/gio/gsubprocess.h\', \'include/glib-2.0/gio/gsubprocesslauncher.h\', \'include/glib-2.0/gio/gtask.h\', \'include/glib-2.0/gio/gtcpconnection.h\', \'include/glib-2.0/gio/gtcpwrapperconnection.h\', \'include/glib-2.0/gio/gtestdbus.h\', \'include/glib-2.0/gio/gthemedicon.h\', \'include/glib-2.0/gio/gthreadedsocketservice.h\', \'include/glib-2.0/gio/gtlsbackend.h\', \'include/glib-2.0/gio/gtlscertificate.h\', \'include/glib-2.0/gio/gtlsclientconnection.h\', \'include/glib-2.0/gio/gtlsconnection.h\', \'include/glib-2.0/gio/gtlsdatabase.h\', \'include/glib-2.0/gio/gtlsfiledatabase.h\', \'include/glib-2.0/gio/gtlsinteraction.h\', \'include/glib-2.0/gio/gtlspassword.h\', \'include/glib-2.0/gio/gtlsserverconnection.h\', \'include/glib-2.0/gio/gvfs.h\', \'include/glib-2.0/gio/gvolume.h\', \'include/glib-2.0/gio/gvolumemonitor.h\', \'include/glib-2.0/gio/gzlibcompressor.h\', \'include/glib-2.0/gio/gzlibdecompressor.h\', \'include/glib-2.0/glib-object.h\', \'include/glib-2.0/glib-unix.h\', \'include/glib-2.0/glib.h\', \'include/glib-2.0/glib/deprecated/gallocator.h\', \'include/glib-2.0/glib/deprecated/gcache.h\', \'include/glib-2.0/glib/deprecated/gcompletion.h\', \'include/glib-2.0/glib/deprecated/gmain.h\', \'include/glib-2.0/glib/deprecated/grel.h\', \'include/glib-2.0/glib/deprecated/gthread.h\', \'include/glib-2.0/glib/galloca.h\', \'include/glib-2.0/glib/garray.h\', \'include/glib-2.0/glib/gasyncqueue.h\', \'include/glib-2.0/glib/gatomic.h\', \'include/glib-2.0/glib/gbacktrace.h\', \'include/glib-2.0/glib/gbase64.h\', \'include/glib-2.0/glib/gbitlock.h\', \'include/glib-2.0/glib/gbookmarkfile.h\', \'include/glib-2.0/glib/gbytes.h\', \'include/glib-2.0/glib/gcharset.h\', \'include/glib-2.0/glib/gchecksum.h\', \'include/glib-2.0/glib/gconvert.h\', \'include/glib-2.0/glib/gdataset.h\', \'include/glib-2.0/glib/gdate.h\', \'include/glib-2.0/glib/gdatetime.h\', \'include/glib-2.0/glib/gdir.h\', \'include/glib-2.0/glib/genviron.h\', \'include/glib-2.0/glib/gerror.h\', \'include/glib-2.0/glib/gfileutils.h\', \'include/glib-2.0/glib/ggettext.h\', \'include/glib-2.0/glib/ghash.h\', \'include/glib-2.0/glib/ghmac.h\', \'include/glib-2.0/glib/ghook.h\', \'include/glib-2.0/glib/ghostutils.h\', \'include/glib-2.0/glib/gi18n-lib.h\', \'include/glib-2.0/glib/gi18n.h\', \'include/glib-2.0/glib/giochannel.h\', \'include/glib-2.0/glib/gkeyfile.h\', \'include/glib-2.0/glib/glib-autocleanups.h\', \'include/glib-2.0/glib/glist.h\', \'include/glib-2.0/glib/gmacros.h\', \'include/glib-2.0/glib/gmain.h\', \'include/glib-2.0/glib/gmappedfile.h\', \'include/glib-2.0/glib/gmarkup.h\', \'include/glib-2.0/glib/gmem.h\', \'include/glib-2.0/glib/gmessages.h\', \'include/glib-2.0/glib/gnode.h\', \'include/glib-2.0/glib/goption.h\', \'include/glib-2.0/glib/gpattern.h\', \'include/glib-2.0/glib/gpoll.h\', \'include/glib-2.0/glib/gprimes.h\', \'include/glib-2.0/glib/gprintf.h\', \'include/glib-2.0/glib/gqsort.h\', \'include/glib-2.0/glib/gquark.h\', \'include/glib-2.0/glib/gqueue.h\', \'include/glib-2.0/glib/grand.h\', \'include/glib-2.0/glib/gregex.h\', \'include/glib-2.0/glib/gscanner.h\', \'include/glib-2.0/glib/gsequence.h\', \'include/glib-2.0/glib/gshell.h\', \'include/glib-2.0/glib/gslice.h\', \'include/glib-2.0/glib/gslist.h\', \'include/glib-2.0/glib/gspawn.h\', \'include/glib-2.0/glib/gstdio.h\', \'include/glib-2.0/glib/gstrfuncs.h\', \'include/glib-2.0/glib/gstring.h\', \'include/glib-2.0/glib/gstringchunk.h\', \'include/glib-2.0/glib/gtestutils.h\', \'include/glib-2.0/glib/gthread.h\', \'include/glib-2.0/glib/gthreadpool.h\', \'include/glib-2.0/glib/gtimer.h\', \'include/glib-2.0/glib/gtimezone.h\', \'include/glib-2.0/glib/gtrashstack.h\', \'include/glib-2.0/glib/gtree.h\', \'include/glib-2.0/glib/gtypes.h\', \'include/glib-2.0/glib/gunicode.h\', \'include/glib-2.0/glib/gurifuncs.h\', \'include/glib-2.0/glib/gutils.h\', \'include/glib-2.0/glib/gvariant.h\', \'include/glib-2.0/glib/gvarianttype.h\', \'include/glib-2.0/glib/gversion.h\', \'include/glib-2.0/glib/gversionmacros.h\', \'include/glib-2.0/glib/gwin32.h\', \'include/glib-2.0/gmodule.h\', \'include/glib-2.0/gobject/gbinding.h\', \'include/glib-2.0/gobject/gboxed.h\', \'include/glib-2.0/gobject/gclosure.h\', \'include/glib-2.0/gobject/genums.h\', \'include/glib-2.0/gobject/glib-types.h\', \'include/glib-2.0/gobject/gmarshal.h\', \'include/glib-2.0/gobject/gobject-autocleanups.h\', \'include/glib-2.0/gobject/gobject.h\', \'include/glib-2.0/gobject/gobjectnotifyqueue.c\', \'include/glib-2.0/gobject/gparam.h\', \'include/glib-2.0/gobject/gparamspecs.h\', \'include/glib-2.0/gobject/gsignal.h\', \'include/glib-2.0/gobject/gsourceclosure.h\', \'include/glib-2.0/gobject/gtype.h\', \'include/glib-2.0/gobject/gtypemodule.h\', \'include/glib-2.0/gobject/gtypeplugin.h\', \'include/glib-2.0/gobject/gvalue.h\', \'include/glib-2.0/gobject/gvaluearray.h\', \'include/glib-2.0/gobject/gvaluecollector.h\', \'include/glib-2.0/gobject/gvaluetypes.h\', \'lib/glib-2.0/include/glibconfig.h\', \'lib/libgio-2.0.la\', \'lib/libgio-2.0.so\', \'lib/libgio-2.0.so.0\', \'lib/libgio-2.0.so.0.5000.2\', \'lib/libglib-2.0.la\', \'lib/libglib-2.0.so\', \'lib/libglib-2.0.so.0\', \'lib/libglib-2.0.so.0.5000.2\', \'lib/libgmodule-2.0.la\', \'lib/libgmodule-2.0.so\', \'lib/libgmodule-2.0.so.0\', \'lib/libgmodule-2.0.so.0.5000.2\', \'lib/libgobject-2.0.la\', \'lib/libgobject-2.0.so\', \'lib/libgobject-2.0.so.0\', \'lib/libgobject-2.0.so.0.5000.2\', \'lib/libgthread-2.0.la\', \'lib/libgthread-2.0.so\', \'lib/libgthread-2.0.so.0\', \'lib/libgthread-2.0.so.0.5000.2\', \'lib/pkgconfig/gio-2.0.pc\', \'lib/pkgconfig/gio-unix-2.0.pc\', \'lib/pkgconfig/glib-2.0.pc\', \'lib/pkgconfig/gmodule-2.0.pc\', \'lib/pkgconfig/gmodule-export-2.0.pc\', \'lib/pkgconfig/gmodule-no-export-2.0.pc\', \'lib/pkgconfig/gobject-2.0.pc\', \'lib/pkgconfig/gthread-2.0.pc\', \'share/aclocal/glib-2.0.m4\', \'share/aclocal/glib-gettext.m4\', \'share/aclocal/gsettings.m4\', \'share/bash-completion/completions/gapplication\', \'share/bash-completion/completions/gdbus\', \'share/bash-completion/completions/gresource\', \'share/bash-completion/completions/gsettings\', \'share/gettext/its/gschema.its\', \'share/gettext/its/gschema.loc\', \'share/locale/af/LC_MESSAGES/glib20.mo\', \'share/locale/am/LC_MESSAGES/glib20.mo\', \'share/locale/an/LC_MESSAGES/glib20.mo\', \'share/locale/ar/LC_MESSAGES/glib20.mo\', \'share/locale/as/LC_MESSAGES/glib20.mo\', \'share/locale/ast/LC_MESSAGES/glib20.mo\', \'share/locale/az/LC_MESSAGES/glib20.mo\', \'share/locale/be/LC_MESSAGES/glib20.mo\', \'share/locale/be@latin/LC_MESSAGES/glib20.mo\', \'share/locale/bg/LC_MESSAGES/glib20.mo\', \'share/locale/bn/LC_MESSAGES/glib20.mo\', \'share/locale/bn_IN/LC_MESSAGES/glib20.mo\', \'share/locale/bs/LC_MESSAGES/glib20.mo\', \'share/locale/ca/LC_MESSAGES/glib20.mo\', \'share/locale/ca@valencia/LC_MESSAGES/glib20.mo\', \'share/locale/cs/LC_MESSAGES/glib20.mo\', \'share/locale/cy/LC_MESSAGES/glib20.mo\', \'share/locale/da/LC_MESSAGES/glib20.mo\', \'share/locale/de/LC_MESSAGES/glib20.mo\', \'share/locale/dz/LC_MESSAGES/glib20.mo\', \'share/locale/el/LC_MESSAGES/glib20.mo\', \'share/locale/en@shaw/LC_MESSAGES/glib20.mo\', \'share/locale/en_CA/LC_MESSAGES/glib20.mo\', \'share/locale/en_GB/LC_MESSAGES/glib20.mo\', \'share/locale/eo/LC_MESSAGES/glib20.mo\', \'share/locale/es/LC_MESSAGES/glib20.mo\', \'share/locale/et/LC_MESSAGES/glib20.mo\', \'share/locale/eu/LC_MESSAGES/glib20.mo\', \'share/locale/fa/LC_MESSAGES/glib20.mo\', \'share/locale/fi/LC_MESSAGES/glib20.mo\', \'share/locale/fr/LC_MESSAGES/glib20.mo\', \'share/locale/ga/LC_MESSAGES/glib20.mo\', \'share/locale/gd/LC_MESSAGES/glib20.mo\', \'share/locale/gl/LC_MESSAGES/glib20.mo\', \'share/locale/gu/LC_MESSAGES/glib20.mo\', \'share/locale/he/LC_MESSAGES/glib20.mo\', \'share/locale/hi/LC_MESSAGES/glib20.mo\', \'share/locale/hr/LC_MESSAGES/glib20.mo\', \'share/locale/hu/LC_MESSAGES/glib20.mo\', \'share/locale/hy/LC_MESSAGES/glib20.mo\', \'share/locale/id/LC_MESSAGES/glib20.mo\', \'share/locale/is/LC_MESSAGES/glib20.mo\', \'share/locale/it/LC_MESSAGES/glib20.mo\', \'share/locale/ja/LC_MESSAGES/glib20.mo\', \'share/locale/ka/LC_MESSAGES/glib20.mo\', \'share/locale/kk/LC_MESSAGES/glib20.mo\', \'share/locale/kn/LC_MESSAGES/glib20.mo\', \'share/locale/ko/LC_MESSAGES/glib20.mo\', \'share/locale/ku/LC_MESSAGES/glib20.mo\', \'share/locale/lt/LC_MESSAGES/glib20.mo\', \'share/locale/lv/LC_MESSAGES/glib20.mo\', \'share/locale/mai/LC_MESSAGES/glib20.mo\', \'share/locale/mg/LC_MESSAGES/glib20.mo\', \'share/locale/mk/LC_MESSAGES/glib20.mo\', \'share/locale/ml/LC_MESSAGES/glib20.mo\', \'share/locale/mn/LC_MESSAGES/glib20.mo\', \'share/locale/mr/LC_MESSAGES/glib20.mo\', \'share/locale/ms/LC_MESSAGES/glib20.mo\', \'share/locale/nb/LC_MESSAGES/glib20.mo\', \'share/locale/nds/LC_MESSAGES/glib20.mo\', \'share/locale/ne/LC_MESSAGES/glib20.mo\', \'share/locale/nl/LC_MESSAGES/glib20.mo\', \'share/locale/nn/LC_MESSAGES/glib20.mo\', \'share/locale/oc/LC_MESSAGES/glib20.mo\', \'share/locale/or/LC_MESSAGES/glib20.mo\', \'share/locale/pa/LC_MESSAGES/glib20.mo\', \'share/locale/pl/LC_MESSAGES/glib20.mo\', \'share/locale/ps/LC_MESSAGES/glib20.mo\', \'share/locale/pt/LC_MESSAGES/glib20.mo\', \'share/locale/pt_BR/LC_MESSAGES/glib20.mo\', \'share/locale/ro/LC_MESSAGES/glib20.mo\', \'share/locale/ru/LC_MESSAGES/glib20.mo\', \'share/locale/rw/LC_MESSAGES/glib20.mo\', \'share/locale/si/LC_MESSAGES/glib20.mo\', \'share/locale/sk/LC_MESSAGES/glib20.mo\', \'share/locale/sl/LC_MESSAGES/glib20.mo\', \'share/locale/sq/LC_MESSAGES/glib20.mo\', \'share/locale/sr/LC_MESSAGES/glib20.mo\', \'share/locale/sr@ije/LC_MESSAGES/glib20.mo\', \'share/locale/sr@latin/LC_MESSAGES/glib20.mo\', \'share/locale/sv/LC_MESSAGES/glib20.mo\', \'share/locale/ta/LC_MESSAGES/glib20.mo\', \'share/locale/te/LC_MESSAGES/glib20.mo\', \'share/locale/tg/LC_MESSAGES/glib20.mo\', \'share/locale/th/LC_MESSAGES/glib20.mo\', \'share/locale/tl/LC_MESSAGES/glib20.mo\', \'share/locale/tr/LC_MESSAGES/glib20.mo\', \'share/locale/tt/LC_MESSAGES/glib20.mo\', \'share/locale/ug/LC_MESSAGES/glib20.mo\', \'share/locale/uk/LC_MESSAGES/glib20.mo\', \'share/locale/vi/LC_MESSAGES/glib20.mo\', \'share/locale/wa/LC_MESSAGES/glib20.mo\', \'share/locale/xh/LC_MESSAGES/glib20.mo\', \'share/locale/yi/LC_MESSAGES/glib20.mo\', \'share/locale/zh_CN/LC_MESSAGES/glib20.mo\', \'share/locale/zh_HK/LC_MESSAGES/glib20.mo\', \'share/locale/zh_TW/LC_MESSAGES/glib20.mo\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/glib-2.50.2-1\', type=1))", "defaults::greenlet-0.4.11-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'77964b7189a9bd1bab0dbb4eabe98273\', name=\'greenlet\', platform=\'linux\', subdir=\'linux-64\', version=\'0.4.11\', fn=\'greenlet-0.4.11-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/greenlet-0.4.11-py36_0.tar.bz2\', files=(\'include/python3.6m/greenlet/greenlet.h\', \'lib/python3.6/site-packages/greenlet-0.4.11-py3.6.egg-info\', \'lib/python3.6/site-packages/greenlet.cpython-36m-x86_64-linux-gnu.so\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/greenlet-0.4.11-py36_0\', type=1))", "defaults::gst-plugins-base-1.8.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'gstreamer\',), license=\'LGPL\', md5=\'9c19173e0e6b8eaeadfb604000169f78\', name=\'gst-plugins-base\', platform=\'linux\', subdir=\'linux-64\', version=\'1.8.0\', fn=\'gst-plugins-base-1.8.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/gst-plugins-base-1.8.0-0.tar.bz2\', files=(\'bin/gst-device-monitor-1.0\', \'bin/gst-discoverer-1.0\', \'bin/gst-play-1.0\', \'include/gstreamer-1.0/gst/allocators/allocators.h\', \'include/gstreamer-1.0/gst/allocators/gstdmabuf.h\', \'include/gstreamer-1.0/gst/allocators/gstfdmemory.h\', \'include/gstreamer-1.0/gst/app/app.h\', \'include/gstreamer-1.0/gst/app/gstappsink.h\', \'include/gstreamer-1.0/gst/app/gstappsrc.h\', \'include/gstreamer-1.0/gst/audio/audio-channel-mixer.h\', \'include/gstreamer-1.0/gst/audio/audio-channels.h\', \'include/gstreamer-1.0/gst/audio/audio-converter.h\', \'include/gstreamer-1.0/gst/audio/audio-enumtypes.h\', \'include/gstreamer-1.0/gst/audio/audio-format.h\', \'include/gstreamer-1.0/gst/audio/audio-info.h\', \'include/gstreamer-1.0/gst/audio/audio-quantize.h\', \'include/gstreamer-1.0/gst/audio/audio.h\', \'include/gstreamer-1.0/gst/audio/gstaudiobasesink.h\', \'include/gstreamer-1.0/gst/audio/gstaudiobasesrc.h\', \'include/gstreamer-1.0/gst/audio/gstaudiocdsrc.h\', \'include/gstreamer-1.0/gst/audio/gstaudioclock.h\', \'include/gstreamer-1.0/gst/audio/gstaudiodecoder.h\', \'include/gstreamer-1.0/gst/audio/gstaudioencoder.h\', \'include/gstreamer-1.0/gst/audio/gstaudiofilter.h\', \'include/gstreamer-1.0/gst/audio/gstaudioiec61937.h\', \'include/gstreamer-1.0/gst/audio/gstaudiometa.h\', \'include/gstreamer-1.0/gst/audio/gstaudioringbuffer.h\', \'include/gstreamer-1.0/gst/audio/gstaudiosink.h\', \'include/gstreamer-1.0/gst/audio/gstaudiosrc.h\', \'include/gstreamer-1.0/gst/audio/streamvolume.h\', \'include/gstreamer-1.0/gst/fft/fft.h\', \'include/gstreamer-1.0/gst/fft/gstfft.h\', \'include/gstreamer-1.0/gst/fft/gstfftf32.h\', \'include/gstreamer-1.0/gst/fft/gstfftf64.h\', \'include/gstreamer-1.0/gst/fft/gstffts16.h\', \'include/gstreamer-1.0/gst/fft/gstffts32.h\', \'include/gstreamer-1.0/gst/pbutils/codec-utils.h\', \'include/gstreamer-1.0/gst/pbutils/descriptions.h\', \'include/gstreamer-1.0/gst/pbutils/encoding-profile.h\', \'include/gstreamer-1.0/gst/pbutils/encoding-target.h\', \'include/gstreamer-1.0/gst/pbutils/gstaudiovisualizer.h\', \'include/gstreamer-1.0/gst/pbutils/gstdiscoverer.h\', \'include/gstreamer-1.0/gst/pbutils/gstpluginsbaseversion.h\', \'include/gstreamer-1.0/gst/pbutils/install-plugins.h\', \'include/gstreamer-1.0/gst/pbutils/missing-plugins.h\', \'include/gstreamer-1.0/gst/pbutils/pbutils-enumtypes.h\', \'include/gstreamer-1.0/gst/pbutils/pbutils.h\', \'include/gstreamer-1.0/gst/riff/riff-ids.h\', \'include/gstreamer-1.0/gst/riff/riff-media.h\', \'include/gstreamer-1.0/gst/riff/riff-read.h\', \'include/gstreamer-1.0/gst/riff/riff.h\', \'include/gstreamer-1.0/gst/rtp/gstrtcpbuffer.h\', \'include/gstreamer-1.0/gst/rtp/gstrtp-enumtypes.h\', \'include/gstreamer-1.0/gst/rtp/gstrtpbaseaudiopayload.h\', \'include/gstreamer-1.0/gst/rtp/gstrtpbasedepayload.h\', \'include/gstreamer-1.0/gst/rtp/gstrtpbasepayload.h\', \'include/gstreamer-1.0/gst/rtp/gstrtpbuffer.h\', \'include/gstreamer-1.0/gst/rtp/gstrtpdefs.h\', \'include/gstreamer-1.0/gst/rtp/gstrtphdrext.h\', \'include/gstreamer-1.0/gst/rtp/gstrtppayloads.h\', \'include/gstreamer-1.0/gst/rtp/rtp.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtsp-enumtypes.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtsp.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtspconnection.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtspdefs.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtspextension.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtspmessage.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtsprange.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtsptransport.h\', \'include/gstreamer-1.0/gst/rtsp/gstrtspurl.h\', \'include/gstreamer-1.0/gst/rtsp/rtsp.h\', \'include/gstreamer-1.0/gst/sdp/gstmikey.h\', \'include/gstreamer-1.0/gst/sdp/gstsdp.h\', \'include/gstreamer-1.0/gst/sdp/gstsdpmessage.h\', \'include/gstreamer-1.0/gst/sdp/sdp.h\', \'include/gstreamer-1.0/gst/tag/gsttagdemux.h\', \'include/gstreamer-1.0/gst/tag/gsttagmux.h\', \'include/gstreamer-1.0/gst/tag/tag.h\', \'include/gstreamer-1.0/gst/tag/xmpwriter.h\', \'include/gstreamer-1.0/gst/video/colorbalance.h\', \'include/gstreamer-1.0/gst/video/colorbalancechannel.h\', \'include/gstreamer-1.0/gst/video/gstvideoaffinetransformationmeta.h\', \'include/gstreamer-1.0/gst/video/gstvideodecoder.h\', \'include/gstreamer-1.0/gst/video/gstvideoencoder.h\', \'include/gstreamer-1.0/gst/video/gstvideofilter.h\', \'include/gstreamer-1.0/gst/video/gstvideometa.h\', \'include/gstreamer-1.0/gst/video/gstvideopool.h\', \'include/gstreamer-1.0/gst/video/gstvideosink.h\', \'include/gstreamer-1.0/gst/video/gstvideoutils.h\', \'include/gstreamer-1.0/gst/video/navigation.h\', \'include/gstreamer-1.0/gst/video/video-blend.h\', \'include/gstreamer-1.0/gst/video/video-chroma.h\', \'include/gstreamer-1.0/gst/video/video-color.h\', \'include/gstreamer-1.0/gst/video/video-converter.h\', \'include/gstreamer-1.0/gst/video/video-dither.h\', \'include/gstreamer-1.0/gst/video/video-enumtypes.h\', \'include/gstreamer-1.0/gst/video/video-event.h\', \'include/gstreamer-1.0/gst/video/video-format.h\', \'include/gstreamer-1.0/gst/video/video-frame.h\', \'include/gstreamer-1.0/gst/video/video-info.h\', \'include/gstreamer-1.0/gst/video/video-multiview.h\', \'include/gstreamer-1.0/gst/video/video-overlay-composition.h\', \'include/gstreamer-1.0/gst/video/video-resampler.h\', \'include/gstreamer-1.0/gst/video/video-scaler.h\', \'include/gstreamer-1.0/gst/video/video-tile.h\', \'include/gstreamer-1.0/gst/video/video.h\', \'include/gstreamer-1.0/gst/video/videoorientation.h\', \'include/gstreamer-1.0/gst/video/videooverlay.h\', \'lib/gstreamer-1.0/libgstadder.la\', \'lib/gstreamer-1.0/libgstadder.so\', \'lib/gstreamer-1.0/libgstapp.la\', \'lib/gstreamer-1.0/libgstapp.so\', \'lib/gstreamer-1.0/libgstaudioconvert.la\', \'lib/gstreamer-1.0/libgstaudioconvert.so\', \'lib/gstreamer-1.0/libgstaudiorate.la\', \'lib/gstreamer-1.0/libgstaudiorate.so\', \'lib/gstreamer-1.0/libgstaudioresample.la\', \'lib/gstreamer-1.0/libgstaudioresample.so\', \'lib/gstreamer-1.0/libgstaudiotestsrc.la\', \'lib/gstreamer-1.0/libgstaudiotestsrc.so\', \'lib/gstreamer-1.0/libgstencodebin.la\', \'lib/gstreamer-1.0/libgstencodebin.so\', \'lib/gstreamer-1.0/libgstgio.la\', \'lib/gstreamer-1.0/libgstgio.so\', \'lib/gstreamer-1.0/libgstplayback.la\', \'lib/gstreamer-1.0/libgstplayback.so\', \'lib/gstreamer-1.0/libgstsubparse.la\', \'lib/gstreamer-1.0/libgstsubparse.so\', \'lib/gstreamer-1.0/libgsttcp.la\', \'lib/gstreamer-1.0/libgsttcp.so\', \'lib/gstreamer-1.0/libgsttypefindfunctions.la\', \'lib/gstreamer-1.0/libgsttypefindfunctions.so\', \'lib/gstreamer-1.0/libgstvideoconvert.la\', \'lib/gstreamer-1.0/libgstvideoconvert.so\', \'lib/gstreamer-1.0/libgstvideorate.la\', \'lib/gstreamer-1.0/libgstvideorate.so\', \'lib/gstreamer-1.0/libgstvideoscale.la\', \'lib/gstreamer-1.0/libgstvideoscale.so\', \'lib/gstreamer-1.0/libgstvideotestsrc.la\', \'lib/gstreamer-1.0/libgstvideotestsrc.so\', \'lib/gstreamer-1.0/libgstvolume.la\', \'lib/gstreamer-1.0/libgstvolume.so\', \'lib/gstreamer-1.0/libgstximagesink.la\', \'lib/gstreamer-1.0/libgstximagesink.so\', \'lib/libgstallocators-1.0.la\', \'lib/libgstallocators-1.0.so\', \'lib/libgstallocators-1.0.so.0\', \'lib/libgstallocators-1.0.so.0.800.0\', \'lib/libgstapp-1.0.la\', \'lib/libgstapp-1.0.so\', \'lib/libgstapp-1.0.so.0\', \'lib/libgstapp-1.0.so.0.800.0\', \'lib/libgstaudio-1.0.la\', \'lib/libgstaudio-1.0.so\', \'lib/libgstaudio-1.0.so.0\', \'lib/libgstaudio-1.0.so.0.800.0\', \'lib/libgstfft-1.0.la\', \'lib/libgstfft-1.0.so\', \'lib/libgstfft-1.0.so.0\', \'lib/libgstfft-1.0.so.0.800.0\', \'lib/libgstpbutils-1.0.la\', \'lib/libgstpbutils-1.0.so\', \'lib/libgstpbutils-1.0.so.0\', \'lib/libgstpbutils-1.0.so.0.800.0\', \'lib/libgstriff-1.0.la\', \'lib/libgstriff-1.0.so\', \'lib/libgstriff-1.0.so.0\', \'lib/libgstriff-1.0.so.0.800.0\', \'lib/libgstrtp-1.0.la\', \'lib/libgstrtp-1.0.so\', \'lib/libgstrtp-1.0.so.0\', \'lib/libgstrtp-1.0.so.0.800.0\', \'lib/libgstrtsp-1.0.la\', \'lib/libgstrtsp-1.0.so\', \'lib/libgstrtsp-1.0.so.0\', \'lib/libgstrtsp-1.0.so.0.800.0\', \'lib/libgstsdp-1.0.la\', \'lib/libgstsdp-1.0.so\', \'lib/libgstsdp-1.0.so.0\', \'lib/libgstsdp-1.0.so.0.800.0\', \'lib/libgsttag-1.0.la\', \'lib/libgsttag-1.0.so\', \'lib/libgsttag-1.0.so.0\', \'lib/libgsttag-1.0.so.0.800.0\', \'lib/libgstvideo-1.0.la\', \'lib/libgstvideo-1.0.so\', \'lib/libgstvideo-1.0.so.0\', \'lib/libgstvideo-1.0.so.0.800.0\', \'lib/pkgconfig/gstreamer-allocators-1.0.pc\', \'lib/pkgconfig/gstreamer-app-1.0.pc\', \'lib/pkgconfig/gstreamer-audio-1.0.pc\', \'lib/pkgconfig/gstreamer-fft-1.0.pc\', \'lib/pkgconfig/gstreamer-pbutils-1.0.pc\', \'lib/pkgconfig/gstreamer-plugins-base-1.0.pc\', \'lib/pkgconfig/gstreamer-riff-1.0.pc\', \'lib/pkgconfig/gstreamer-rtp-1.0.pc\', \'lib/pkgconfig/gstreamer-rtsp-1.0.pc\', \'lib/pkgconfig/gstreamer-sdp-1.0.pc\', \'lib/pkgconfig/gstreamer-tag-1.0.pc\', \'lib/pkgconfig/gstreamer-video-1.0.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/gst-plugins-base-1.8.0-0\', type=1))", "defaults::gstreamer-1.8.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'glib\',), license=\'LGPL\', md5=\'5a5e2aff3d6bd7f4d69a60140ed0a571\', name=\'gstreamer\', platform=\'linux\', subdir=\'linux-64\', version=\'1.8.0\', fn=\'gstreamer-1.8.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/gstreamer-1.8.0-0.tar.bz2\', files=(\'bin/gst-inspect-1.0\', \'bin/gst-launch-1.0\', \'bin/gst-stats-1.0\', \'bin/gst-typefind-1.0\', \'include/gstreamer-1.0/gst/base/base.h\', \'include/gstreamer-1.0/gst/base/gstadapter.h\', \'include/gstreamer-1.0/gst/base/gstbaseparse.h\', \'include/gstreamer-1.0/gst/base/gstbasesink.h\', \'include/gstreamer-1.0/gst/base/gstbasesrc.h\', \'include/gstreamer-1.0/gst/base/gstbasetransform.h\', \'include/gstreamer-1.0/gst/base/gstbitreader.h\', \'include/gstreamer-1.0/gst/base/gstbytereader.h\', \'include/gstreamer-1.0/gst/base/gstbytewriter.h\', \'include/gstreamer-1.0/gst/base/gstcollectpads.h\', \'include/gstreamer-1.0/gst/base/gstdataqueue.h\', \'include/gstreamer-1.0/gst/base/gstflowcombiner.h\', \'include/gstreamer-1.0/gst/base/gstpushsrc.h\', \'include/gstreamer-1.0/gst/base/gstqueuearray.h\', \'include/gstreamer-1.0/gst/base/gsttypefindhelper.h\', \'include/gstreamer-1.0/gst/check/check.h\', \'include/gstreamer-1.0/gst/check/gstbufferstraw.h\', \'include/gstreamer-1.0/gst/check/gstcheck.h\', \'include/gstreamer-1.0/gst/check/gstconsistencychecker.h\', \'include/gstreamer-1.0/gst/check/gstharness.h\', \'include/gstreamer-1.0/gst/check/gsttestclock.h\', \'include/gstreamer-1.0/gst/check/internal-check.h\', \'include/gstreamer-1.0/gst/controller/controller.h\', \'include/gstreamer-1.0/gst/controller/gstargbcontrolbinding.h\', \'include/gstreamer-1.0/gst/controller/gstdirectcontrolbinding.h\', \'include/gstreamer-1.0/gst/controller/gstinterpolationcontrolsource.h\', \'include/gstreamer-1.0/gst/controller/gstlfocontrolsource.h\', \'include/gstreamer-1.0/gst/controller/gsttimedvaluecontrolsource.h\', \'include/gstreamer-1.0/gst/controller/gsttriggercontrolsource.h\', \'include/gstreamer-1.0/gst/glib-compat.h\', \'include/gstreamer-1.0/gst/gst.h\', \'include/gstreamer-1.0/gst/gstallocator.h\', \'include/gstreamer-1.0/gst/gstatomicqueue.h\', \'include/gstreamer-1.0/gst/gstbin.h\', \'include/gstreamer-1.0/gst/gstbuffer.h\', \'include/gstreamer-1.0/gst/gstbufferlist.h\', \'include/gstreamer-1.0/gst/gstbufferpool.h\', \'include/gstreamer-1.0/gst/gstbus.h\', \'include/gstreamer-1.0/gst/gstcaps.h\', \'include/gstreamer-1.0/gst/gstcapsfeatures.h\', \'include/gstreamer-1.0/gst/gstchildproxy.h\', \'include/gstreamer-1.0/gst/gstclock.h\', \'include/gstreamer-1.0/gst/gstcompat.h\', \'include/gstreamer-1.0/gst/gstcontext.h\', \'include/gstreamer-1.0/gst/gstcontrolbinding.h\', \'include/gstreamer-1.0/gst/gstcontrolsource.h\', \'include/gstreamer-1.0/gst/gstdatetime.h\', \'include/gstreamer-1.0/gst/gstdebugutils.h\', \'include/gstreamer-1.0/gst/gstdevice.h\', \'include/gstreamer-1.0/gst/gstdevicemonitor.h\', \'include/gstreamer-1.0/gst/gstdeviceprovider.h\', \'include/gstreamer-1.0/gst/gstdeviceproviderfactory.h\', \'include/gstreamer-1.0/gst/gstelement.h\', \'include/gstreamer-1.0/gst/gstelementfactory.h\', \'include/gstreamer-1.0/gst/gstelementmetadata.h\', \'include/gstreamer-1.0/gst/gstenumtypes.h\', \'include/gstreamer-1.0/gst/gsterror.h\', \'include/gstreamer-1.0/gst/gstevent.h\', \'include/gstreamer-1.0/gst/gstformat.h\', \'include/gstreamer-1.0/gst/gstghostpad.h\', \'include/gstreamer-1.0/gst/gstinfo.h\', \'include/gstreamer-1.0/gst/gstiterator.h\', \'include/gstreamer-1.0/gst/gstmacros.h\', \'include/gstreamer-1.0/gst/gstmemory.h\', \'include/gstreamer-1.0/gst/gstmessage.h\', \'include/gstreamer-1.0/gst/gstmeta.h\', \'include/gstreamer-1.0/gst/gstminiobject.h\', \'include/gstreamer-1.0/gst/gstobject.h\', \'include/gstreamer-1.0/gst/gstpad.h\', \'include/gstreamer-1.0/gst/gstpadtemplate.h\', \'include/gstreamer-1.0/gst/gstparamspecs.h\', \'include/gstreamer-1.0/gst/gstparse.h\', \'include/gstreamer-1.0/gst/gstpipeline.h\', \'include/gstreamer-1.0/gst/gstplugin.h\', \'include/gstreamer-1.0/gst/gstpluginfeature.h\', \'include/gstreamer-1.0/gst/gstpoll.h\', \'include/gstreamer-1.0/gst/gstpreset.h\', \'include/gstreamer-1.0/gst/gstprotection.h\', \'include/gstreamer-1.0/gst/gstquery.h\', \'include/gstreamer-1.0/gst/gstregistry.h\', \'include/gstreamer-1.0/gst/gstsample.h\', \'include/gstreamer-1.0/gst/gstsegment.h\', \'include/gstreamer-1.0/gst/gststructure.h\', \'include/gstreamer-1.0/gst/gstsystemclock.h\', \'include/gstreamer-1.0/gst/gsttaglist.h\', \'include/gstreamer-1.0/gst/gsttagsetter.h\', \'include/gstreamer-1.0/gst/gsttask.h\', \'include/gstreamer-1.0/gst/gsttaskpool.h\', \'include/gstreamer-1.0/gst/gsttoc.h\', \'include/gstreamer-1.0/gst/gsttocsetter.h\', \'include/gstreamer-1.0/gst/gsttracer.h\', \'include/gstreamer-1.0/gst/gsttracerfactory.h\', \'include/gstreamer-1.0/gst/gsttracerrecord.h\', \'include/gstreamer-1.0/gst/gsttypefind.h\', \'include/gstreamer-1.0/gst/gsttypefindfactory.h\', \'include/gstreamer-1.0/gst/gsturi.h\', \'include/gstreamer-1.0/gst/gstutils.h\', \'include/gstreamer-1.0/gst/gstvalue.h\', \'include/gstreamer-1.0/gst/gstversion.h\', \'include/gstreamer-1.0/gst/math-compat.h\', \'include/gstreamer-1.0/gst/net/gstnet.h\', \'include/gstreamer-1.0/gst/net/gstnetaddressmeta.h\', \'include/gstreamer-1.0/gst/net/gstnetclientclock.h\', \'include/gstreamer-1.0/gst/net/gstnetcontrolmessagemeta.h\', \'include/gstreamer-1.0/gst/net/gstnettimepacket.h\', \'include/gstreamer-1.0/gst/net/gstnettimeprovider.h\', \'include/gstreamer-1.0/gst/net/gstptpclock.h\', \'include/gstreamer-1.0/gst/net/net.h\', \'lib/gstreamer-1.0/include/gst/gstconfig.h\', \'lib/gstreamer-1.0/libgstcoreelements.la\', \'lib/gstreamer-1.0/libgstcoreelements.so\', \'lib/gstreamer-1.0/libgstcoretracers.la\', \'lib/gstreamer-1.0/libgstcoretracers.so\', \'lib/libgstbase-1.0.la\', \'lib/libgstbase-1.0.so\', \'lib/libgstbase-1.0.so.0\', \'lib/libgstbase-1.0.so.0.800.0\', \'lib/libgstcheck-1.0.la\', \'lib/libgstcheck-1.0.so\', \'lib/libgstcheck-1.0.so.0\', \'lib/libgstcheck-1.0.so.0.800.0\', \'lib/libgstcontroller-1.0.la\', \'lib/libgstcontroller-1.0.so\', \'lib/libgstcontroller-1.0.so.0\', \'lib/libgstcontroller-1.0.so.0.800.0\', \'lib/libgstnet-1.0.la\', \'lib/libgstnet-1.0.so\', \'lib/libgstnet-1.0.so.0\', \'lib/libgstnet-1.0.so.0.800.0\', \'lib/libgstreamer-1.0.la\', \'lib/libgstreamer-1.0.so\', \'lib/libgstreamer-1.0.so.0\', \'lib/libgstreamer-1.0.so.0.800.0\', \'lib/pkgconfig/gstreamer-1.0.pc\', \'lib/pkgconfig/gstreamer-base-1.0.pc\', \'lib/pkgconfig/gstreamer-check-1.0.pc\', \'lib/pkgconfig/gstreamer-controller-1.0.pc\', \'lib/pkgconfig/gstreamer-net-1.0.pc\', \'libexec/gstreamer-1.0/gst-plugin-scanner\', \'libexec/gstreamer-1.0/gst-ptp-helper\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/gstreamer-1.8.0-0\', type=1))", "defaults::h5py-2.6.0-np111py36_2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_2\', build_number=2, depends=(\'hdf5 1.8.17\', \'numpy 1.11*\', \'python 3.6*\', \'six\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'b939cb6ffa0630ad16872c29c7b8200e\', name=\'h5py\', platform=\'linux\', subdir=\'linux-64\', version=\'2.6.0\', fn=\'h5py-2.6.0-np111py36_2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/h5py-2.6.0-np111py36_2.tar.bz2\', files=(\'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/native_libs.txt\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/requires.txt\', \'lib/python3.6/site-packages/h5py-2.6.0-py3.6-linux-x86_64.egg-info/top_level.txt\', \'lib/python3.6/site-packages/h5py/__init__.py\', \'lib/python3.6/site-packages/h5py/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/_conv.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/_errors.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/_proxy.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/defs.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5a.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5ac.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5d.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5ds.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5f.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5fd.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5g.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5i.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5l.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5o.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5p.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5r.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5s.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5t.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/h5z.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/highlevel.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/ipy_completer.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_conv.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/_conv.py\', \'lib/python3.6/site-packages/h5py/_errors.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/_errors.py\', \'lib/python3.6/site-packages/h5py/_hl/__init__.py\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/attrs.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/dataset.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/datatype.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/dims.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/files.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/group.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/selections.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/__pycache__/selections2.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/_hl/attrs.py\', \'lib/python3.6/site-packages/h5py/_hl/base.py\', \'lib/python3.6/site-packages/h5py/_hl/dataset.py\', \'lib/python3.6/site-packages/h5py/_hl/datatype.py\', \'lib/python3.6/site-packages/h5py/_hl/dims.py\', \'lib/python3.6/site-packages/h5py/_hl/files.py\', \'lib/python3.6/site-packages/h5py/_hl/filters.py\', \'lib/python3.6/site-packages/h5py/_hl/group.py\', \'lib/python3.6/site-packages/h5py/_hl/selections.py\', \'lib/python3.6/site-packages/h5py/_hl/selections2.py\', \'lib/python3.6/site-packages/h5py/_objects.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/_objects.py\', \'lib/python3.6/site-packages/h5py/_proxy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/_proxy.py\', \'lib/python3.6/site-packages/h5py/defs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/defs.py\', \'lib/python3.6/site-packages/h5py/h5.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5.py\', \'lib/python3.6/site-packages/h5py/h5a.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5a.py\', \'lib/python3.6/site-packages/h5py/h5ac.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5ac.py\', \'lib/python3.6/site-packages/h5py/h5d.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5d.py\', \'lib/python3.6/site-packages/h5py/h5ds.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5ds.py\', \'lib/python3.6/site-packages/h5py/h5f.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5f.py\', \'lib/python3.6/site-packages/h5py/h5fd.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5fd.py\', \'lib/python3.6/site-packages/h5py/h5g.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5g.py\', \'lib/python3.6/site-packages/h5py/h5i.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5i.py\', \'lib/python3.6/site-packages/h5py/h5l.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5l.py\', \'lib/python3.6/site-packages/h5py/h5o.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5o.py\', \'lib/python3.6/site-packages/h5py/h5p.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5p.py\', \'lib/python3.6/site-packages/h5py/h5r.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5r.py\', \'lib/python3.6/site-packages/h5py/h5s.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5s.py\', \'lib/python3.6/site-packages/h5py/h5t.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5t.py\', \'lib/python3.6/site-packages/h5py/h5z.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/h5z.py\', \'lib/python3.6/site-packages/h5py/highlevel.py\', \'lib/python3.6/site-packages/h5py/ipy_completer.py\', \'lib/python3.6/site-packages/h5py/tests/__init__.py\', \'lib/python3.6/site-packages/h5py/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/common.py\', \'lib/python3.6/site-packages/h5py/tests/hl/__init__.py\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_attribute_create.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_dataset_getitem.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_dataset_swmr.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_datatype.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_dims_dimensionproxy.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_file.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/__pycache__/test_threads.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/hl/test_attribute_create.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_dataset_getitem.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_dataset_swmr.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_datatype.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_dims_dimensionproxy.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_file.py\', \'lib/python3.6/site-packages/h5py/tests/hl/test_threads.py\', \'lib/python3.6/site-packages/h5py/tests/old/__init__.py\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_attrs.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_attrs_data.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_dataset.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_datatype.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_dimension_scales.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_file.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_group.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_h5.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_h5f.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_h5p.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_h5t.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_selections.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/__pycache__/test_slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/h5py/tests/old/common.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_attrs.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_attrs_data.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_base.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_dataset.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_datatype.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_dimension_scales.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_file.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_group.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_h5.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_h5f.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_h5p.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_h5t.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_objects.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_selections.py\', \'lib/python3.6/site-packages/h5py/tests/old/test_slicing.py\', \'lib/python3.6/site-packages/h5py/utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/h5py/utils.py\', \'lib/python3.6/site-packages/h5py/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/h5py-2.6.0-np111py36_2\', type=1))", "defaults::harfbuzz-0.9.39-2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'2\', build_number=2, depends=(\'cairo 1.14.*\', \'freetype 2.5.*\', \'glib >=2.33\'), license=\'MIT\', md5=\'db418998fca943b8a5ce57b79497db8a\', name=\'harfbuzz\', platform=\'linux\', subdir=\'linux-64\', version=\'0.9.39\', fn=\'harfbuzz-0.9.39-2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/harfbuzz-0.9.39-2.tar.bz2\', files=(\'bin/hb-ot-shape-closure\', \'bin/hb-shape\', \'bin/hb-view\', \'include/harfbuzz/hb-blob.h\', \'include/harfbuzz/hb-buffer.h\', \'include/harfbuzz/hb-common.h\', \'include/harfbuzz/hb-deprecated.h\', \'include/harfbuzz/hb-face.h\', \'include/harfbuzz/hb-font.h\', \'include/harfbuzz/hb-ft.h\', \'include/harfbuzz/hb-glib.h\', \'include/harfbuzz/hb-icu.h\', \'include/harfbuzz/hb-ot-font.h\', \'include/harfbuzz/hb-ot-layout.h\', \'include/harfbuzz/hb-ot-shape.h\', \'include/harfbuzz/hb-ot-tag.h\', \'include/harfbuzz/hb-ot.h\', \'include/harfbuzz/hb-set.h\', \'include/harfbuzz/hb-shape-plan.h\', \'include/harfbuzz/hb-shape.h\', \'include/harfbuzz/hb-unicode.h\', \'include/harfbuzz/hb-version.h\', \'include/harfbuzz/hb.h\', \'include/hb-ft.h\', \'include/hb-glib.h\', \'lib/libharfbuzz-icu.la\', \'lib/libharfbuzz-icu.so\', \'lib/libharfbuzz-icu.so.0\', \'lib/libharfbuzz-icu.so.0.939.0\', \'lib/libharfbuzz.la\', \'lib/libharfbuzz.so\', \'lib/libharfbuzz.so.0\', \'lib/libharfbuzz.so.0.939.0\', \'lib/pkgconfig/harfbuzz-icu.pc\', \'lib/pkgconfig/harfbuzz.pc\', \'share/gtk-doc/html/harfbuzz/annotation-glossary.html\', \'share/gtk-doc/html/harfbuzz/api-index-full.html\', \'share/gtk-doc/html/harfbuzz/ch01.html\', \'share/gtk-doc/html/harfbuzz/deprecated-api-index.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-blob.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-buffer.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-common.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-coretext.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-deprecated.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-face.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-font.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-ft.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-glib.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-gobject.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-graphite2.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-icu.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-layout.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot-tag.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-ot.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-set.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape-plan.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-shape.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-unicode.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-uniscribe.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb-version.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz-hb.html\', \'share/gtk-doc/html/harfbuzz/harfbuzz.devhelp2\', \'share/gtk-doc/html/harfbuzz/home.png\', \'share/gtk-doc/html/harfbuzz/index.html\', \'share/gtk-doc/html/harfbuzz/index.sgml\', \'share/gtk-doc/html/harfbuzz/left-insensitive.png\', \'share/gtk-doc/html/harfbuzz/left.png\', \'share/gtk-doc/html/harfbuzz/object-tree.html\', \'share/gtk-doc/html/harfbuzz/right-insensitive.png\', \'share/gtk-doc/html/harfbuzz/right.png\', \'share/gtk-doc/html/harfbuzz/style.css\', \'share/gtk-doc/html/harfbuzz/up-insensitive.png\', \'share/gtk-doc/html/harfbuzz/up.png\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/harfbuzz-0.9.39-2\', type=1))", "defaults::hdf5-1.8.17-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(\'zlib 1.2.*\',), license=\'BSD-like\', license_family=\'BSD\', md5=\'a10478d5543c24f8260d6b777c7f4bc7\', name=\'hdf5\', platform=\'linux\', subdir=\'linux-64\', version=\'1.8.17\', fn=\'hdf5-1.8.17-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/hdf5-1.8.17-1.tar.bz2\', files=(\'bin/gif2h5\', \'bin/h52gif\', \'bin/h5c++\', \'bin/h5cc\', \'bin/h5copy\', \'bin/h5debug\', \'bin/h5diff\', \'bin/h5dump\', \'bin/h5import\', \'bin/h5jam\', \'bin/h5ls\', \'bin/h5mkgrp\', \'bin/h5perf_serial\', \'bin/h5redeploy\', \'bin/h5repack\', \'bin/h5repart\', \'bin/h5stat\', \'bin/h5unjam\', \'include/H5ACpublic.h\', \'include/H5AbstractDs.h\', \'include/H5Apublic.h\', \'include/H5ArrayType.h\', \'include/H5AtomType.h\', \'include/H5Attribute.h\', \'include/H5Classes.h\', \'include/H5CommonFG.h\', \'include/H5CompType.h\', \'include/H5Cpp.h\', \'include/H5CppDoc.h\', \'include/H5Cpublic.h\', \'include/H5DOpublic.h\', \'include/H5DSpublic.h\', \'include/H5DataSet.h\', \'include/H5DataSpace.h\', \'include/H5DataType.h\', \'include/H5DcreatProp.h\', \'include/H5Dpublic.h\', \'include/H5DxferProp.h\', \'include/H5EnumType.h\', \'include/H5Epubgen.h\', \'include/H5Epublic.h\', \'include/H5Exception.h\', \'include/H5FDcore.h\', \'include/H5FDdirect.h\', \'include/H5FDfamily.h\', \'include/H5FDlog.h\', \'include/H5FDmpi.h\', \'include/H5FDmpio.h\', \'include/H5FDmulti.h\', \'include/H5FDpublic.h\', \'include/H5FDsec2.h\', \'include/H5FDstdio.h\', \'include/H5FaccProp.h\', \'include/H5FcreatProp.h\', \'include/H5File.h\', \'include/H5FloatType.h\', \'include/H5Fpublic.h\', \'include/H5Gpublic.h\', \'include/H5Group.h\', \'include/H5IMpublic.h\', \'include/H5IdComponent.h\', \'include/H5Include.h\', \'include/H5IntType.h\', \'include/H5Ipublic.h\', \'include/H5LTpublic.h\', \'include/H5Library.h\', \'include/H5Location.h\', \'include/H5Lpublic.h\', \'include/H5MMpublic.h\', \'include/H5Object.h\', \'include/H5OcreatProp.h\', \'include/H5Opublic.h\', \'include/H5PLextern.h\', \'include/H5PLpublic.h\', \'include/H5PTpublic.h\', \'include/H5PacketTable.h\', \'include/H5Ppublic.h\', \'include/H5PredType.h\', \'include/H5PropList.h\', \'include/H5Rpublic.h\', \'include/H5Spublic.h\', \'include/H5StrType.h\', \'include/H5TBpublic.h\', \'include/H5Tpublic.h\', \'include/H5VarLenType.h\', \'include/H5Zpublic.h\', \'include/H5api_adpt.h\', \'include/H5overflow.h\', \'include/H5pubconf.h\', \'include/H5public.h\', \'include/H5version.h\', \'include/hdf5.h\', \'include/hdf5_hl.h\', \'lib/libhdf5.la\', \'lib/libhdf5.settings\', \'lib/libhdf5.so\', \'lib/libhdf5.so.10\', \'lib/libhdf5.so.10.2.0\', \'lib/libhdf5_cpp.la\', \'lib/libhdf5_cpp.so\', \'lib/libhdf5_cpp.so.12\', \'lib/libhdf5_cpp.so.12.0.0\', \'lib/libhdf5_hl.la\', \'lib/libhdf5_hl.so\', \'lib/libhdf5_hl.so.10\', \'lib/libhdf5_hl.so.10.1.0\', \'lib/libhdf5_hl_cpp.la\', \'lib/libhdf5_hl_cpp.so\', \'lib/libhdf5_hl_cpp.so.11\', \'lib/libhdf5_hl_cpp.so.11.1.0\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/hdf5-1.8.17-1\', type=1))", "defaults::heapdict-1.0.0-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'82a336750b583c2122da29f7e5d21e2d\', name=\'heapdict\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.0\', fn=\'heapdict-1.0.0-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/heapdict-1.0.0-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/HeapDict-1.0.0-py3.6.egg-info\', \'lib/python3.6/site-packages/__pycache__/heapdict.cpython-36.pyc\', \'lib/python3.6/site-packages/heapdict.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/heapdict-1.0.0-py36_1\', type=1))", "defaults::icu-54.1-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'MIT\', md5=\'c1d5cbeb7127a672211dd56b28603a8f\', name=\'icu\', platform=\'linux\', requires=(), version=\'54.1\', fn=\'icu-54.1-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/icu-54.1-0.tar.bz2\', files=(\'bin/derb\', \'bin/genbrk\', \'bin/gencfu\', \'bin/gencnval\', \'bin/gendict\', \'bin/genrb\', \'bin/icu-config\', \'bin/icuinfo\', \'bin/makeconv\', \'bin/pkgdata\', \'bin/uconv\', \'include/layout/LEFontInstance.h\', \'include/layout/LEGlyphFilter.h\', \'include/layout/LEGlyphStorage.h\', \'include/layout/LEInsertionList.h\', \'include/layout/LELanguages.h\', \'include/layout/LEScripts.h\', \'include/layout/LESwaps.h\', \'include/layout/LETableReference.h\', \'include/layout/LETypes.h\', \'include/layout/LayoutEngine.h\', \'include/layout/ParagraphLayout.h\', \'include/layout/RunArrays.h\', \'include/layout/loengine.h\', \'include/layout/playout.h\', \'include/layout/plruns.h\', \'include/unicode/alphaindex.h\', \'include/unicode/appendable.h\', \'include/unicode/basictz.h\', \'include/unicode/brkiter.h\', \'include/unicode/bytestream.h\', \'include/unicode/bytestrie.h\', \'include/unicode/bytestriebuilder.h\', \'include/unicode/calendar.h\', \'include/unicode/caniter.h\', \'include/unicode/chariter.h\', \'include/unicode/choicfmt.h\', \'include/unicode/coleitr.h\', \'include/unicode/coll.h\', \'include/unicode/compactdecimalformat.h\', \'include/unicode/curramt.h\', \'include/unicode/currpinf.h\', \'include/unicode/currunit.h\', \'include/unicode/datefmt.h\', \'include/unicode/dbbi.h\', \'include/unicode/dcfmtsym.h\', \'include/unicode/decimfmt.h\', \'include/unicode/docmain.h\', \'include/unicode/dtfmtsym.h\', \'include/unicode/dtintrv.h\', \'include/unicode/dtitvfmt.h\', \'include/unicode/dtitvinf.h\', \'include/unicode/dtptngen.h\', \'include/unicode/dtrule.h\', \'include/unicode/enumset.h\', \'include/unicode/errorcode.h\', \'include/unicode/fieldpos.h\', \'include/unicode/filteredbrk.h\', \'include/unicode/fmtable.h\', \'include/unicode/format.h\', \'include/unicode/fpositer.h\', \'include/unicode/gender.h\', \'include/unicode/gregocal.h\', \'include/unicode/icudataver.h\', \'include/unicode/icuplug.h\', \'include/unicode/idna.h\', \'include/unicode/listformatter.h\', \'include/unicode/localpointer.h\', \'include/unicode/locdspnm.h\', \'include/unicode/locid.h\', \'include/unicode/measfmt.h\', \'include/unicode/measunit.h\', \'include/unicode/measure.h\', \'include/unicode/messagepattern.h\', \'include/unicode/msgfmt.h\', \'include/unicode/normalizer2.h\', \'include/unicode/normlzr.h\', \'include/unicode/numfmt.h\', \'include/unicode/numsys.h\', \'include/unicode/parseerr.h\', \'include/unicode/parsepos.h\', \'include/unicode/platform.h\', \'include/unicode/plurfmt.h\', \'include/unicode/plurrule.h\', \'include/unicode/ptypes.h\', \'include/unicode/putil.h\', \'include/unicode/rbbi.h\', \'include/unicode/rbnf.h\', \'include/unicode/rbtz.h\', \'include/unicode/regex.h\', \'include/unicode/region.h\', \'include/unicode/reldatefmt.h\', \'include/unicode/rep.h\', \'include/unicode/resbund.h\', \'include/unicode/schriter.h\', \'include/unicode/scientificformathelper.h\', \'include/unicode/search.h\', \'include/unicode/selfmt.h\', \'include/unicode/simpletz.h\', \'include/unicode/smpdtfmt.h\', \'include/unicode/sortkey.h\', \'include/unicode/std_string.h\', \'include/unicode/strenum.h\', \'include/unicode/stringpiece.h\', \'include/unicode/stringtriebuilder.h\', \'include/unicode/stsearch.h\', \'include/unicode/symtable.h\', \'include/unicode/tblcoll.h\', \'include/unicode/timezone.h\', \'include/unicode/tmunit.h\', \'include/unicode/tmutamt.h\', \'include/unicode/tmutfmt.h\', \'include/unicode/translit.h\', \'include/unicode/tzfmt.h\', \'include/unicode/tznames.h\', \'include/unicode/tzrule.h\', \'include/unicode/tztrans.h\', \'include/unicode/ubidi.h\', \'include/unicode/ubrk.h\', \'include/unicode/ucal.h\', \'include/unicode/ucasemap.h\', \'include/unicode/ucat.h\', \'include/unicode/uchar.h\', \'include/unicode/ucharstrie.h\', \'include/unicode/ucharstriebuilder.h\', \'include/unicode/uchriter.h\', \'include/unicode/uclean.h\', \'include/unicode/ucnv.h\', \'include/unicode/ucnv_cb.h\', \'include/unicode/ucnv_err.h\', \'include/unicode/ucnvsel.h\', \'include/unicode/ucol.h\', \'include/unicode/ucoleitr.h\', \'include/unicode/uconfig.h\', \'include/unicode/ucsdet.h\', \'include/unicode/ucurr.h\', \'include/unicode/udat.h\', \'include/unicode/udata.h\', \'include/unicode/udateintervalformat.h\', \'include/unicode/udatpg.h\', \'include/unicode/udisplaycontext.h\', \'include/unicode/uenum.h\', \'include/unicode/uformattable.h\', \'include/unicode/ugender.h\', \'include/unicode/uidna.h\', \'include/unicode/uiter.h\', \'include/unicode/uldnames.h\', \'include/unicode/uloc.h\', \'include/unicode/ulocdata.h\', \'include/unicode/umachine.h\', \'include/unicode/umisc.h\', \'include/unicode/umsg.h\', \'include/unicode/unifilt.h\', \'include/unicode/unifunct.h\', \'include/unicode/unimatch.h\', \'include/unicode/unirepl.h\', \'include/unicode/uniset.h\', \'include/unicode/unistr.h\', \'include/unicode/unorm.h\', \'include/unicode/unorm2.h\', \'include/unicode/unum.h\', \'include/unicode/unumsys.h\', \'include/unicode/uobject.h\', \'include/unicode/upluralrules.h\', \'include/unicode/uregex.h\', \'include/unicode/uregion.h\', \'include/unicode/urename.h\', \'include/unicode/urep.h\', \'include/unicode/ures.h\', \'include/unicode/uscript.h\', \'include/unicode/usearch.h\', \'include/unicode/uset.h\', \'include/unicode/usetiter.h\', \'include/unicode/ushape.h\', \'include/unicode/uspoof.h\', \'include/unicode/usprep.h\', \'include/unicode/ustdio.h\', \'include/unicode/ustream.h\', \'include/unicode/ustring.h\', \'include/unicode/ustringtrie.h\', \'include/unicode/utext.h\', \'include/unicode/utf.h\', \'include/unicode/utf16.h\', \'include/unicode/utf32.h\', \'include/unicode/utf8.h\', \'include/unicode/utf_old.h\', \'include/unicode/utmscale.h\', \'include/unicode/utrace.h\', \'include/unicode/utrans.h\', \'include/unicode/utypes.h\', \'include/unicode/uvernum.h\', \'include/unicode/uversion.h\', \'include/unicode/vtzone.h\', \'lib/icu/54.1/Makefile.inc\', \'lib/icu/54.1/pkgdata.inc\', \'lib/icu/Makefile.inc\', \'lib/icu/current\', \'lib/icu/pkgdata.inc\', \'lib/libicudata.so\', \'lib/libicudata.so.54\', \'lib/libicudata.so.54.1\', \'lib/libicui18n.so\', \'lib/libicui18n.so.54\', \'lib/libicui18n.so.54.1\', \'lib/libicuio.so\', \'lib/libicuio.so.54\', \'lib/libicuio.so.54.1\', \'lib/libicule.so\', \'lib/libicule.so.54\', \'lib/libicule.so.54.1\', \'lib/libiculx.so\', \'lib/libiculx.so.54\', \'lib/libiculx.so.54.1\', \'lib/libicutest.so\', \'lib/libicutest.so.54\', \'lib/libicutest.so.54.1\', \'lib/libicutu.so\', \'lib/libicutu.so.54\', \'lib/libicutu.so.54.1\', \'lib/libicuuc.so\', \'lib/libicuuc.so.54\', \'lib/libicuuc.so.54.1\', \'lib/pkgconfig/icu-i18n.pc\', \'lib/pkgconfig/icu-io.pc\', \'lib/pkgconfig/icu-le.pc\', \'lib/pkgconfig/icu-lx.pc\', \'lib/pkgconfig/icu-uc.pc\', \'sbin/genccode\', \'sbin/gencmn\', \'sbin/gennorm2\', \'sbin/gensprep\', \'sbin/icupkg\', \'share/icu/54.1/config/mh-linux\', \'share/icu/54.1/install-sh\', \'share/icu/54.1/license.html\', \'share/icu/54.1/mkinstalldirs\', \'share/man/man1/derb.1\', \'share/man/man1/genbrk.1\', \'share/man/man1/gencfu.1\', \'share/man/man1/gencnval.1\', \'share/man/man1/gendict.1\', \'share/man/man1/genrb.1\', \'share/man/man1/icu-config.1\', \'share/man/man1/makeconv.1\', \'share/man/man1/pkgdata.1\', \'share/man/man1/uconv.1\', \'share/man/man8/genccode.8\', \'share/man/man8/gencmn.8\', \'share/man/man8/gensprep.8\', \'share/man/man8/icupkg.8\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/icu-54.1-0\', type=1))", "defaults::idna-2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'f257d067143cde928913089ad47edc91\', name=\'idna\', platform=\'linux\', subdir=\'linux-64\', version=\'2.2\', fn=\'idna-2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/idna-2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/idna-2.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/idna-2.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/idna-2.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/idna-2.2-py3.6.egg-info/pbr.json\', \'lib/python3.6/site-packages/idna-2.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/idna/__init__.py\', \'lib/python3.6/site-packages/idna/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/codec.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/idnadata.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/intranges.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/__pycache__/uts46data.cpython-36.pyc\', \'lib/python3.6/site-packages/idna/codec.py\', \'lib/python3.6/site-packages/idna/compat.py\', \'lib/python3.6/site-packages/idna/core.py\', \'lib/python3.6/site-packages/idna/idnadata.py\', \'lib/python3.6/site-packages/idna/intranges.py\', \'lib/python3.6/site-packages/idna/uts46data.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/idna-2.2-py36_0\', type=1))", "defaults::imagesize-0.7.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'47d6fe66ce4ea874d85a319dfa80bc94\', name=\'imagesize\', platform=\'linux\', subdir=\'linux-64\', version=\'0.7.1\', fn=\'imagesize-0.7.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/imagesize-0.7.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/imagesize-0.7.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/imagesize-0.7.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/imagesize-0.7.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/imagesize-0.7.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/imagesize/__init__.py\', \'lib/python3.6/site-packages/imagesize/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/imagesize/__pycache__/get.cpython-36.pyc\', \'lib/python3.6/site-packages/imagesize/get.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/imagesize-0.7.1-py36_0\', type=1))", "defaults::ipykernel-4.5.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ipython >=4.0.0\', \'jupyter_client\', \'python 3.6*\', \'tornado >=4.0\', \'traitlets >=4.1.0\'), license=\'BSD\', md5=\'d2931c5c33aea5b5bf0bd946347534db\', name=\'ipykernel\', platform=\'linux\', subdir=\'linux-64\', version=\'4.5.2\', fn=\'ipykernel-4.5.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ipykernel-4.5.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/ipykernel-4.5.2-py3.6.egg-info\', \'lib/python3.6/site-packages/ipykernel/__init__.py\', \'lib/python3.6/site-packages/ipykernel/__main__.py\', \'lib/python3.6/site-packages/ipykernel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/codeutil.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/datapub.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/displayhook.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/embed.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/eventloops.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/heartbeat.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/iostream.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/ipkernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/jsonutil.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/kernelapp.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/kernelbase.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/kernelspec.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/parentpoller.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/pickleutil.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/__pycache__/zmqshell.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/_version.py\', \'lib/python3.6/site-packages/ipykernel/codeutil.py\', \'lib/python3.6/site-packages/ipykernel/comm/__init__.py\', \'lib/python3.6/site-packages/ipykernel/comm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/comm/__pycache__/comm.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/comm/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/comm/comm.py\', \'lib/python3.6/site-packages/ipykernel/comm/manager.py\', \'lib/python3.6/site-packages/ipykernel/connect.py\', \'lib/python3.6/site-packages/ipykernel/datapub.py\', \'lib/python3.6/site-packages/ipykernel/displayhook.py\', \'lib/python3.6/site-packages/ipykernel/embed.py\', \'lib/python3.6/site-packages/ipykernel/eventloops.py\', \'lib/python3.6/site-packages/ipykernel/gui/__init__.py\', \'lib/python3.6/site-packages/ipykernel/gui/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/gui/__pycache__/gtk3embed.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/gui/__pycache__/gtkembed.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/gui/gtk3embed.py\', \'lib/python3.6/site-packages/ipykernel/gui/gtkembed.py\', \'lib/python3.6/site-packages/ipykernel/heartbeat.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/__init__.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/blocking.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/ipkernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/__pycache__/socket.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/blocking.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/channels.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/client.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/constants.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/ipkernel.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/manager.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/socket.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/__init__.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/__pycache__/test_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/__pycache__/test_kernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/test_kernel.py\', \'lib/python3.6/site-packages/ipykernel/inprocess/tests/test_kernelmanager.py\', \'lib/python3.6/site-packages/ipykernel/iostream.py\', \'lib/python3.6/site-packages/ipykernel/ipkernel.py\', \'lib/python3.6/site-packages/ipykernel/jsonutil.py\', \'lib/python3.6/site-packages/ipykernel/kernelapp.py\', \'lib/python3.6/site-packages/ipykernel/kernelbase.py\', \'lib/python3.6/site-packages/ipykernel/kernelspec.py\', \'lib/python3.6/site-packages/ipykernel/log.py\', \'lib/python3.6/site-packages/ipykernel/parentpoller.py\', \'lib/python3.6/site-packages/ipykernel/pickleutil.py\', \'lib/python3.6/site-packages/ipykernel/pylab/__init__.py\', \'lib/python3.6/site-packages/ipykernel/pylab/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/pylab/__pycache__/backend_inline.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/pylab/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/pylab/backend_inline.py\', \'lib/python3.6/site-packages/ipykernel/pylab/config.py\', \'lib/python3.6/site-packages/ipykernel/resources/logo-32x32.png\', \'lib/python3.6/site-packages/ipykernel/resources/logo-64x64.png\', \'lib/python3.6/site-packages/ipykernel/serialize.py\', \'lib/python3.6/site-packages/ipykernel/tests/__init__.py\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_connect.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_embed_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_jsonutil.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_kernelspec.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_message_spec.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_pickleutil.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_start_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/test_zmq_shell.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/ipykernel/tests/test_connect.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_embed_kernel.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_jsonutil.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_kernel.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_kernelspec.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_message_spec.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_pickleutil.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_serialize.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_start_kernel.py\', \'lib/python3.6/site-packages/ipykernel/tests/test_zmq_shell.py\', \'lib/python3.6/site-packages/ipykernel/tests/utils.py\', \'lib/python3.6/site-packages/ipykernel/zmqshell.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ipykernel-4.5.2-py36_0\', type=1))", "defaults::ipython-5.1.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'decorator\', \'pexpect\', \'pickleshare\', \'prompt_toolkit >=1.0.3,<2.0.0\', \'pygments\', \'python 3.6*\', \'simplegeneric >0.8\', \'traitlets >=4.2\'), license=\'BSD\', md5=\'ac00b19e857f8f27c006b3b33c347775\', name=\'ipython\', platform=\'linux\', subdir=\'linux-64\', version=\'5.1.0\', fn=\'ipython-5.1.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ipython-5.1.0-py36_0.tar.bz2\', files=(\'bin/ipython\', \'bin/ipython3\', \'lib/python3.6/site-packages/IPython/__init__.py\', \'lib/python3.6/site-packages/IPython/__main__.py\', \'lib/python3.6/site-packages/IPython/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/consoleapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/frontend.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/nbconvert.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/nbformat.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/paths.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/__pycache__/qt.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/config.py\', \'lib/python3.6/site-packages/IPython/consoleapp.py\', \'lib/python3.6/site-packages/IPython/core/__init__.py\', \'lib/python3.6/site-packages/IPython/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/alias.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/autocall.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/builtin_trap.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/compilerop.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/completer.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/completerlib.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/crashhandler.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/debugger.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/display_trap.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/displayhook.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/displaypub.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/excolors.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/extensions.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/formatters.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/getipython.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/historyapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/hooks.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/inputsplitter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/inputtransformer.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/interactiveshell.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/latex_symbols.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/logger.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/macro.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/magic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/magic_arguments.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/oinspect.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/page.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/payload.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/payloadpage.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/prefilter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/profileapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/profiledir.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/prompts.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/pylabtools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/release.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/shadowns.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/shellapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/splitinput.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/ultratb.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/__pycache__/usage.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/alias.py\', \'lib/python3.6/site-packages/IPython/core/application.py\', \'lib/python3.6/site-packages/IPython/core/autocall.py\', \'lib/python3.6/site-packages/IPython/core/builtin_trap.py\', \'lib/python3.6/site-packages/IPython/core/compilerop.py\', \'lib/python3.6/site-packages/IPython/core/completer.py\', \'lib/python3.6/site-packages/IPython/core/completerlib.py\', \'lib/python3.6/site-packages/IPython/core/crashhandler.py\', \'lib/python3.6/site-packages/IPython/core/debugger.py\', \'lib/python3.6/site-packages/IPython/core/display.py\', \'lib/python3.6/site-packages/IPython/core/display_trap.py\', \'lib/python3.6/site-packages/IPython/core/displayhook.py\', \'lib/python3.6/site-packages/IPython/core/displaypub.py\', \'lib/python3.6/site-packages/IPython/core/error.py\', \'lib/python3.6/site-packages/IPython/core/events.py\', \'lib/python3.6/site-packages/IPython/core/excolors.py\', \'lib/python3.6/site-packages/IPython/core/extensions.py\', \'lib/python3.6/site-packages/IPython/core/formatters.py\', \'lib/python3.6/site-packages/IPython/core/getipython.py\', \'lib/python3.6/site-packages/IPython/core/history.py\', \'lib/python3.6/site-packages/IPython/core/historyapp.py\', \'lib/python3.6/site-packages/IPython/core/hooks.py\', \'lib/python3.6/site-packages/IPython/core/inputsplitter.py\', \'lib/python3.6/site-packages/IPython/core/inputtransformer.py\', \'lib/python3.6/site-packages/IPython/core/interactiveshell.py\', \'lib/python3.6/site-packages/IPython/core/latex_symbols.py\', \'lib/python3.6/site-packages/IPython/core/logger.py\', \'lib/python3.6/site-packages/IPython/core/macro.py\', \'lib/python3.6/site-packages/IPython/core/magic.py\', \'lib/python3.6/site-packages/IPython/core/magic_arguments.py\', \'lib/python3.6/site-packages/IPython/core/magics/__init__.py\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/auto.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/execution.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/extension.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/namespace.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/osm.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/pylab.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/__pycache__/script.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/magics/auto.py\', \'lib/python3.6/site-packages/IPython/core/magics/basic.py\', \'lib/python3.6/site-packages/IPython/core/magics/code.py\', \'lib/python3.6/site-packages/IPython/core/magics/config.py\', \'lib/python3.6/site-packages/IPython/core/magics/display.py\', \'lib/python3.6/site-packages/IPython/core/magics/execution.py\', \'lib/python3.6/site-packages/IPython/core/magics/extension.py\', \'lib/python3.6/site-packages/IPython/core/magics/history.py\', \'lib/python3.6/site-packages/IPython/core/magics/logging.py\', \'lib/python3.6/site-packages/IPython/core/magics/namespace.py\', \'lib/python3.6/site-packages/IPython/core/magics/osm.py\', \'lib/python3.6/site-packages/IPython/core/magics/pylab.py\', \'lib/python3.6/site-packages/IPython/core/magics/script.py\', \'lib/python3.6/site-packages/IPython/core/oinspect.py\', \'lib/python3.6/site-packages/IPython/core/page.py\', \'lib/python3.6/site-packages/IPython/core/payload.py\', \'lib/python3.6/site-packages/IPython/core/payloadpage.py\', \'lib/python3.6/site-packages/IPython/core/prefilter.py\', \'lib/python3.6/site-packages/IPython/core/profile/README_STARTUP\', \'lib/python3.6/site-packages/IPython/core/profileapp.py\', \'lib/python3.6/site-packages/IPython/core/profiledir.py\', \'lib/python3.6/site-packages/IPython/core/prompts.py\', \'lib/python3.6/site-packages/IPython/core/pylabtools.py\', \'lib/python3.6/site-packages/IPython/core/release.py\', \'lib/python3.6/site-packages/IPython/core/shadowns.py\', \'lib/python3.6/site-packages/IPython/core/shellapp.py\', \'lib/python3.6/site-packages/IPython/core/splitinput.py\', \'lib/python3.6/site-packages/IPython/core/tests/2x2.jpg\', \'lib/python3.6/site-packages/IPython/core/tests/2x2.png\', \'lib/python3.6/site-packages/IPython/core/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/bad_all.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/nonascii.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/nonascii2.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/print_argv.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/refbug.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/simpleerr.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/tclass.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_alias.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_application.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_autocall.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_compilerop.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_completer.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_completerlib.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_debugger.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_displayhook.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_events.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_extension.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_formatters.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_history.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_hooks.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_inputsplitter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_inputtransformer.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_interactiveshell.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_iplib.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_logger.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_magic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_magic_arguments.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_magic_terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_oinspect.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_page.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_prefilter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_prompts.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_pylabtools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_run.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_shellapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_splitinput.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/__pycache__/test_ultratb.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/bad_all.py\', \'lib/python3.6/site-packages/IPython/core/tests/daft_extension/__pycache__/daft_extension.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/core/tests/daft_extension/daft_extension.py\', \'lib/python3.6/site-packages/IPython/core/tests/nonascii.py\', \'lib/python3.6/site-packages/IPython/core/tests/nonascii2.py\', \'lib/python3.6/site-packages/IPython/core/tests/print_argv.py\', \'lib/python3.6/site-packages/IPython/core/tests/refbug.py\', \'lib/python3.6/site-packages/IPython/core/tests/simpleerr.py\', \'lib/python3.6/site-packages/IPython/core/tests/tclass.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_alias.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_application.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_autocall.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_compilerop.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_completer.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_completerlib.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_debugger.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_display.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_displayhook.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_events.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_extension.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_formatters.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_handlers.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_history.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_hooks.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_imports.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_inputsplitter.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_inputtransformer.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_interactiveshell.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_iplib.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_logger.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_magic.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_magic_arguments.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_magic_terminal.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_oinspect.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_page.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_paths.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_prefilter.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_profile.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_prompts.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_pylabtools.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_run.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_shellapp.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_splitinput.py\', \'lib/python3.6/site-packages/IPython/core/tests/test_ultratb.py\', \'lib/python3.6/site-packages/IPython/core/ultratb.py\', \'lib/python3.6/site-packages/IPython/core/usage.py\', \'lib/python3.6/site-packages/IPython/display.py\', \'lib/python3.6/site-packages/IPython/extensions/__init__.py\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/autoreload.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/cythonmagic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/rmagic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/storemagic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/__pycache__/sympyprinting.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/autoreload.py\', \'lib/python3.6/site-packages/IPython/extensions/cythonmagic.py\', \'lib/python3.6/site-packages/IPython/extensions/rmagic.py\', \'lib/python3.6/site-packages/IPython/extensions/storemagic.py\', \'lib/python3.6/site-packages/IPython/extensions/sympyprinting.py\', \'lib/python3.6/site-packages/IPython/extensions/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/extensions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/tests/__pycache__/test_autoreload.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/tests/__pycache__/test_storemagic.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/extensions/tests/test_autoreload.py\', \'lib/python3.6/site-packages/IPython/extensions/tests/test_storemagic.py\', \'lib/python3.6/site-packages/IPython/external/__init__.py\', \'lib/python3.6/site-packages/IPython/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/__pycache__/mathjax.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/__pycache__/qt_for_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/__pycache__/qt_loaders.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/decorators/__init__.py\', \'lib/python3.6/site-packages/IPython/external/decorators/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/decorators/__pycache__/_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/decorators/__pycache__/_numpy_testing_noseclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/decorators/__pycache__/_numpy_testing_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/external/decorators/_decorators.py\', \'lib/python3.6/site-packages/IPython/external/decorators/_numpy_testing_noseclasses.py\', \'lib/python3.6/site-packages/IPython/external/decorators/_numpy_testing_utils.py\', \'lib/python3.6/site-packages/IPython/external/mathjax.py\', \'lib/python3.6/site-packages/IPython/external/qt_for_kernel.py\', \'lib/python3.6/site-packages/IPython/external/qt_loaders.py\', \'lib/python3.6/site-packages/IPython/frontend.py\', \'lib/python3.6/site-packages/IPython/html.py\', \'lib/python3.6/site-packages/IPython/kernel/__init__.py\', \'lib/python3.6/site-packages/IPython/kernel/__main__.py\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/adapter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/channelsabc.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/clientabc.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/kernelspec.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/kernelspecapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/launcher.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/managerabc.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/multikernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/restarter.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/__pycache__/threaded.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/kernel/adapter.py\', \'lib/python3.6/site-packages/IPython/kernel/channels.py\', \'lib/python3.6/site-packages/IPython/kernel/channelsabc.py\', \'lib/python3.6/site-packages/IPython/kernel/client.py\', \'lib/python3.6/site-packages/IPython/kernel/clientabc.py\', \'lib/python3.6/site-packages/IPython/kernel/connect.py\', \'lib/python3.6/site-packages/IPython/kernel/kernelspec.py\', \'lib/python3.6/site-packages/IPython/kernel/kernelspecapp.py\', \'lib/python3.6/site-packages/IPython/kernel/launcher.py\', \'lib/python3.6/site-packages/IPython/kernel/manager.py\', \'lib/python3.6/site-packages/IPython/kernel/managerabc.py\', \'lib/python3.6/site-packages/IPython/kernel/multikernelmanager.py\', \'lib/python3.6/site-packages/IPython/kernel/restarter.py\', \'lib/python3.6/site-packages/IPython/kernel/threaded.py\', \'lib/python3.6/site-packages/IPython/lib/__init__.py\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/backgroundjobs.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/clipboard.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/deepreload.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/demo.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/editorhooks.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/guisupport.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhook.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookglut.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookgtk.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookgtk3.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookpyglet.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookqt4.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/inputhookwx.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/latextools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/lexers.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/pretty.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/__pycache__/security.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/backgroundjobs.py\', \'lib/python3.6/site-packages/IPython/lib/clipboard.py\', \'lib/python3.6/site-packages/IPython/lib/deepreload.py\', \'lib/python3.6/site-packages/IPython/lib/demo.py\', \'lib/python3.6/site-packages/IPython/lib/display.py\', \'lib/python3.6/site-packages/IPython/lib/editorhooks.py\', \'lib/python3.6/site-packages/IPython/lib/guisupport.py\', \'lib/python3.6/site-packages/IPython/lib/inputhook.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookglut.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookgtk.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookgtk3.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookpyglet.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookqt4.py\', \'lib/python3.6/site-packages/IPython/lib/inputhookwx.py\', \'lib/python3.6/site-packages/IPython/lib/kernel.py\', \'lib/python3.6/site-packages/IPython/lib/latextools.py\', \'lib/python3.6/site-packages/IPython/lib/lexers.py\', \'lib/python3.6/site-packages/IPython/lib/pretty.py\', \'lib/python3.6/site-packages/IPython/lib/security.py\', \'lib/python3.6/site-packages/IPython/lib/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_backgroundjobs.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_clipboard.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_deepreload.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_display.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_editorhooks.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_latextools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_lexers.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_pretty.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/__pycache__/test_security.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/lib/tests/test.wav\', \'lib/python3.6/site-packages/IPython/lib/tests/test_backgroundjobs.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_clipboard.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_deepreload.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_display.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_editorhooks.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_imports.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_latextools.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_lexers.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_pretty.py\', \'lib/python3.6/site-packages/IPython/lib/tests/test_security.py\', \'lib/python3.6/site-packages/IPython/nbconvert.py\', \'lib/python3.6/site-packages/IPython/nbformat.py\', \'lib/python3.6/site-packages/IPython/parallel.py\', \'lib/python3.6/site-packages/IPython/paths.py\', \'lib/python3.6/site-packages/IPython/qt.py\', \'lib/python3.6/site-packages/IPython/sphinxext/__init__.py\', \'lib/python3.6/site-packages/IPython/sphinxext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/sphinxext/__pycache__/custom_doctests.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/sphinxext/__pycache__/ipython_console_highlighting.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/sphinxext/__pycache__/ipython_directive.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/sphinxext/custom_doctests.py\', \'lib/python3.6/site-packages/IPython/sphinxext/ipython_console_highlighting.py\', \'lib/python3.6/site-packages/IPython/sphinxext/ipython_directive.py\', \'lib/python3.6/site-packages/IPython/terminal/__init__.py\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/debugger.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/embed.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/interactiveshell.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/ipapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/magics.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/prompts.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/ptshell.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/ptutils.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/__pycache__/shortcuts.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/console.py\', \'lib/python3.6/site-packages/IPython/terminal/debugger.py\', \'lib/python3.6/site-packages/IPython/terminal/embed.py\', \'lib/python3.6/site-packages/IPython/terminal/interactiveshell.py\', \'lib/python3.6/site-packages/IPython/terminal/ipapp.py\', \'lib/python3.6/site-packages/IPython/terminal/magics.py\', \'lib/python3.6/site-packages/IPython/terminal/prompts.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__init__.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/glut.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/gtk.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/gtk3.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/osx.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/pyglet.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/qt.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/tk.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/__pycache__/wx.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/glut.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/gtk.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/gtk3.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/osx.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/pyglet.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/qt.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/tk.py\', \'lib/python3.6/site-packages/IPython/terminal/pt_inputhooks/wx.py\', \'lib/python3.6/site-packages/IPython/terminal/ptshell.py\', \'lib/python3.6/site-packages/IPython/terminal/ptutils.py\', \'lib/python3.6/site-packages/IPython/terminal/shortcuts.py\', \'lib/python3.6/site-packages/IPython/terminal/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/terminal/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/tests/__pycache__/test_embed.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/tests/__pycache__/test_help.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/tests/__pycache__/test_interactivshell.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/terminal/tests/test_embed.py\', \'lib/python3.6/site-packages/IPython/terminal/tests/test_help.py\', \'lib/python3.6/site-packages/IPython/terminal/tests/test_interactivshell.py\', \'lib/python3.6/site-packages/IPython/testing/__init__.py\', \'lib/python3.6/site-packages/IPython/testing/__main__.py\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/globalipapp.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/iptest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/iptestcontroller.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/ipunittest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/skipdoctest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/decorators.py\', \'lib/python3.6/site-packages/IPython/testing/globalipapp.py\', \'lib/python3.6/site-packages/IPython/testing/iptest.py\', \'lib/python3.6/site-packages/IPython/testing/iptestcontroller.py\', \'lib/python3.6/site-packages/IPython/testing/ipunittest.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/README.txt\', \'lib/python3.6/site-packages/IPython/testing/plugin/__init__.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/dtexample.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/ipdoctest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/iptest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/show_refs.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/simple.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/simplevars.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/test_ipdoctest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/__pycache__/test_refs.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/plugin/dtexample.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/ipdoctest.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/iptest.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/setup.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/show_refs.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/simple.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/simplevars.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/test_combo.txt\', \'lib/python3.6/site-packages/IPython/testing/plugin/test_example.txt\', \'lib/python3.6/site-packages/IPython/testing/plugin/test_exampleip.txt\', \'lib/python3.6/site-packages/IPython/testing/plugin/test_ipdoctest.py\', \'lib/python3.6/site-packages/IPython/testing/plugin/test_refs.py\', \'lib/python3.6/site-packages/IPython/testing/skipdoctest.py\', \'lib/python3.6/site-packages/IPython/testing/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/testing/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/tests/__pycache__/test_ipunittest.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/testing/tests/test_decorators.py\', \'lib/python3.6/site-packages/IPython/testing/tests/test_ipunittest.py\', \'lib/python3.6/site-packages/IPython/testing/tests/test_tools.py\', \'lib/python3.6/site-packages/IPython/testing/tools.py\', \'lib/python3.6/site-packages/IPython/utils/PyColorize.py\', \'lib/python3.6/site-packages/IPython/utils/__init__.py\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/PyColorize.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_process_cli.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_process_common.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_process_posix.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_process_win32.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_process_win32_controller.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_sysinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_tokenize_py2.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/_tokenize_py3.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/capture.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/colorable.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/coloransi.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/contexts.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/daemonize.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/dir2.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/encoding.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/eventful.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/generics.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/ipstruct.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/jsonutil.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/localinterfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/module_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/openpy.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/pickleutil.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/process.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/rlineimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/sentinel.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/shimmodule.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/strdispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/sysinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/syspathcontext.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/tempdir.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/timing.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/tokenize2.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/tokenutil.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/traitlets.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/tz.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/ulinecache.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/warn.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/__pycache__/wildcard.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/_process_cli.py\', \'lib/python3.6/site-packages/IPython/utils/_process_common.py\', \'lib/python3.6/site-packages/IPython/utils/_process_posix.py\', \'lib/python3.6/site-packages/IPython/utils/_process_win32.py\', \'lib/python3.6/site-packages/IPython/utils/_process_win32_controller.py\', \'lib/python3.6/site-packages/IPython/utils/_signatures.py\', \'lib/python3.6/site-packages/IPython/utils/_sysinfo.py\', \'lib/python3.6/site-packages/IPython/utils/_tokenize_py2.py\', \'lib/python3.6/site-packages/IPython/utils/_tokenize_py3.py\', \'lib/python3.6/site-packages/IPython/utils/capture.py\', \'lib/python3.6/site-packages/IPython/utils/colorable.py\', \'lib/python3.6/site-packages/IPython/utils/coloransi.py\', \'lib/python3.6/site-packages/IPython/utils/contexts.py\', \'lib/python3.6/site-packages/IPython/utils/daemonize.py\', \'lib/python3.6/site-packages/IPython/utils/data.py\', \'lib/python3.6/site-packages/IPython/utils/decorators.py\', \'lib/python3.6/site-packages/IPython/utils/dir2.py\', \'lib/python3.6/site-packages/IPython/utils/encoding.py\', \'lib/python3.6/site-packages/IPython/utils/eventful.py\', \'lib/python3.6/site-packages/IPython/utils/frame.py\', \'lib/python3.6/site-packages/IPython/utils/generics.py\', \'lib/python3.6/site-packages/IPython/utils/importstring.py\', \'lib/python3.6/site-packages/IPython/utils/io.py\', \'lib/python3.6/site-packages/IPython/utils/ipstruct.py\', \'lib/python3.6/site-packages/IPython/utils/jsonutil.py\', \'lib/python3.6/site-packages/IPython/utils/localinterfaces.py\', \'lib/python3.6/site-packages/IPython/utils/log.py\', \'lib/python3.6/site-packages/IPython/utils/module_paths.py\', \'lib/python3.6/site-packages/IPython/utils/openpy.py\', \'lib/python3.6/site-packages/IPython/utils/path.py\', \'lib/python3.6/site-packages/IPython/utils/pickleutil.py\', \'lib/python3.6/site-packages/IPython/utils/process.py\', \'lib/python3.6/site-packages/IPython/utils/py3compat.py\', \'lib/python3.6/site-packages/IPython/utils/rlineimpl.py\', \'lib/python3.6/site-packages/IPython/utils/sentinel.py\', \'lib/python3.6/site-packages/IPython/utils/shimmodule.py\', \'lib/python3.6/site-packages/IPython/utils/signatures.py\', \'lib/python3.6/site-packages/IPython/utils/strdispatch.py\', \'lib/python3.6/site-packages/IPython/utils/sysinfo.py\', \'lib/python3.6/site-packages/IPython/utils/syspathcontext.py\', \'lib/python3.6/site-packages/IPython/utils/tempdir.py\', \'lib/python3.6/site-packages/IPython/utils/terminal.py\', \'lib/python3.6/site-packages/IPython/utils/tests/__init__.py\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_capture.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_dir2.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_module_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_openpy.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_path.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_process.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_pycolorize.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_shimmodule.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_sysinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_tempdir.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_tokenutil.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/__pycache__/test_wildcard.cpython-36.pyc\', \'lib/python3.6/site-packages/IPython/utils/tests/test_capture.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_decorators.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_dir2.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_imports.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_importstring.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_io.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_module_paths.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_openpy.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_path.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_process.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_pycolorize.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_shimmodule.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_sysinfo.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_tempdir.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_text.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_tokenutil.py\', \'lib/python3.6/site-packages/IPython/utils/tests/test_wildcard.py\', \'lib/python3.6/site-packages/IPython/utils/text.py\', \'lib/python3.6/site-packages/IPython/utils/timing.py\', \'lib/python3.6/site-packages/IPython/utils/tokenize2.py\', \'lib/python3.6/site-packages/IPython/utils/tokenutil.py\', \'lib/python3.6/site-packages/IPython/utils/traitlets.py\', \'lib/python3.6/site-packages/IPython/utils/tz.py\', \'lib/python3.6/site-packages/IPython/utils/ulinecache.py\', \'lib/python3.6/site-packages/IPython/utils/version.py\', \'lib/python3.6/site-packages/IPython/utils/warn.py\', \'lib/python3.6/site-packages/IPython/utils/wildcard.py\', \'lib/python3.6/site-packages/ipython-5.1.0-py3.6.egg-info\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ipython-5.1.0-py36_0\', type=1))", "defaults::ipython_genutils-0.1.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'87e85944891858483c09619ad99630c1\', name=\'ipython_genutils\', platform=\'linux\', subdir=\'linux-64\', version=\'0.1.0\', fn=\'ipython_genutils-0.1.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ipython_genutils-0.1.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/ipython_genutils-0.1.0-py3.6.egg-info\', \'lib/python3.6/site-packages/ipython_genutils/__init__.py\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/encoding.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/ipstruct.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/tempdir.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/_version.py\', \'lib/python3.6/site-packages/ipython_genutils/encoding.py\', \'lib/python3.6/site-packages/ipython_genutils/importstring.py\', \'lib/python3.6/site-packages/ipython_genutils/ipstruct.py\', \'lib/python3.6/site-packages/ipython_genutils/path.py\', \'lib/python3.6/site-packages/ipython_genutils/py3compat.py\', \'lib/python3.6/site-packages/ipython_genutils/tempdir.py\', \'lib/python3.6/site-packages/ipython_genutils/testing/__init__.py\', \'lib/python3.6/site-packages/ipython_genutils/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/testing/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/testing/decorators.py\', \'lib/python3.6/site-packages/ipython_genutils/tests/__init__.py\', \'lib/python3.6/site-packages/ipython_genutils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/tests/__pycache__/test_importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/tests/__pycache__/test_path.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/tests/__pycache__/test_tempdir.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/tests/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/site-packages/ipython_genutils/tests/test_importstring.py\', \'lib/python3.6/site-packages/ipython_genutils/tests/test_path.py\', \'lib/python3.6/site-packages/ipython_genutils/tests/test_tempdir.py\', \'lib/python3.6/site-packages/ipython_genutils/tests/test_text.py\', \'lib/python3.6/site-packages/ipython_genutils/text.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ipython_genutils-0.1.0-py36_0\', type=1))", "defaults::ipywidgets-5.2.2-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'ipykernel >=4.2.2\', \'ipython >=4.0.0\', \'python 3.6*\', \'traitlets >=4.2.1\', \'widgetsnbextension >=1.2.6\'), license=\'BSD 3-clause\', license_family=\'BSD\', md5=\'70edf329b86f2ff14aaab890a439b996\', name=\'ipywidgets\', platform=\'linux\', subdir=\'linux-64\', version=\'5.2.2\', fn=\'ipywidgets-5.2.2-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ipywidgets-5.2.2-py36_1.tar.bz2\', files=(\'etc/jupyter/nbconfig/notebook.json\', \'lib/python3.6/site-packages/ipywidgets-5.2.2-py3.6.egg-info\', \'lib/python3.6/site-packages/ipywidgets/__init__.py\', \'lib/python3.6/site-packages/ipywidgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/_version.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/__init__.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/domwidget.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/eventful.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/interaction.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/trait_types.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_bool.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_box.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_button.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_color.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_controller.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_float.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_image.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_int.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_layout.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_link.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_output.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_selection.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_selectioncontainer.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/__pycache__/widget_string.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/domwidget.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/eventful.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/interaction.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/__init__.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/__pycache__/test_interaction.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/__pycache__/test_link.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/__pycache__/test_traits.cpython-36.pyc\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/test_interaction.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/test_link.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/tests/test_traits.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/trait_types.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_bool.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_box.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_button.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_color.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_controller.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_float.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_image.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_int.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_layout.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_link.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_output.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_selection.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_selectioncontainer.py\', \'lib/python3.6/site-packages/ipywidgets/widgets/widget_string.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ipywidgets-5.2.2-py36_1\', type=1))", "defaults::isort-4.2.5-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'setuptools\'), license=\'MIT\', md5=\'fabd04a5451494cf55b6db00998d60fe\', name=\'isort\', platform=\'linux\', subdir=\'linux-64\', version=\'4.2.5\', fn=\'isort-4.2.5-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/isort-4.2.5-py36_0.tar.bz2\', files=(\'bin/isort\', \'lib/python3.6/site-packages/isort-4.2.5-py3.6.egg-info\', \'lib/python3.6/site-packages/isort/__init__.py\', \'lib/python3.6/site-packages/isort/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/hooks.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/isort.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/natural.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/pie_slice.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/pylama_isort.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/__pycache__/settings.cpython-36.pyc\', \'lib/python3.6/site-packages/isort/hooks.py\', \'lib/python3.6/site-packages/isort/isort.py\', \'lib/python3.6/site-packages/isort/main.py\', \'lib/python3.6/site-packages/isort/natural.py\', \'lib/python3.6/site-packages/isort/pie_slice.py\', \'lib/python3.6/site-packages/isort/pylama_isort.py\', \'lib/python3.6/site-packages/isort/settings.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/isort-4.2.5-py36_0\', type=1))", "defaults::itsdangerous-0.24-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'9b4568068e3a7ac81be87902827d949e\', name=\'itsdangerous\', platform=\'linux\', subdir=\'linux-64\', version=\'0.24\', fn=\'itsdangerous-0.24-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/itsdangerous-0.24-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/itsdangerous.cpython-36.pyc\', \'lib/python3.6/site-packages/itsdangerous-0.24-py3.6.egg-info\', \'lib/python3.6/site-packages/itsdangerous.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/itsdangerous-0.24-py36_0\', type=1))", "defaults::jbig-2.1-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'GPL-2\', md5=\'334b102413fec962bf65c4d60697da34\', name=\'jbig\', platform=\'linux\', subdir=\'linux-64\', version=\'2.1\', fn=\'jbig-2.1-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jbig-2.1-0.tar.bz2\', files=(\'include/jbig.h\', \'include/jbig85.h\', \'include/jbig_ar.h\', \'lib/libjbig.a\', \'lib/libjbig85.a\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jbig-2.1-0\', type=1))", "defaults::jdcal-1.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'efb66041ac560e85e66ece07da6e9734\', name=\'jdcal\', platform=\'linux\', subdir=\'linux-64\', version=\'1.3\', fn=\'jdcal-1.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jdcal-1.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/jdcal.cpython-36.pyc\', \'lib/python3.6/site-packages/jdcal-1.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/jdcal-1.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/jdcal-1.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/jdcal-1.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/jdcal.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jdcal-1.3-py36_0\', type=1))", "defaults::jedi-0.9.0-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'37b3daa923479e18c7b04cd546a568ad\', name=\'jedi\', platform=\'linux\', subdir=\'linux-64\', version=\'0.9.0\', fn=\'jedi-0.9.0-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jedi-0.9.0-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/jedi-0.9.0-py3.6.egg-info\', \'lib/python3.6/site-packages/jedi/__init__.py\', \'lib/python3.6/site-packages/jedi/__main__.py\', \'lib/python3.6/site-packages/jedi/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/_compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/refactoring.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/settings.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/_compatibility.py\', \'lib/python3.6/site-packages/jedi/api/__init__.py\', \'lib/python3.6/site-packages/jedi/api/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/classes.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/interpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/keywords.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/replstartup.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/__pycache__/usages.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/api/classes.py\', \'lib/python3.6/site-packages/jedi/api/helpers.py\', \'lib/python3.6/site-packages/jedi/api/interpreter.py\', \'lib/python3.6/site-packages/jedi/api/keywords.py\', \'lib/python3.6/site-packages/jedi/api/replstartup.py\', \'lib/python3.6/site-packages/jedi/api/usages.py\', \'lib/python3.6/site-packages/jedi/cache.py\', \'lib/python3.6/site-packages/jedi/common.py\', \'lib/python3.6/site-packages/jedi/debug.py\', \'lib/python3.6/site-packages/jedi/evaluate/__init__.py\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/docstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/dynamic.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/finder.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/flow_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/imports.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/iterable.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/param.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/precedence.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/recursion.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/representation.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/stdlib.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/__pycache__/sys_path.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/analysis.py\', \'lib/python3.6/site-packages/jedi/evaluate/cache.py\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/__init__.py\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/__pycache__/fake.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake.py\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/_functools.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/_sqlite3.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/_sre.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/_weakref.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/builtins.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/datetime.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/io.pym\', \'lib/python3.6/site-packages/jedi/evaluate/compiled/fake/posix.pym\', \'lib/python3.6/site-packages/jedi/evaluate/docstrings.py\', \'lib/python3.6/site-packages/jedi/evaluate/dynamic.py\', \'lib/python3.6/site-packages/jedi/evaluate/finder.py\', \'lib/python3.6/site-packages/jedi/evaluate/flow_analysis.py\', \'lib/python3.6/site-packages/jedi/evaluate/helpers.py\', \'lib/python3.6/site-packages/jedi/evaluate/imports.py\', \'lib/python3.6/site-packages/jedi/evaluate/iterable.py\', \'lib/python3.6/site-packages/jedi/evaluate/param.py\', \'lib/python3.6/site-packages/jedi/evaluate/precedence.py\', \'lib/python3.6/site-packages/jedi/evaluate/recursion.py\', \'lib/python3.6/site-packages/jedi/evaluate/representation.py\', \'lib/python3.6/site-packages/jedi/evaluate/stdlib.py\', \'lib/python3.6/site-packages/jedi/evaluate/sys_path.py\', \'lib/python3.6/site-packages/jedi/parser/__init__.py\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/fast.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/tokenize.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/__pycache__/user_context.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/fast.py\', \'lib/python3.6/site-packages/jedi/parser/grammar2.7.txt\', \'lib/python3.6/site-packages/jedi/parser/grammar3.4.txt\', \'lib/python3.6/site-packages/jedi/parser/pgen2/__init__.py\', \'lib/python3.6/site-packages/jedi/parser/pgen2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/pgen2/__pycache__/grammar.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/pgen2/__pycache__/parse.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/pgen2/__pycache__/pgen.cpython-36.pyc\', \'lib/python3.6/site-packages/jedi/parser/pgen2/grammar.py\', \'lib/python3.6/site-packages/jedi/parser/pgen2/parse.py\', \'lib/python3.6/site-packages/jedi/parser/pgen2/pgen.py\', \'lib/python3.6/site-packages/jedi/parser/token.py\', \'lib/python3.6/site-packages/jedi/parser/tokenize.py\', \'lib/python3.6/site-packages/jedi/parser/tree.py\', \'lib/python3.6/site-packages/jedi/parser/user_context.py\', \'lib/python3.6/site-packages/jedi/refactoring.py\', \'lib/python3.6/site-packages/jedi/settings.py\', \'lib/python3.6/site-packages/jedi/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jedi-0.9.0-py36_1\', type=1))", "defaults::jinja2-2.9.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'markupsafe >=0.23\', \'python 3.6*\', \'setuptools\'), license=\'BSD\', md5=\'04a76b599fce2b40a38e6c2865a002ab\', name=\'jinja2\', platform=\'linux\', subdir=\'linux-64\', version=\'2.9.4\', fn=\'jinja2-2.9.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jinja2-2.9.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Jinja2-2.9.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/jinja2/__init__.py\', \'lib/python3.6/site-packages/jinja2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/_stringdefs.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/asyncfilters.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/asyncsupport.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/bccache.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/defaults.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/environment.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/ext.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/idtracking.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/loaders.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/meta.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/optimizer.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/runtime.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/sandbox.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/tests.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/__pycache__/visitor.cpython-36.pyc\', \'lib/python3.6/site-packages/jinja2/_compat.py\', \'lib/python3.6/site-packages/jinja2/_stringdefs.py\', \'lib/python3.6/site-packages/jinja2/asyncfilters.py\', \'lib/python3.6/site-packages/jinja2/asyncsupport.py\', \'lib/python3.6/site-packages/jinja2/bccache.py\', \'lib/python3.6/site-packages/jinja2/compiler.py\', \'lib/python3.6/site-packages/jinja2/constants.py\', \'lib/python3.6/site-packages/jinja2/debug.py\', \'lib/python3.6/site-packages/jinja2/defaults.py\', \'lib/python3.6/site-packages/jinja2/environment.py\', \'lib/python3.6/site-packages/jinja2/exceptions.py\', \'lib/python3.6/site-packages/jinja2/ext.py\', \'lib/python3.6/site-packages/jinja2/filters.py\', \'lib/python3.6/site-packages/jinja2/idtracking.py\', \'lib/python3.6/site-packages/jinja2/lexer.py\', \'lib/python3.6/site-packages/jinja2/loaders.py\', \'lib/python3.6/site-packages/jinja2/meta.py\', \'lib/python3.6/site-packages/jinja2/nodes.py\', \'lib/python3.6/site-packages/jinja2/optimizer.py\', \'lib/python3.6/site-packages/jinja2/parser.py\', \'lib/python3.6/site-packages/jinja2/runtime.py\', \'lib/python3.6/site-packages/jinja2/sandbox.py\', \'lib/python3.6/site-packages/jinja2/tests.py\', \'lib/python3.6/site-packages/jinja2/utils.py\', \'lib/python3.6/site-packages/jinja2/visitor.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jinja2-2.9.4-py36_0\', type=1))", "defaults::jpeg-9b-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'Custom free software license\', license_family=\'Other\', md5=\'5e29fdb319af276a9336971b481ea03d\', name=\'jpeg\', platform=\'linux\', subdir=\'linux-64\', version=\'9b\', fn=\'jpeg-9b-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jpeg-9b-0.tar.bz2\', files=(\'bin/cjpeg\', \'bin/djpeg\', \'bin/jpegtran\', \'bin/rdjpgcom\', \'bin/wrjpgcom\', \'include/jconfig.h\', \'include/jerror.h\', \'include/jmorecfg.h\', \'include/jpeglib.h\', \'lib/libjpeg.a\', \'lib/libjpeg.la\', \'lib/libjpeg.so\', \'lib/libjpeg.so.9\', \'lib/libjpeg.so.9.2.0\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jpeg-9b-0\', type=1))", "defaults::jsonschema-2.5.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'1e0e7769b4fa0084fa6773f6b42a5b23\', name=\'jsonschema\', platform=\'linux\', subdir=\'linux-64\', version=\'2.5.1\', fn=\'jsonschema-2.5.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jsonschema-2.5.1-py36_0.tar.bz2\', files=(\'bin/jsonschema\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/pbr.json\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/jsonschema-2.5.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/jsonschema/__init__.py\', \'lib/python3.6/site-packages/jsonschema/__main__.py\', \'lib/python3.6/site-packages/jsonschema/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/_format.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/_reflect.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/_validators.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/cli.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/__pycache__/validators.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/_format.py\', \'lib/python3.6/site-packages/jsonschema/_reflect.py\', \'lib/python3.6/site-packages/jsonschema/_utils.py\', \'lib/python3.6/site-packages/jsonschema/_validators.py\', \'lib/python3.6/site-packages/jsonschema/_version.py\', \'lib/python3.6/site-packages/jsonschema/cli.py\', \'lib/python3.6/site-packages/jsonschema/compat.py\', \'lib/python3.6/site-packages/jsonschema/exceptions.py\', \'lib/python3.6/site-packages/jsonschema/schemas/draft3.json\', \'lib/python3.6/site-packages/jsonschema/schemas/draft4.json\', \'lib/python3.6/site-packages/jsonschema/tests/__init__.py\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/test_cli.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/test_exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/test_jsonschema_test_suite.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/__pycache__/test_validators.cpython-36.pyc\', \'lib/python3.6/site-packages/jsonschema/tests/compat.py\', \'lib/python3.6/site-packages/jsonschema/tests/test_cli.py\', \'lib/python3.6/site-packages/jsonschema/tests/test_exceptions.py\', \'lib/python3.6/site-packages/jsonschema/tests/test_format.py\', \'lib/python3.6/site-packages/jsonschema/tests/test_jsonschema_test_suite.py\', \'lib/python3.6/site-packages/jsonschema/tests/test_validators.py\', \'lib/python3.6/site-packages/jsonschema/validators.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jsonschema-2.5.1-py36_0\', type=1))", "defaults::jupyter-1.0.0-py36_3": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_3\', build_number=3, depends=(\'ipykernel\', \'ipywidgets\', \'jupyter_console\', \'nbconvert\', \'notebook\', \'python 3.6*\', \'qtconsole\'), license=\'BSD\', md5=\'1052273fd7373f34901fb0f74e2d4f9e\', name=\'jupyter\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.0\', fn=\'jupyter-1.0.0-py36_3.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jupyter-1.0.0-py36_3.tar.bz2\', files=(\'lib/python3.6/site-packages/jupyter-1.0.0-py3.6.egg-info\',), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jupyter-1.0.0-py36_3\', type=1))", "defaults::jupyter_client-4.4.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'jupyter_core\', \'python 3.6*\', \'pyzmq\', \'traitlets\'), license=\'BSD\', md5=\'39c20c1fb9f36bc6362630ef2527fecd\', name=\'jupyter_client\', platform=\'linux\', subdir=\'linux-64\', version=\'4.4.0\', fn=\'jupyter_client-4.4.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jupyter_client-4.4.0-py36_0.tar.bz2\', files=(\'bin/jupyter-kernelspec\', \'lib/python3.6/site-packages/jupyter_client-4.4.0-py3.6.egg-info\', \'lib/python3.6/site-packages/jupyter_client/__init__.py\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/adapter.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/channelsabc.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/clientabc.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/connect.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/consoleapp.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/jsonutil.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/kernelspec.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/kernelspecapp.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/launcher.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/localinterfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/managerabc.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/multikernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/restarter.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/threaded.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/__pycache__/win_interrupt.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/_version.py\', \'lib/python3.6/site-packages/jupyter_client/adapter.py\', \'lib/python3.6/site-packages/jupyter_client/blocking/__init__.py\', \'lib/python3.6/site-packages/jupyter_client/blocking/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/blocking/__pycache__/channels.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/blocking/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/blocking/channels.py\', \'lib/python3.6/site-packages/jupyter_client/blocking/client.py\', \'lib/python3.6/site-packages/jupyter_client/channels.py\', \'lib/python3.6/site-packages/jupyter_client/channelsabc.py\', \'lib/python3.6/site-packages/jupyter_client/client.py\', \'lib/python3.6/site-packages/jupyter_client/clientabc.py\', \'lib/python3.6/site-packages/jupyter_client/connect.py\', \'lib/python3.6/site-packages/jupyter_client/consoleapp.py\', \'lib/python3.6/site-packages/jupyter_client/ioloop/__init__.py\', \'lib/python3.6/site-packages/jupyter_client/ioloop/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/ioloop/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/ioloop/__pycache__/restarter.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/ioloop/manager.py\', \'lib/python3.6/site-packages/jupyter_client/ioloop/restarter.py\', \'lib/python3.6/site-packages/jupyter_client/jsonutil.py\', \'lib/python3.6/site-packages/jupyter_client/kernelspec.py\', \'lib/python3.6/site-packages/jupyter_client/kernelspecapp.py\', \'lib/python3.6/site-packages/jupyter_client/launcher.py\', \'lib/python3.6/site-packages/jupyter_client/localinterfaces.py\', \'lib/python3.6/site-packages/jupyter_client/manager.py\', \'lib/python3.6/site-packages/jupyter_client/managerabc.py\', \'lib/python3.6/site-packages/jupyter_client/multikernelmanager.py\', \'lib/python3.6/site-packages/jupyter_client/restarter.py\', \'lib/python3.6/site-packages/jupyter_client/session.py\', \'lib/python3.6/site-packages/jupyter_client/tests/__init__.py\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/signalkernel.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_adapter.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_connect.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_jsonutil.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_kernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_kernelspec.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_localinterfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_multikernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_public_api.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/test_session.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_client/tests/signalkernel.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_adapter.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_connect.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_jsonutil.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_kernelmanager.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_kernelspec.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_localinterfaces.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_multikernelmanager.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_public_api.py\', \'lib/python3.6/site-packages/jupyter_client/tests/test_session.py\', \'lib/python3.6/site-packages/jupyter_client/tests/utils.py\', \'lib/python3.6/site-packages/jupyter_client/threaded.py\', \'lib/python3.6/site-packages/jupyter_client/win_interrupt.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jupyter_client-4.4.0-py36_0\', type=1))", "defaults::jupyter_console-5.0.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ipykernel\', \'ipython\', \'jupyter_client\', \'prompt_toolkit >=1.0,<2.0\', \'pygments\', \'python 3.6*\'), license=\'BSD\', md5=\'6cfc47b6b07cc31a291da5df0b6d8db4\', name=\'jupyter_console\', platform=\'linux\', subdir=\'linux-64\', version=\'5.0.0\', fn=\'jupyter_console-5.0.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jupyter_console-5.0.0-py36_0.tar.bz2\', files=(\'bin/jupyter-console\', \'lib/python3.6/site-packages/jupyter_console-5.0.0-py3.6.egg-info\', \'lib/python3.6/site-packages/jupyter_console/__init__.py\', \'lib/python3.6/site-packages/jupyter_console/__main__.py\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/app.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/completer.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/ptshell.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/__pycache__/zmqhistory.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/_version.py\', \'lib/python3.6/site-packages/jupyter_console/app.py\', \'lib/python3.6/site-packages/jupyter_console/completer.py\', \'lib/python3.6/site-packages/jupyter_console/ptshell.py\', \'lib/python3.6/site-packages/jupyter_console/tests/__init__.py\', \'lib/python3.6/site-packages/jupyter_console/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/tests/__pycache__/test_console.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/tests/__pycache__/test_image_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/tests/__pycache__/writetofile.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_console/tests/test_console.py\', \'lib/python3.6/site-packages/jupyter_console/tests/test_image_handler.py\', \'lib/python3.6/site-packages/jupyter_console/tests/writetofile.py\', \'lib/python3.6/site-packages/jupyter_console/zmqhistory.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jupyter_console-5.0.0-py36_0\', type=1))", "defaults::jupyter_core-4.2.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'traitlets\'), license=\'BSD\', md5=\'86346bf2172a3ac8c8f296caceb90b4f\', name=\'jupyter_core\', platform=\'linux\', subdir=\'linux-64\', version=\'4.2.1\', fn=\'jupyter_core-4.2.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/jupyter_core-4.2.1-py36_0.tar.bz2\', files=(\'bin/jupyter\', \'bin/jupyter-migrate\', \'bin/jupyter-troubleshoot\', \'lib/python3.6/site-packages/__pycache__/jupyter.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter.py\', \'lib/python3.6/site-packages/jupyter_core-4.2.1-py3.6.egg-info\', \'lib/python3.6/site-packages/jupyter_core/__init__.py\', \'lib/python3.6/site-packages/jupyter_core/__main__.py\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/command.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/migrate.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/paths.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/troubleshoot.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/application.py\', \'lib/python3.6/site-packages/jupyter_core/command.py\', \'lib/python3.6/site-packages/jupyter_core/migrate.py\', \'lib/python3.6/site-packages/jupyter_core/paths.py\', \'lib/python3.6/site-packages/jupyter_core/tests/__init__.py\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/mocking.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/test_application.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/test_command.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/test_migrate.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/__pycache__/test_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/nbextensions/myext.js\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/__pycache__/ipython_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/__pycache__/ipython_console_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/__pycache__/ipython_kernel_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/__pycache__/ipython_nbconvert_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/__pycache__/ipython_notebook_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/ipython_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/ipython_console_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/ipython_kernel_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/ipython_nbconvert_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/ipython_notebook_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/static/custom/custom.css\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython/profile_default/static/custom/custom.js\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/__pycache__/ipython_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/__pycache__/ipython_console_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/__pycache__/ipython_kernel_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/__pycache__/ipython_nbconvert_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/__pycache__/ipython_notebook_config.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/ipython_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/ipython_console_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/ipython_kernel_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/ipython_nbconvert_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/ipython_notebook_config.py\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/static/custom/custom.css\', \'lib/python3.6/site-packages/jupyter_core/tests/dotipython_empty/profile_default/static/custom/custom.js\', \'lib/python3.6/site-packages/jupyter_core/tests/mocking.py\', \'lib/python3.6/site-packages/jupyter_core/tests/test_application.py\', \'lib/python3.6/site-packages/jupyter_core/tests/test_command.py\', \'lib/python3.6/site-packages/jupyter_core/tests/test_migrate.py\', \'lib/python3.6/site-packages/jupyter_core/tests/test_paths.py\', \'lib/python3.6/site-packages/jupyter_core/troubleshoot.py\', \'lib/python3.6/site-packages/jupyter_core/utils/__init__.py\', \'lib/python3.6/site-packages/jupyter_core/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/utils/__pycache__/shutil_which.cpython-36.pyc\', \'lib/python3.6/site-packages/jupyter_core/utils/shutil_which.py\', \'lib/python3.6/site-packages/jupyter_core/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/jupyter_core-4.2.1-py36_0\', type=1))", "defaults::lazy-object-proxy-1.2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'0b0a2c994878259246ff1b61925f918f\', name=\'lazy-object-proxy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.2\', fn=\'lazy-object-proxy-1.2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/lazy-object-proxy-1.2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/native_libs.txt\', \'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/lazy_object_proxy-1.2.2-py3.6-linux-x86_64.egg-info/top_level.txt\', \'lib/python3.6/site-packages/lazy_object_proxy/__init__.py\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/cext.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/simple.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/slots.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/lazy_object_proxy/cext.c\', \'lib/python3.6/site-packages/lazy_object_proxy/cext.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/lazy_object_proxy/cext.py\', \'lib/python3.6/site-packages/lazy_object_proxy/compat.py\', \'lib/python3.6/site-packages/lazy_object_proxy/simple.py\', \'lib/python3.6/site-packages/lazy_object_proxy/slots.py\', \'lib/python3.6/site-packages/lazy_object_proxy/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/lazy-object-proxy-1.2.2-py36_0\', type=1))", "defaults::libffi-3.2.1-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(), license=\'MIT\', md5=\'b8297fc22fd5f713e619329001546adc\', name=\'libffi\', platform=\'linux\', subdir=\'linux-64\', version=\'3.2.1\', fn=\'libffi-3.2.1-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libffi-3.2.1-1.tar.bz2\', files=(\'include/ffi.h\', \'include/ffitarget.h\', \'lib/libffi.a\', \'lib/libffi.la\', \'lib/libffi.so\', \'lib/libffi.so.6\', \'lib/libffi.so.6.0.4\', \'lib/pkgconfig/libffi.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libffi-3.2.1-1\', type=1))", "defaults::libgcc-4.8.5-2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'2\', build_number=2, depends=(), license=\'GPL\', md5=\'fb7f042b7146a04e13597d7a20fe70b1\', name=\'libgcc\', platform=\'linux\', subdir=\'linux-64\', version=\'4.8.5\', fn=\'libgcc-4.8.5-2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libgcc-4.8.5-2.tar.bz2\', files=(\'lib/libgcc_s.so\', \'lib/libgcc_s.so.1\', \'lib/libgomp.so\', \'lib/libgomp.so.1\', \'lib/libgomp.so.1.0.0\', \'lib/libquadmath.so\', \'lib/libquadmath.so.0\', \'lib/libquadmath.so.0.0.0\', \'lib/libstdc++.so\', \'lib/libstdc++.so.6\', \'lib/libstdc++.so.6.0.19\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libgcc-4.8.5-2\', type=1))", "defaults::libgfortran-3.0.0-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(), license=\'GPL3\', md5=\'d7c7e92a8ccc518709474dd3eda896b9\', name=\'libgfortran\', platform=\'linux\', subdir=\'linux-64\', version=\'3.0.0\', fn=\'libgfortran-3.0.0-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libgfortran-3.0.0-1.tar.bz2\', files=(\'lib/libgfortran.so.3\', \'lib/libgfortran.so.3.0.0\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libgfortran-3.0.0-1\', type=1))", "defaults::libiconv-1.14-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'GPL and LGPL\', license_family=\'GPL2\', md5=\'70cf265a73da373e088724afa51aecbf\', name=\'libiconv\', platform=\'linux\', subdir=\'linux-64\', version=\'1.14\', fn=\'libiconv-1.14-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libiconv-1.14-0.tar.bz2\', files=(\'bin/iconv\', \'include/iconv.h\', \'include/libcharset.h\', \'include/localcharset.h\', \'lib/charset.alias\', \'lib/libcharset.a\', \'lib/libcharset.la\', \'lib/libcharset.so\', \'lib/libcharset.so.1\', \'lib/libcharset.so.1.0.0\', \'lib/libiconv.a\', \'lib/libiconv.la\', \'lib/libiconv.so\', \'lib/libiconv.so.2\', \'lib/libiconv.so.2.5.1\', \'lib/preloadable_libiconv.so\', \'share/doc/libiconv/iconv.1.html\', \'share/doc/libiconv/iconv.3.html\', \'share/doc/libiconv/iconv_close.3.html\', \'share/doc/libiconv/iconv_open.3.html\', \'share/doc/libiconv/iconv_open_into.3.html\', \'share/doc/libiconv/iconvctl.3.html\', \'share/locale/af/LC_MESSAGES/libiconv.mo\', \'share/locale/bg/LC_MESSAGES/libiconv.mo\', \'share/locale/ca/LC_MESSAGES/libiconv.mo\', \'share/locale/cs/LC_MESSAGES/libiconv.mo\', \'share/locale/da/LC_MESSAGES/libiconv.mo\', \'share/locale/de/LC_MESSAGES/libiconv.mo\', \'share/locale/el/LC_MESSAGES/libiconv.mo\', \'share/locale/eo/LC_MESSAGES/libiconv.mo\', \'share/locale/es/LC_MESSAGES/libiconv.mo\', \'share/locale/et/LC_MESSAGES/libiconv.mo\', \'share/locale/fi/LC_MESSAGES/libiconv.mo\', \'share/locale/fr/LC_MESSAGES/libiconv.mo\', \'share/locale/ga/LC_MESSAGES/libiconv.mo\', \'share/locale/gl/LC_MESSAGES/libiconv.mo\', \'share/locale/hr/LC_MESSAGES/libiconv.mo\', \'share/locale/hu/LC_MESSAGES/libiconv.mo\', \'share/locale/id/LC_MESSAGES/libiconv.mo\', \'share/locale/it/LC_MESSAGES/libiconv.mo\', \'share/locale/ja/LC_MESSAGES/libiconv.mo\', \'share/locale/nl/LC_MESSAGES/libiconv.mo\', \'share/locale/pl/LC_MESSAGES/libiconv.mo\', \'share/locale/pt_BR/LC_MESSAGES/libiconv.mo\', \'share/locale/rm/LC_MESSAGES/libiconv.mo\', \'share/locale/ro/LC_MESSAGES/libiconv.mo\', \'share/locale/ru/LC_MESSAGES/libiconv.mo\', \'share/locale/sk/LC_MESSAGES/libiconv.mo\', \'share/locale/sl/LC_MESSAGES/libiconv.mo\', \'share/locale/sq/LC_MESSAGES/libiconv.mo\', \'share/locale/sr/LC_MESSAGES/libiconv.mo\', \'share/locale/sv/LC_MESSAGES/libiconv.mo\', \'share/locale/tr/LC_MESSAGES/libiconv.mo\', \'share/locale/uk/LC_MESSAGES/libiconv.mo\', \'share/locale/vi/LC_MESSAGES/libiconv.mo\', \'share/locale/wa/LC_MESSAGES/libiconv.mo\', \'share/locale/zh_CN/LC_MESSAGES/libiconv.mo\', \'share/locale/zh_TW/LC_MESSAGES/libiconv.mo\', \'share/man/man1/iconv.1\', \'share/man/man3/iconv.3\', \'share/man/man3/iconv_close.3\', \'share/man/man3/iconv_open.3\', \'share/man/man3/iconv_open_into.3\', \'share/man/man3/iconvctl.3\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libiconv-1.14-0\', type=1))", "defaults::libpng-1.6.27-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'zlib 1.2.*\',), license=\'libpng license\', license_family=\'Other\', md5=\'f52422bac41c66be8f28f17645fa69cc\', name=\'libpng\', platform=\'linux\', subdir=\'linux-64\', version=\'1.6.27\', fn=\'libpng-1.6.27-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libpng-1.6.27-0.tar.bz2\', files=(\'bin/libpng-config\', \'bin/libpng16-config\', \'bin/png-fix-itxt\', \'bin/pngfix\', \'include/libpng16/png.h\', \'include/libpng16/pngconf.h\', \'include/libpng16/pnglibconf.h\', \'include/png.h\', \'include/pngconf.h\', \'include/pnglibconf.h\', \'lib/libpng.a\', \'lib/libpng.la\', \'lib/libpng.so\', \'lib/libpng16.a\', \'lib/libpng16.la\', \'lib/libpng16.so\', \'lib/libpng16.so.16\', \'lib/libpng16.so.16.27.0\', \'lib/pkgconfig/libpng.pc\', \'lib/pkgconfig/libpng16.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libpng-1.6.27-0\', type=1))", "defaults::libsodium-1.0.10-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'MIT\', md5=\'bdc90579f54cf2cbcd5c0ec67247cfad\', name=\'libsodium\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.10\', fn=\'libsodium-1.0.10-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libsodium-1.0.10-0.tar.bz2\', files=(\'include/sodium.h\', \'include/sodium/core.h\', \'include/sodium/crypto_aead_aes256gcm.h\', \'include/sodium/crypto_aead_chacha20poly1305.h\', \'include/sodium/crypto_auth.h\', \'include/sodium/crypto_auth_hmacsha256.h\', \'include/sodium/crypto_auth_hmacsha512.h\', \'include/sodium/crypto_auth_hmacsha512256.h\', \'include/sodium/crypto_box.h\', \'include/sodium/crypto_box_curve25519xsalsa20poly1305.h\', \'include/sodium/crypto_core_hchacha20.h\', \'include/sodium/crypto_core_hsalsa20.h\', \'include/sodium/crypto_core_salsa20.h\', \'include/sodium/crypto_core_salsa2012.h\', \'include/sodium/crypto_core_salsa208.h\', \'include/sodium/crypto_generichash.h\', \'include/sodium/crypto_generichash_blake2b.h\', \'include/sodium/crypto_hash.h\', \'include/sodium/crypto_hash_sha256.h\', \'include/sodium/crypto_hash_sha512.h\', \'include/sodium/crypto_int32.h\', \'include/sodium/crypto_int64.h\', \'include/sodium/crypto_onetimeauth.h\', \'include/sodium/crypto_onetimeauth_poly1305.h\', \'include/sodium/crypto_pwhash.h\', \'include/sodium/crypto_pwhash_argon2i.h\', \'include/sodium/crypto_pwhash_scryptsalsa208sha256.h\', \'include/sodium/crypto_scalarmult.h\', \'include/sodium/crypto_scalarmult_curve25519.h\', \'include/sodium/crypto_secretbox.h\', \'include/sodium/crypto_secretbox_xsalsa20poly1305.h\', \'include/sodium/crypto_shorthash.h\', \'include/sodium/crypto_shorthash_siphash24.h\', \'include/sodium/crypto_sign.h\', \'include/sodium/crypto_sign_ed25519.h\', \'include/sodium/crypto_sign_edwards25519sha512batch.h\', \'include/sodium/crypto_stream.h\', \'include/sodium/crypto_stream_aes128ctr.h\', \'include/sodium/crypto_stream_chacha20.h\', \'include/sodium/crypto_stream_salsa20.h\', \'include/sodium/crypto_stream_salsa2012.h\', \'include/sodium/crypto_stream_salsa208.h\', \'include/sodium/crypto_stream_xsalsa20.h\', \'include/sodium/crypto_uint16.h\', \'include/sodium/crypto_uint32.h\', \'include/sodium/crypto_uint64.h\', \'include/sodium/crypto_uint8.h\', \'include/sodium/crypto_verify_16.h\', \'include/sodium/crypto_verify_32.h\', \'include/sodium/crypto_verify_64.h\', \'include/sodium/export.h\', \'include/sodium/randombytes.h\', \'include/sodium/randombytes_salsa20_random.h\', \'include/sodium/randombytes_sysrandom.h\', \'include/sodium/runtime.h\', \'include/sodium/utils.h\', \'include/sodium/version.h\', \'lib/libsodium.a\', \'lib/libsodium.la\', \'lib/libsodium.so\', \'lib/libsodium.so.18\', \'lib/libsodium.so.18.1.0\', \'lib/pkgconfig/libsodium.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libsodium-1.0.10-0\', type=1))", "defaults::libtiff-4.0.6-3": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'3\', build_number=3, depends=(\'jbig 2.1\', \'jpeg 9*\', \'xz 5.2.*\', \'zlib 1.2.*\'), license=\'BSD-like\', license_family=\'BSD\', md5=\'d7e271eea139b6fb218ccbbaececa389\', name=\'libtiff\', platform=\'linux\', subdir=\'linux-64\', version=\'4.0.6\', fn=\'libtiff-4.0.6-3.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libtiff-4.0.6-3.tar.bz2\', files=(\'include/tiff.h\', \'include/tiffconf.h\', \'include/tiffio.h\', \'include/tiffio.hxx\', \'include/tiffvers.h\', \'lib/libtiff.a\', \'lib/libtiff.la\', \'lib/libtiff.so\', \'lib/libtiff.so.5\', \'lib/libtiff.so.5.2.4\', \'lib/libtiffxx.a\', \'lib/libtiffxx.la\', \'lib/libtiffxx.so\', \'lib/libtiffxx.so.5\', \'lib/libtiffxx.so.5.2.4\', \'lib/pkgconfig/libtiff-4.pc\', \'share/doc/tiff-4.0.6/COPYRIGHT\', \'share/doc/tiff-4.0.6/ChangeLog\', \'share/doc/tiff-4.0.6/README\', \'share/doc/tiff-4.0.6/README.vms\', \'share/doc/tiff-4.0.6/RELEASE-DATE\', \'share/doc/tiff-4.0.6/TODO\', \'share/doc/tiff-4.0.6/VERSION\', \'share/doc/tiff-4.0.6/html/TIFFTechNote2.html\', \'share/doc/tiff-4.0.6/html/addingtags.html\', \'share/doc/tiff-4.0.6/html/bugs.html\', \'share/doc/tiff-4.0.6/html/build.html\', \'share/doc/tiff-4.0.6/html/contrib.html\', \'share/doc/tiff-4.0.6/html/document.html\', \'share/doc/tiff-4.0.6/html/images.html\', \'share/doc/tiff-4.0.6/html/images/back.gif\', \'share/doc/tiff-4.0.6/html/images/bali.jpg\', \'share/doc/tiff-4.0.6/html/images/cat.gif\', \'share/doc/tiff-4.0.6/html/images/cover.jpg\', \'share/doc/tiff-4.0.6/html/images/cramps.gif\', \'share/doc/tiff-4.0.6/html/images/dave.gif\', \'share/doc/tiff-4.0.6/html/images/info.gif\', \'share/doc/tiff-4.0.6/html/images/jello.jpg\', \'share/doc/tiff-4.0.6/html/images/jim.gif\', \'share/doc/tiff-4.0.6/html/images/note.gif\', \'share/doc/tiff-4.0.6/html/images/oxford.gif\', \'share/doc/tiff-4.0.6/html/images/quad.jpg\', \'share/doc/tiff-4.0.6/html/images/ring.gif\', \'share/doc/tiff-4.0.6/html/images/smallliz.jpg\', \'share/doc/tiff-4.0.6/html/images/strike.gif\', \'share/doc/tiff-4.0.6/html/images/warning.gif\', \'share/doc/tiff-4.0.6/html/index.html\', \'share/doc/tiff-4.0.6/html/internals.html\', \'share/doc/tiff-4.0.6/html/intro.html\', \'share/doc/tiff-4.0.6/html/libtiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFClose.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFDataWidth.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFError.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldDataType.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldName.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldPassCount.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldReadCount.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldTag.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFieldWriteCount.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFFlush.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFGetField.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFOpen.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFPrintDirectory.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFRGBAImage.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadDirectory.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadEncodedStrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadEncodedTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadRGBAImage.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadRGBAStrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadRGBATile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadRawStrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadRawTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadScanline.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFReadTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFSetDirectory.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFSetField.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWarning.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteDirectory.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteEncodedStrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteEncodedTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteRawStrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteRawTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteScanline.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFWriteTile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFbuffer.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFcodec.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFcolor.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFmemory.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFquery.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFsize.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFstrip.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFswab.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/TIFFtile.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/bmp2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/fax2ps.1.html\', \'share/doc/tiff-4.0.6/html/man/fax2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/gif2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/index.html\', \'share/doc/tiff-4.0.6/html/man/libtiff.3tiff.html\', \'share/doc/tiff-4.0.6/html/man/pal2rgb.1.html\', \'share/doc/tiff-4.0.6/html/man/ppm2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/ras2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/raw2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/rgb2ycbcr.1.html\', \'share/doc/tiff-4.0.6/html/man/sgi2tiff.1.html\', \'share/doc/tiff-4.0.6/html/man/thumbnail.1.html\', \'share/doc/tiff-4.0.6/html/man/tiff2bw.1.html\', \'share/doc/tiff-4.0.6/html/man/tiff2pdf.1.html\', \'share/doc/tiff-4.0.6/html/man/tiff2ps.1.html\', \'share/doc/tiff-4.0.6/html/man/tiff2rgba.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffcmp.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffcp.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffcrop.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffdither.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffdump.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffgt.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffinfo.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffmedian.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffset.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffsplit.1.html\', \'share/doc/tiff-4.0.6/html/man/tiffsv.1.html\', \'share/doc/tiff-4.0.6/html/misc.html\', \'share/doc/tiff-4.0.6/html/support.html\', \'share/doc/tiff-4.0.6/html/tools.html\', \'share/doc/tiff-4.0.6/html/v3.4beta007.html\', \'share/doc/tiff-4.0.6/html/v3.4beta016.html\', \'share/doc/tiff-4.0.6/html/v3.4beta018.html\', \'share/doc/tiff-4.0.6/html/v3.4beta024.html\', \'share/doc/tiff-4.0.6/html/v3.4beta028.html\', \'share/doc/tiff-4.0.6/html/v3.4beta029.html\', \'share/doc/tiff-4.0.6/html/v3.4beta031.html\', \'share/doc/tiff-4.0.6/html/v3.4beta032.html\', \'share/doc/tiff-4.0.6/html/v3.4beta033.html\', \'share/doc/tiff-4.0.6/html/v3.4beta034.html\', \'share/doc/tiff-4.0.6/html/v3.4beta035.html\', \'share/doc/tiff-4.0.6/html/v3.4beta036.html\', \'share/doc/tiff-4.0.6/html/v3.5.1.html\', \'share/doc/tiff-4.0.6/html/v3.5.2.html\', \'share/doc/tiff-4.0.6/html/v3.5.3.html\', \'share/doc/tiff-4.0.6/html/v3.5.4.html\', \'share/doc/tiff-4.0.6/html/v3.5.5.html\', \'share/doc/tiff-4.0.6/html/v3.5.6-beta.html\', \'share/doc/tiff-4.0.6/html/v3.5.7.html\', \'share/doc/tiff-4.0.6/html/v3.6.0.html\', \'share/doc/tiff-4.0.6/html/v3.6.1.html\', \'share/doc/tiff-4.0.6/html/v3.7.0.html\', \'share/doc/tiff-4.0.6/html/v3.7.0alpha.html\', \'share/doc/tiff-4.0.6/html/v3.7.0beta.html\', \'share/doc/tiff-4.0.6/html/v3.7.0beta2.html\', \'share/doc/tiff-4.0.6/html/v3.7.1.html\', \'share/doc/tiff-4.0.6/html/v3.7.2.html\', \'share/doc/tiff-4.0.6/html/v3.7.3.html\', \'share/doc/tiff-4.0.6/html/v3.7.4.html\', \'share/doc/tiff-4.0.6/html/v3.8.0.html\', \'share/doc/tiff-4.0.6/html/v3.8.1.html\', \'share/doc/tiff-4.0.6/html/v3.8.2.html\', \'share/doc/tiff-4.0.6/html/v3.9.0beta.html\', \'share/doc/tiff-4.0.6/html/v3.9.1.html\', \'share/doc/tiff-4.0.6/html/v3.9.2.html\', \'share/doc/tiff-4.0.6/html/v4.0.0.html\', \'share/doc/tiff-4.0.6/html/v4.0.1.html\', \'share/doc/tiff-4.0.6/html/v4.0.2.html\', \'share/doc/tiff-4.0.6/html/v4.0.3.html\', \'share/doc/tiff-4.0.6/html/v4.0.4.html\', \'share/doc/tiff-4.0.6/html/v4.0.4beta.html\', \'share/doc/tiff-4.0.6/html/v4.0.5.html\', \'share/doc/tiff-4.0.6/html/v4.0.6.html\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libtiff-4.0.6-3\', type=1))", "defaults::libxcb-1.12-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(), license=\'MIT\', md5=\'3375e9a852d4ae539fbbb6a948eb2f7e\', name=\'libxcb\', platform=\'linux\', subdir=\'linux-64\', version=\'1.12\', fn=\'libxcb-1.12-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libxcb-1.12-1.tar.bz2\', files=(\'include/xcb/bigreq.h\', \'include/xcb/composite.h\', \'include/xcb/damage.h\', \'include/xcb/dpms.h\', \'include/xcb/dri2.h\', \'include/xcb/dri3.h\', \'include/xcb/glx.h\', \'include/xcb/present.h\', \'include/xcb/randr.h\', \'include/xcb/record.h\', \'include/xcb/render.h\', \'include/xcb/res.h\', \'include/xcb/screensaver.h\', \'include/xcb/shape.h\', \'include/xcb/shm.h\', \'include/xcb/sync.h\', \'include/xcb/xc_misc.h\', \'include/xcb/xcb.h\', \'include/xcb/xcbext.h\', \'include/xcb/xevie.h\', \'include/xcb/xf86dri.h\', \'include/xcb/xfixes.h\', \'include/xcb/xinerama.h\', \'include/xcb/xinput.h\', \'include/xcb/xkb.h\', \'include/xcb/xprint.h\', \'include/xcb/xproto.h\', \'include/xcb/xselinux.h\', \'include/xcb/xtest.h\', \'include/xcb/xv.h\', \'include/xcb/xvmc.h\', \'lib/libxcb-composite.a\', \'lib/libxcb-composite.la\', \'lib/libxcb-composite.so\', \'lib/libxcb-composite.so.0\', \'lib/libxcb-composite.so.0.0.0\', \'lib/libxcb-damage.a\', \'lib/libxcb-damage.la\', \'lib/libxcb-damage.so\', \'lib/libxcb-damage.so.0\', \'lib/libxcb-damage.so.0.0.0\', \'lib/libxcb-dpms.a\', \'lib/libxcb-dpms.la\', \'lib/libxcb-dpms.so\', \'lib/libxcb-dpms.so.0\', \'lib/libxcb-dpms.so.0.0.0\', \'lib/libxcb-dri2.a\', \'lib/libxcb-dri2.la\', \'lib/libxcb-dri2.so\', \'lib/libxcb-dri2.so.0\', \'lib/libxcb-dri2.so.0.0.0\', \'lib/libxcb-dri3.a\', \'lib/libxcb-dri3.la\', \'lib/libxcb-dri3.so\', \'lib/libxcb-dri3.so.0\', \'lib/libxcb-dri3.so.0.0.0\', \'lib/libxcb-glx.a\', \'lib/libxcb-glx.la\', \'lib/libxcb-glx.so\', \'lib/libxcb-glx.so.0\', \'lib/libxcb-glx.so.0.0.0\', \'lib/libxcb-present.a\', \'lib/libxcb-present.la\', \'lib/libxcb-present.so\', \'lib/libxcb-present.so.0\', \'lib/libxcb-present.so.0.0.0\', \'lib/libxcb-randr.a\', \'lib/libxcb-randr.la\', \'lib/libxcb-randr.so\', \'lib/libxcb-randr.so.0\', \'lib/libxcb-randr.so.0.1.0\', \'lib/libxcb-record.a\', \'lib/libxcb-record.la\', \'lib/libxcb-record.so\', \'lib/libxcb-record.so.0\', \'lib/libxcb-record.so.0.0.0\', \'lib/libxcb-render.a\', \'lib/libxcb-render.la\', \'lib/libxcb-render.so\', \'lib/libxcb-render.so.0\', \'lib/libxcb-render.so.0.0.0\', \'lib/libxcb-res.a\', \'lib/libxcb-res.la\', \'lib/libxcb-res.so\', \'lib/libxcb-res.so.0\', \'lib/libxcb-res.so.0.0.0\', \'lib/libxcb-screensaver.a\', \'lib/libxcb-screensaver.la\', \'lib/libxcb-screensaver.so\', \'lib/libxcb-screensaver.so.0\', \'lib/libxcb-screensaver.so.0.0.0\', \'lib/libxcb-shape.a\', \'lib/libxcb-shape.la\', \'lib/libxcb-shape.so\', \'lib/libxcb-shape.so.0\', \'lib/libxcb-shape.so.0.0.0\', \'lib/libxcb-shm.a\', \'lib/libxcb-shm.la\', \'lib/libxcb-shm.so\', \'lib/libxcb-shm.so.0\', \'lib/libxcb-shm.so.0.0.0\', \'lib/libxcb-sync.a\', \'lib/libxcb-sync.la\', \'lib/libxcb-sync.so\', \'lib/libxcb-sync.so.1\', \'lib/libxcb-sync.so.1.0.0\', \'lib/libxcb-xf86dri.a\', \'lib/libxcb-xf86dri.la\', \'lib/libxcb-xf86dri.so\', \'lib/libxcb-xf86dri.so.0\', \'lib/libxcb-xf86dri.so.0.0.0\', \'lib/libxcb-xfixes.a\', \'lib/libxcb-xfixes.la\', \'lib/libxcb-xfixes.so\', \'lib/libxcb-xfixes.so.0\', \'lib/libxcb-xfixes.so.0.0.0\', \'lib/libxcb-xinerama.a\', \'lib/libxcb-xinerama.la\', \'lib/libxcb-xinerama.so\', \'lib/libxcb-xinerama.so.0\', \'lib/libxcb-xinerama.so.0.0.0\', \'lib/libxcb-xkb.a\', \'lib/libxcb-xkb.la\', \'lib/libxcb-xkb.so\', \'lib/libxcb-xkb.so.1\', \'lib/libxcb-xkb.so.1.0.0\', \'lib/libxcb-xtest.a\', \'lib/libxcb-xtest.la\', \'lib/libxcb-xtest.so\', \'lib/libxcb-xtest.so.0\', \'lib/libxcb-xtest.so.0.0.0\', \'lib/libxcb-xv.a\', \'lib/libxcb-xv.la\', \'lib/libxcb-xv.so\', \'lib/libxcb-xv.so.0\', \'lib/libxcb-xv.so.0.0.0\', \'lib/libxcb-xvmc.a\', \'lib/libxcb-xvmc.la\', \'lib/libxcb-xvmc.so\', \'lib/libxcb-xvmc.so.0\', \'lib/libxcb-xvmc.so.0.0.0\', \'lib/libxcb.a\', \'lib/libxcb.la\', \'lib/libxcb.so\', \'lib/libxcb.so.1\', \'lib/libxcb.so.1.1.0\', \'lib/pkgconfig/xcb-composite.pc\', \'lib/pkgconfig/xcb-damage.pc\', \'lib/pkgconfig/xcb-dpms.pc\', \'lib/pkgconfig/xcb-dri2.pc\', \'lib/pkgconfig/xcb-dri3.pc\', \'lib/pkgconfig/xcb-glx.pc\', \'lib/pkgconfig/xcb-present.pc\', \'lib/pkgconfig/xcb-randr.pc\', \'lib/pkgconfig/xcb-record.pc\', \'lib/pkgconfig/xcb-render.pc\', \'lib/pkgconfig/xcb-res.pc\', \'lib/pkgconfig/xcb-screensaver.pc\', \'lib/pkgconfig/xcb-shape.pc\', \'lib/pkgconfig/xcb-shm.pc\', \'lib/pkgconfig/xcb-sync.pc\', \'lib/pkgconfig/xcb-xf86dri.pc\', \'lib/pkgconfig/xcb-xfixes.pc\', \'lib/pkgconfig/xcb-xinerama.pc\', \'lib/pkgconfig/xcb-xkb.pc\', \'lib/pkgconfig/xcb-xtest.pc\', \'lib/pkgconfig/xcb-xv.pc\', \'lib/pkgconfig/xcb-xvmc.pc\', \'lib/pkgconfig/xcb.pc\', \'share/doc/libxcb/tutorial/index.html\', \'share/doc/libxcb/tutorial/xcb.css\', \'share/man/man3/xcb-examples.3\', \'share/man/man3/xcb-requests.3\', \'share/man/man3/xcb_alloc_color.3\', \'share/man/man3/xcb_alloc_color_cells.3\', \'share/man/man3/xcb_alloc_color_cells_masks.3\', \'share/man/man3/xcb_alloc_color_cells_masks_end.3\', \'share/man/man3/xcb_alloc_color_cells_masks_length.3\', \'share/man/man3/xcb_alloc_color_cells_pixels.3\', \'share/man/man3/xcb_alloc_color_cells_pixels_end.3\', \'share/man/man3/xcb_alloc_color_cells_pixels_length.3\', \'share/man/man3/xcb_alloc_color_cells_reply.3\', \'share/man/man3/xcb_alloc_color_cells_unchecked.3\', \'share/man/man3/xcb_alloc_color_planes.3\', \'share/man/man3/xcb_alloc_color_planes_pixels.3\', \'share/man/man3/xcb_alloc_color_planes_pixels_end.3\', \'share/man/man3/xcb_alloc_color_planes_pixels_length.3\', \'share/man/man3/xcb_alloc_color_planes_reply.3\', \'share/man/man3/xcb_alloc_color_planes_unchecked.3\', \'share/man/man3/xcb_alloc_color_reply.3\', \'share/man/man3/xcb_alloc_color_unchecked.3\', \'share/man/man3/xcb_alloc_named_color.3\', \'share/man/man3/xcb_alloc_named_color_reply.3\', \'share/man/man3/xcb_alloc_named_color_unchecked.3\', \'share/man/man3/xcb_allow_events.3\', \'share/man/man3/xcb_allow_events_checked.3\', \'share/man/man3/xcb_bell.3\', \'share/man/man3/xcb_bell_checked.3\', \'share/man/man3/xcb_big_requests_enable.3\', \'share/man/man3/xcb_big_requests_enable_reply.3\', \'share/man/man3/xcb_big_requests_enable_unchecked.3\', \'share/man/man3/xcb_button_press_event_t.3\', \'share/man/man3/xcb_change_active_pointer_grab.3\', \'share/man/man3/xcb_change_active_pointer_grab_checked.3\', \'share/man/man3/xcb_change_gc.3\', \'share/man/man3/xcb_change_gc_checked.3\', \'share/man/man3/xcb_change_hosts.3\', \'share/man/man3/xcb_change_hosts_checked.3\', \'share/man/man3/xcb_change_keyboard_control.3\', \'share/man/man3/xcb_change_keyboard_control_checked.3\', \'share/man/man3/xcb_change_keyboard_mapping.3\', \'share/man/man3/xcb_change_keyboard_mapping_checked.3\', \'share/man/man3/xcb_change_pointer_control.3\', \'share/man/man3/xcb_change_pointer_control_checked.3\', \'share/man/man3/xcb_change_property.3\', \'share/man/man3/xcb_change_property_checked.3\', \'share/man/man3/xcb_change_save_set.3\', \'share/man/man3/xcb_change_save_set_checked.3\', \'share/man/man3/xcb_change_window_attributes.3\', \'share/man/man3/xcb_change_window_attributes_checked.3\', \'share/man/man3/xcb_circulate_notify_event_t.3\', \'share/man/man3/xcb_circulate_window.3\', \'share/man/man3/xcb_circulate_window_checked.3\', \'share/man/man3/xcb_clear_area.3\', \'share/man/man3/xcb_clear_area_checked.3\', \'share/man/man3/xcb_client_message_event_t.3\', \'share/man/man3/xcb_close_font.3\', \'share/man/man3/xcb_close_font_checked.3\', \'share/man/man3/xcb_colormap_notify_event_t.3\', \'share/man/man3/xcb_composite_create_region_from_border_clip.3\', \'share/man/man3/xcb_composite_create_region_from_border_clip_checked.3\', \'share/man/man3/xcb_composite_get_overlay_window.3\', \'share/man/man3/xcb_composite_get_overlay_window_reply.3\', \'share/man/man3/xcb_composite_get_overlay_window_unchecked.3\', \'share/man/man3/xcb_composite_name_window_pixmap.3\', \'share/man/man3/xcb_composite_name_window_pixmap_checked.3\', \'share/man/man3/xcb_composite_query_version.3\', \'share/man/man3/xcb_composite_query_version_reply.3\', \'share/man/man3/xcb_composite_query_version_unchecked.3\', \'share/man/man3/xcb_composite_redirect_subwindows.3\', \'share/man/man3/xcb_composite_redirect_subwindows_checked.3\', \'share/man/man3/xcb_composite_redirect_window.3\', \'share/man/man3/xcb_composite_redirect_window_checked.3\', \'share/man/man3/xcb_composite_release_overlay_window.3\', \'share/man/man3/xcb_composite_release_overlay_window_checked.3\', \'share/man/man3/xcb_composite_unredirect_subwindows.3\', \'share/man/man3/xcb_composite_unredirect_subwindows_checked.3\', \'share/man/man3/xcb_composite_unredirect_window.3\', \'share/man/man3/xcb_composite_unredirect_window_checked.3\', \'share/man/man3/xcb_configure_notify_event_t.3\', \'share/man/man3/xcb_configure_request_event_t.3\', \'share/man/man3/xcb_configure_window.3\', \'share/man/man3/xcb_configure_window_checked.3\', \'share/man/man3/xcb_convert_selection.3\', \'share/man/man3/xcb_convert_selection_checked.3\', \'share/man/man3/xcb_copy_area.3\', \'share/man/man3/xcb_copy_area_checked.3\', \'share/man/man3/xcb_copy_colormap_and_free.3\', \'share/man/man3/xcb_copy_colormap_and_free_checked.3\', \'share/man/man3/xcb_copy_gc.3\', \'share/man/man3/xcb_copy_gc_checked.3\', \'share/man/man3/xcb_copy_plane.3\', \'share/man/man3/xcb_copy_plane_checked.3\', \'share/man/man3/xcb_create_colormap.3\', \'share/man/man3/xcb_create_colormap_checked.3\', \'share/man/man3/xcb_create_cursor.3\', \'share/man/man3/xcb_create_cursor_checked.3\', \'share/man/man3/xcb_create_gc.3\', \'share/man/man3/xcb_create_gc_checked.3\', \'share/man/man3/xcb_create_glyph_cursor.3\', \'share/man/man3/xcb_create_glyph_cursor_checked.3\', \'share/man/man3/xcb_create_notify_event_t.3\', \'share/man/man3/xcb_create_pixmap.3\', \'share/man/man3/xcb_create_pixmap_checked.3\', \'share/man/man3/xcb_create_window.3\', \'share/man/man3/xcb_create_window_checked.3\', \'share/man/man3/xcb_damage_add.3\', \'share/man/man3/xcb_damage_add_checked.3\', \'share/man/man3/xcb_damage_create.3\', \'share/man/man3/xcb_damage_create_checked.3\', \'share/man/man3/xcb_damage_destroy.3\', \'share/man/man3/xcb_damage_destroy_checked.3\', \'share/man/man3/xcb_damage_notify_event_t.3\', \'share/man/man3/xcb_damage_query_version.3\', \'share/man/man3/xcb_damage_query_version_reply.3\', \'share/man/man3/xcb_damage_query_version_unchecked.3\', \'share/man/man3/xcb_damage_subtract.3\', \'share/man/man3/xcb_damage_subtract_checked.3\', \'share/man/man3/xcb_delete_property.3\', \'share/man/man3/xcb_delete_property_checked.3\', \'share/man/man3/xcb_destroy_notify_event_t.3\', \'share/man/man3/xcb_destroy_subwindows.3\', \'share/man/man3/xcb_destroy_subwindows_checked.3\', \'share/man/man3/xcb_destroy_window.3\', \'share/man/man3/xcb_destroy_window_checked.3\', \'share/man/man3/xcb_dpms_capable.3\', \'share/man/man3/xcb_dpms_capable_reply.3\', \'share/man/man3/xcb_dpms_capable_unchecked.3\', \'share/man/man3/xcb_dpms_disable.3\', \'share/man/man3/xcb_dpms_disable_checked.3\', \'share/man/man3/xcb_dpms_enable.3\', \'share/man/man3/xcb_dpms_enable_checked.3\', \'share/man/man3/xcb_dpms_force_level.3\', \'share/man/man3/xcb_dpms_force_level_checked.3\', \'share/man/man3/xcb_dpms_get_timeouts.3\', \'share/man/man3/xcb_dpms_get_timeouts_reply.3\', \'share/man/man3/xcb_dpms_get_timeouts_unchecked.3\', \'share/man/man3/xcb_dpms_get_version.3\', \'share/man/man3/xcb_dpms_get_version_reply.3\', \'share/man/man3/xcb_dpms_get_version_unchecked.3\', \'share/man/man3/xcb_dpms_info.3\', \'share/man/man3/xcb_dpms_info_reply.3\', \'share/man/man3/xcb_dpms_info_unchecked.3\', \'share/man/man3/xcb_dpms_set_timeouts.3\', \'share/man/man3/xcb_dpms_set_timeouts_checked.3\', \'share/man/man3/xcb_dri2_authenticate.3\', \'share/man/man3/xcb_dri2_authenticate_reply.3\', \'share/man/man3/xcb_dri2_authenticate_unchecked.3\', \'share/man/man3/xcb_dri2_buffer_swap_complete_event_t.3\', \'share/man/man3/xcb_dri2_connect.3\', \'share/man/man3/xcb_dri2_connect_alignment_pad.3\', \'share/man/man3/xcb_dri2_connect_alignment_pad_end.3\', \'share/man/man3/xcb_dri2_connect_alignment_pad_length.3\', \'share/man/man3/xcb_dri2_connect_device_name.3\', \'share/man/man3/xcb_dri2_connect_device_name_end.3\', \'share/man/man3/xcb_dri2_connect_device_name_length.3\', \'share/man/man3/xcb_dri2_connect_driver_name.3\', \'share/man/man3/xcb_dri2_connect_driver_name_end.3\', \'share/man/man3/xcb_dri2_connect_driver_name_length.3\', \'share/man/man3/xcb_dri2_connect_reply.3\', \'share/man/man3/xcb_dri2_connect_unchecked.3\', \'share/man/man3/xcb_dri2_copy_region.3\', \'share/man/man3/xcb_dri2_copy_region_reply.3\', \'share/man/man3/xcb_dri2_copy_region_unchecked.3\', \'share/man/man3/xcb_dri2_create_drawable.3\', \'share/man/man3/xcb_dri2_create_drawable_checked.3\', \'share/man/man3/xcb_dri2_destroy_drawable.3\', \'share/man/man3/xcb_dri2_destroy_drawable_checked.3\', \'share/man/man3/xcb_dri2_get_buffers.3\', \'share/man/man3/xcb_dri2_get_buffers_buffers.3\', \'share/man/man3/xcb_dri2_get_buffers_buffers_iterator.3\', \'share/man/man3/xcb_dri2_get_buffers_buffers_length.3\', \'share/man/man3/xcb_dri2_get_buffers_reply.3\', \'share/man/man3/xcb_dri2_get_buffers_unchecked.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format_buffers.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format_buffers_iterator.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format_buffers_length.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format_reply.3\', \'share/man/man3/xcb_dri2_get_buffers_with_format_unchecked.3\', \'share/man/man3/xcb_dri2_get_msc.3\', \'share/man/man3/xcb_dri2_get_msc_reply.3\', \'share/man/man3/xcb_dri2_get_msc_unchecked.3\', \'share/man/man3/xcb_dri2_get_param.3\', \'share/man/man3/xcb_dri2_get_param_reply.3\', \'share/man/man3/xcb_dri2_get_param_unchecked.3\', \'share/man/man3/xcb_dri2_invalidate_buffers_event_t.3\', \'share/man/man3/xcb_dri2_query_version.3\', \'share/man/man3/xcb_dri2_query_version_reply.3\', \'share/man/man3/xcb_dri2_query_version_unchecked.3\', \'share/man/man3/xcb_dri2_swap_buffers.3\', \'share/man/man3/xcb_dri2_swap_buffers_reply.3\', \'share/man/man3/xcb_dri2_swap_buffers_unchecked.3\', \'share/man/man3/xcb_dri2_swap_interval.3\', \'share/man/man3/xcb_dri2_swap_interval_checked.3\', \'share/man/man3/xcb_dri2_wait_msc.3\', \'share/man/man3/xcb_dri2_wait_msc_reply.3\', \'share/man/man3/xcb_dri2_wait_msc_unchecked.3\', \'share/man/man3/xcb_dri2_wait_sbc.3\', \'share/man/man3/xcb_dri2_wait_sbc_reply.3\', \'share/man/man3/xcb_dri2_wait_sbc_unchecked.3\', \'share/man/man3/xcb_dri3_buffer_from_pixmap.3\', \'share/man/man3/xcb_dri3_buffer_from_pixmap_reply.3\', \'share/man/man3/xcb_dri3_buffer_from_pixmap_unchecked.3\', \'share/man/man3/xcb_dri3_fd_from_fence.3\', \'share/man/man3/xcb_dri3_fd_from_fence_reply.3\', \'share/man/man3/xcb_dri3_fd_from_fence_unchecked.3\', \'share/man/man3/xcb_dri3_fence_from_fd.3\', \'share/man/man3/xcb_dri3_fence_from_fd_checked.3\', \'share/man/man3/xcb_dri3_open.3\', \'share/man/man3/xcb_dri3_open_reply.3\', \'share/man/man3/xcb_dri3_open_unchecked.3\', \'share/man/man3/xcb_dri3_pixmap_from_buffer.3\', \'share/man/man3/xcb_dri3_pixmap_from_buffer_checked.3\', \'share/man/man3/xcb_dri3_query_version.3\', \'share/man/man3/xcb_dri3_query_version_reply.3\', \'share/man/man3/xcb_dri3_query_version_unchecked.3\', \'share/man/man3/xcb_enter_notify_event_t.3\', \'share/man/man3/xcb_expose_event_t.3\', \'share/man/man3/xcb_fill_poly.3\', \'share/man/man3/xcb_fill_poly_checked.3\', \'share/man/man3/xcb_focus_in_event_t.3\', \'share/man/man3/xcb_force_screen_saver.3\', \'share/man/man3/xcb_force_screen_saver_checked.3\', \'share/man/man3/xcb_free_colormap.3\', \'share/man/man3/xcb_free_colormap_checked.3\', \'share/man/man3/xcb_free_colors.3\', \'share/man/man3/xcb_free_colors_checked.3\', \'share/man/man3/xcb_free_cursor.3\', \'share/man/man3/xcb_free_cursor_checked.3\', \'share/man/man3/xcb_free_gc.3\', \'share/man/man3/xcb_free_gc_checked.3\', \'share/man/man3/xcb_free_pixmap.3\', \'share/man/man3/xcb_free_pixmap_checked.3\', \'share/man/man3/xcb_ge_generic_event_t.3\', \'share/man/man3/xcb_get_atom_name.3\', \'share/man/man3/xcb_get_atom_name_name.3\', \'share/man/man3/xcb_get_atom_name_name_end.3\', \'share/man/man3/xcb_get_atom_name_name_length.3\', \'share/man/man3/xcb_get_atom_name_reply.3\', \'share/man/man3/xcb_get_atom_name_unchecked.3\', \'share/man/man3/xcb_get_font_path.3\', \'share/man/man3/xcb_get_font_path_path_iterator.3\', \'share/man/man3/xcb_get_font_path_path_length.3\', \'share/man/man3/xcb_get_font_path_reply.3\', \'share/man/man3/xcb_get_font_path_unchecked.3\', \'share/man/man3/xcb_get_geometry.3\', \'share/man/man3/xcb_get_geometry_reply.3\', \'share/man/man3/xcb_get_geometry_unchecked.3\', \'share/man/man3/xcb_get_image.3\', \'share/man/man3/xcb_get_image_data.3\', \'share/man/man3/xcb_get_image_data_end.3\', \'share/man/man3/xcb_get_image_data_length.3\', \'share/man/man3/xcb_get_image_reply.3\', \'share/man/man3/xcb_get_image_unchecked.3\', \'share/man/man3/xcb_get_input_focus.3\', \'share/man/man3/xcb_get_input_focus_reply.3\', \'share/man/man3/xcb_get_input_focus_unchecked.3\', \'share/man/man3/xcb_get_keyboard_control.3\', \'share/man/man3/xcb_get_keyboard_control_reply.3\', \'share/man/man3/xcb_get_keyboard_control_unchecked.3\', \'share/man/man3/xcb_get_keyboard_mapping.3\', \'share/man/man3/xcb_get_keyboard_mapping_keysyms.3\', \'share/man/man3/xcb_get_keyboard_mapping_keysyms_end.3\', \'share/man/man3/xcb_get_keyboard_mapping_keysyms_length.3\', \'share/man/man3/xcb_get_keyboard_mapping_reply.3\', \'share/man/man3/xcb_get_keyboard_mapping_unchecked.3\', \'share/man/man3/xcb_get_modifier_mapping.3\', \'share/man/man3/xcb_get_modifier_mapping_keycodes.3\', \'share/man/man3/xcb_get_modifier_mapping_keycodes_end.3\', \'share/man/man3/xcb_get_modifier_mapping_keycodes_length.3\', \'share/man/man3/xcb_get_modifier_mapping_reply.3\', \'share/man/man3/xcb_get_modifier_mapping_unchecked.3\', \'share/man/man3/xcb_get_motion_events.3\', \'share/man/man3/xcb_get_motion_events_events.3\', \'share/man/man3/xcb_get_motion_events_events_iterator.3\', \'share/man/man3/xcb_get_motion_events_events_length.3\', \'share/man/man3/xcb_get_motion_events_reply.3\', \'share/man/man3/xcb_get_motion_events_unchecked.3\', \'share/man/man3/xcb_get_pointer_control.3\', \'share/man/man3/xcb_get_pointer_control_reply.3\', \'share/man/man3/xcb_get_pointer_control_unchecked.3\', \'share/man/man3/xcb_get_pointer_mapping.3\', \'share/man/man3/xcb_get_pointer_mapping_map.3\', \'share/man/man3/xcb_get_pointer_mapping_map_end.3\', \'share/man/man3/xcb_get_pointer_mapping_map_length.3\', \'share/man/man3/xcb_get_pointer_mapping_reply.3\', \'share/man/man3/xcb_get_pointer_mapping_unchecked.3\', \'share/man/man3/xcb_get_property.3\', \'share/man/man3/xcb_get_property_reply.3\', \'share/man/man3/xcb_get_property_unchecked.3\', \'share/man/man3/xcb_get_property_value.3\', \'share/man/man3/xcb_get_property_value_end.3\', \'share/man/man3/xcb_get_property_value_length.3\', \'share/man/man3/xcb_get_screen_saver.3\', \'share/man/man3/xcb_get_screen_saver_reply.3\', \'share/man/man3/xcb_get_screen_saver_unchecked.3\', \'share/man/man3/xcb_get_selection_owner.3\', \'share/man/man3/xcb_get_selection_owner_reply.3\', \'share/man/man3/xcb_get_selection_owner_unchecked.3\', \'share/man/man3/xcb_get_window_attributes.3\', \'share/man/man3/xcb_get_window_attributes_reply.3\', \'share/man/man3/xcb_get_window_attributes_unchecked.3\', \'share/man/man3/xcb_glx_are_textures_resident.3\', \'share/man/man3/xcb_glx_are_textures_resident_data.3\', \'share/man/man3/xcb_glx_are_textures_resident_data_end.3\', \'share/man/man3/xcb_glx_are_textures_resident_data_length.3\', \'share/man/man3/xcb_glx_are_textures_resident_reply.3\', \'share/man/man3/xcb_glx_are_textures_resident_unchecked.3\', \'share/man/man3/xcb_glx_buffer_swap_complete_event_t.3\', \'share/man/man3/xcb_glx_change_drawable_attributes.3\', \'share/man/man3/xcb_glx_change_drawable_attributes_checked.3\', \'share/man/man3/xcb_glx_client_info.3\', \'share/man/man3/xcb_glx_client_info_checked.3\', \'share/man/man3/xcb_glx_copy_context.3\', \'share/man/man3/xcb_glx_copy_context_checked.3\', \'share/man/man3/xcb_glx_create_context.3\', \'share/man/man3/xcb_glx_create_context_attribs_arb.3\', \'share/man/man3/xcb_glx_create_context_attribs_arb_checked.3\', \'share/man/man3/xcb_glx_create_context_checked.3\', \'share/man/man3/xcb_glx_create_glx_pixmap.3\', \'share/man/man3/xcb_glx_create_glx_pixmap_checked.3\', \'share/man/man3/xcb_glx_create_new_context.3\', \'share/man/man3/xcb_glx_create_new_context_checked.3\', \'share/man/man3/xcb_glx_create_pbuffer.3\', \'share/man/man3/xcb_glx_create_pbuffer_checked.3\', \'share/man/man3/xcb_glx_create_pixmap.3\', \'share/man/man3/xcb_glx_create_pixmap_checked.3\', \'share/man/man3/xcb_glx_create_window.3\', \'share/man/man3/xcb_glx_create_window_checked.3\', \'share/man/man3/xcb_glx_delete_lists.3\', \'share/man/man3/xcb_glx_delete_lists_checked.3\', \'share/man/man3/xcb_glx_delete_queries_arb.3\', \'share/man/man3/xcb_glx_delete_queries_arb_checked.3\', \'share/man/man3/xcb_glx_delete_textures.3\', \'share/man/man3/xcb_glx_delete_textures_checked.3\', \'share/man/man3/xcb_glx_delete_window.3\', \'share/man/man3/xcb_glx_delete_window_checked.3\', \'share/man/man3/xcb_glx_destroy_context.3\', \'share/man/man3/xcb_glx_destroy_context_checked.3\', \'share/man/man3/xcb_glx_destroy_glx_pixmap.3\', \'share/man/man3/xcb_glx_destroy_glx_pixmap_checked.3\', \'share/man/man3/xcb_glx_destroy_pbuffer.3\', \'share/man/man3/xcb_glx_destroy_pbuffer_checked.3\', \'share/man/man3/xcb_glx_destroy_pixmap.3\', \'share/man/man3/xcb_glx_destroy_pixmap_checked.3\', \'share/man/man3/xcb_glx_end_list.3\', \'share/man/man3/xcb_glx_end_list_checked.3\', \'share/man/man3/xcb_glx_feedback_buffer.3\', \'share/man/man3/xcb_glx_feedback_buffer_checked.3\', \'share/man/man3/xcb_glx_finish.3\', \'share/man/man3/xcb_glx_finish_reply.3\', \'share/man/man3/xcb_glx_finish_unchecked.3\', \'share/man/man3/xcb_glx_flush.3\', \'share/man/man3/xcb_glx_flush_checked.3\', \'share/man/man3/xcb_glx_gen_lists.3\', \'share/man/man3/xcb_glx_gen_lists_reply.3\', \'share/man/man3/xcb_glx_gen_lists_unchecked.3\', \'share/man/man3/xcb_glx_gen_queries_arb.3\', \'share/man/man3/xcb_glx_gen_queries_arb_data.3\', \'share/man/man3/xcb_glx_gen_queries_arb_data_end.3\', \'share/man/man3/xcb_glx_gen_queries_arb_data_length.3\', \'share/man/man3/xcb_glx_gen_queries_arb_reply.3\', \'share/man/man3/xcb_glx_gen_queries_arb_unchecked.3\', \'share/man/man3/xcb_glx_gen_textures.3\', \'share/man/man3/xcb_glx_gen_textures_data.3\', \'share/man/man3/xcb_glx_gen_textures_data_end.3\', \'share/man/man3/xcb_glx_gen_textures_data_length.3\', \'share/man/man3/xcb_glx_gen_textures_reply.3\', \'share/man/man3/xcb_glx_gen_textures_unchecked.3\', \'share/man/man3/xcb_glx_get_booleanv.3\', \'share/man/man3/xcb_glx_get_booleanv_data.3\', \'share/man/man3/xcb_glx_get_booleanv_data_end.3\', \'share/man/man3/xcb_glx_get_booleanv_data_length.3\', \'share/man/man3/xcb_glx_get_booleanv_reply.3\', \'share/man/man3/xcb_glx_get_booleanv_unchecked.3\', \'share/man/man3/xcb_glx_get_clip_plane.3\', \'share/man/man3/xcb_glx_get_clip_plane_data.3\', \'share/man/man3/xcb_glx_get_clip_plane_data_end.3\', \'share/man/man3/xcb_glx_get_clip_plane_data_length.3\', \'share/man/man3/xcb_glx_get_clip_plane_reply.3\', \'share/man/man3/xcb_glx_get_clip_plane_unchecked.3\', \'share/man/man3/xcb_glx_get_color_table.3\', \'share/man/man3/xcb_glx_get_color_table_data.3\', \'share/man/man3/xcb_glx_get_color_table_data_end.3\', \'share/man/man3/xcb_glx_get_color_table_data_length.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_color_table_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_color_table_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_color_table_reply.3\', \'share/man/man3/xcb_glx_get_color_table_unchecked.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb_data.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb_data_end.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb_data_length.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb_reply.3\', \'share/man/man3/xcb_glx_get_compressed_tex_image_arb_unchecked.3\', \'share/man/man3/xcb_glx_get_convolution_filter.3\', \'share/man/man3/xcb_glx_get_convolution_filter_data.3\', \'share/man/man3/xcb_glx_get_convolution_filter_data_end.3\', \'share/man/man3/xcb_glx_get_convolution_filter_data_length.3\', \'share/man/man3/xcb_glx_get_convolution_filter_reply.3\', \'share/man/man3/xcb_glx_get_convolution_filter_unchecked.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_convolution_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_convolution_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_doublev.3\', \'share/man/man3/xcb_glx_get_doublev_data.3\', \'share/man/man3/xcb_glx_get_doublev_data_end.3\', \'share/man/man3/xcb_glx_get_doublev_data_length.3\', \'share/man/man3/xcb_glx_get_doublev_reply.3\', \'share/man/man3/xcb_glx_get_doublev_unchecked.3\', \'share/man/man3/xcb_glx_get_drawable_attributes.3\', \'share/man/man3/xcb_glx_get_drawable_attributes_attribs.3\', \'share/man/man3/xcb_glx_get_drawable_attributes_attribs_end.3\', \'share/man/man3/xcb_glx_get_drawable_attributes_attribs_length.3\', \'share/man/man3/xcb_glx_get_drawable_attributes_reply.3\', \'share/man/man3/xcb_glx_get_drawable_attributes_unchecked.3\', \'share/man/man3/xcb_glx_get_error.3\', \'share/man/man3/xcb_glx_get_error_reply.3\', \'share/man/man3/xcb_glx_get_error_unchecked.3\', \'share/man/man3/xcb_glx_get_fb_configs.3\', \'share/man/man3/xcb_glx_get_fb_configs_property_list.3\', \'share/man/man3/xcb_glx_get_fb_configs_property_list_end.3\', \'share/man/man3/xcb_glx_get_fb_configs_property_list_length.3\', \'share/man/man3/xcb_glx_get_fb_configs_reply.3\', \'share/man/man3/xcb_glx_get_fb_configs_unchecked.3\', \'share/man/man3/xcb_glx_get_floatv.3\', \'share/man/man3/xcb_glx_get_floatv_data.3\', \'share/man/man3/xcb_glx_get_floatv_data_end.3\', \'share/man/man3/xcb_glx_get_floatv_data_length.3\', \'share/man/man3/xcb_glx_get_floatv_reply.3\', \'share/man/man3/xcb_glx_get_floatv_unchecked.3\', \'share/man/man3/xcb_glx_get_histogram.3\', \'share/man/man3/xcb_glx_get_histogram_data.3\', \'share/man/man3/xcb_glx_get_histogram_data_end.3\', \'share/man/man3/xcb_glx_get_histogram_data_length.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_histogram_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_histogram_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_histogram_reply.3\', \'share/man/man3/xcb_glx_get_histogram_unchecked.3\', \'share/man/man3/xcb_glx_get_integerv.3\', \'share/man/man3/xcb_glx_get_integerv_data.3\', \'share/man/man3/xcb_glx_get_integerv_data_end.3\', \'share/man/man3/xcb_glx_get_integerv_data_length.3\', \'share/man/man3/xcb_glx_get_integerv_reply.3\', \'share/man/man3/xcb_glx_get_integerv_unchecked.3\', \'share/man/man3/xcb_glx_get_lightfv.3\', \'share/man/man3/xcb_glx_get_lightfv_data.3\', \'share/man/man3/xcb_glx_get_lightfv_data_end.3\', \'share/man/man3/xcb_glx_get_lightfv_data_length.3\', \'share/man/man3/xcb_glx_get_lightfv_reply.3\', \'share/man/man3/xcb_glx_get_lightfv_unchecked.3\', \'share/man/man3/xcb_glx_get_lightiv.3\', \'share/man/man3/xcb_glx_get_lightiv_data.3\', \'share/man/man3/xcb_glx_get_lightiv_data_end.3\', \'share/man/man3/xcb_glx_get_lightiv_data_length.3\', \'share/man/man3/xcb_glx_get_lightiv_reply.3\', \'share/man/man3/xcb_glx_get_lightiv_unchecked.3\', \'share/man/man3/xcb_glx_get_mapdv.3\', \'share/man/man3/xcb_glx_get_mapdv_data.3\', \'share/man/man3/xcb_glx_get_mapdv_data_end.3\', \'share/man/man3/xcb_glx_get_mapdv_data_length.3\', \'share/man/man3/xcb_glx_get_mapdv_reply.3\', \'share/man/man3/xcb_glx_get_mapdv_unchecked.3\', \'share/man/man3/xcb_glx_get_mapfv.3\', \'share/man/man3/xcb_glx_get_mapfv_data.3\', \'share/man/man3/xcb_glx_get_mapfv_data_end.3\', \'share/man/man3/xcb_glx_get_mapfv_data_length.3\', \'share/man/man3/xcb_glx_get_mapfv_reply.3\', \'share/man/man3/xcb_glx_get_mapfv_unchecked.3\', \'share/man/man3/xcb_glx_get_mapiv.3\', \'share/man/man3/xcb_glx_get_mapiv_data.3\', \'share/man/man3/xcb_glx_get_mapiv_data_end.3\', \'share/man/man3/xcb_glx_get_mapiv_data_length.3\', \'share/man/man3/xcb_glx_get_mapiv_reply.3\', \'share/man/man3/xcb_glx_get_mapiv_unchecked.3\', \'share/man/man3/xcb_glx_get_materialfv.3\', \'share/man/man3/xcb_glx_get_materialfv_data.3\', \'share/man/man3/xcb_glx_get_materialfv_data_end.3\', \'share/man/man3/xcb_glx_get_materialfv_data_length.3\', \'share/man/man3/xcb_glx_get_materialfv_reply.3\', \'share/man/man3/xcb_glx_get_materialfv_unchecked.3\', \'share/man/man3/xcb_glx_get_materialiv.3\', \'share/man/man3/xcb_glx_get_materialiv_data.3\', \'share/man/man3/xcb_glx_get_materialiv_data_end.3\', \'share/man/man3/xcb_glx_get_materialiv_data_length.3\', \'share/man/man3/xcb_glx_get_materialiv_reply.3\', \'share/man/man3/xcb_glx_get_materialiv_unchecked.3\', \'share/man/man3/xcb_glx_get_minmax.3\', \'share/man/man3/xcb_glx_get_minmax_data.3\', \'share/man/man3/xcb_glx_get_minmax_data_end.3\', \'share/man/man3/xcb_glx_get_minmax_data_length.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_minmax_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_minmax_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_minmax_reply.3\', \'share/man/man3/xcb_glx_get_minmax_unchecked.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv_data.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv_data_end.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv_data_length.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv_reply.3\', \'share/man/man3/xcb_glx_get_pixel_mapfv_unchecked.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv_data.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv_data_end.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv_data_length.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv_reply.3\', \'share/man/man3/xcb_glx_get_pixel_mapuiv_unchecked.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv_data.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv_data_end.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv_data_length.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv_reply.3\', \'share/man/man3/xcb_glx_get_pixel_mapusv_unchecked.3\', \'share/man/man3/xcb_glx_get_polygon_stipple.3\', \'share/man/man3/xcb_glx_get_polygon_stipple_data.3\', \'share/man/man3/xcb_glx_get_polygon_stipple_data_end.3\', \'share/man/man3/xcb_glx_get_polygon_stipple_data_length.3\', \'share/man/man3/xcb_glx_get_polygon_stipple_reply.3\', \'share/man/man3/xcb_glx_get_polygon_stipple_unchecked.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb_data.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb_data_end.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb_data_length.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb_reply.3\', \'share/man/man3/xcb_glx_get_query_objectiv_arb_unchecked.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb_data.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb_data_end.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb_data_length.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb_reply.3\', \'share/man/man3/xcb_glx_get_query_objectuiv_arb_unchecked.3\', \'share/man/man3/xcb_glx_get_queryiv_arb.3\', \'share/man/man3/xcb_glx_get_queryiv_arb_data.3\', \'share/man/man3/xcb_glx_get_queryiv_arb_data_end.3\', \'share/man/man3/xcb_glx_get_queryiv_arb_data_length.3\', \'share/man/man3/xcb_glx_get_queryiv_arb_reply.3\', \'share/man/man3/xcb_glx_get_queryiv_arb_unchecked.3\', \'share/man/man3/xcb_glx_get_separable_filter.3\', \'share/man/man3/xcb_glx_get_separable_filter_reply.3\', \'share/man/man3/xcb_glx_get_separable_filter_rows_and_cols.3\', \'share/man/man3/xcb_glx_get_separable_filter_rows_and_cols_end.3\', \'share/man/man3/xcb_glx_get_separable_filter_rows_and_cols_length.3\', \'share/man/man3/xcb_glx_get_separable_filter_unchecked.3\', \'share/man/man3/xcb_glx_get_string.3\', \'share/man/man3/xcb_glx_get_string_reply.3\', \'share/man/man3/xcb_glx_get_string_string.3\', \'share/man/man3/xcb_glx_get_string_string_end.3\', \'share/man/man3/xcb_glx_get_string_string_length.3\', \'share/man/man3/xcb_glx_get_string_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_envfv.3\', \'share/man/man3/xcb_glx_get_tex_envfv_data.3\', \'share/man/man3/xcb_glx_get_tex_envfv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_envfv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_envfv_reply.3\', \'share/man/man3/xcb_glx_get_tex_envfv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_enviv.3\', \'share/man/man3/xcb_glx_get_tex_enviv_data.3\', \'share/man/man3/xcb_glx_get_tex_enviv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_enviv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_enviv_reply.3\', \'share/man/man3/xcb_glx_get_tex_enviv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_gendv.3\', \'share/man/man3/xcb_glx_get_tex_gendv_data.3\', \'share/man/man3/xcb_glx_get_tex_gendv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_gendv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_gendv_reply.3\', \'share/man/man3/xcb_glx_get_tex_gendv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_genfv.3\', \'share/man/man3/xcb_glx_get_tex_genfv_data.3\', \'share/man/man3/xcb_glx_get_tex_genfv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_genfv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_genfv_reply.3\', \'share/man/man3/xcb_glx_get_tex_genfv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_geniv.3\', \'share/man/man3/xcb_glx_get_tex_geniv_data.3\', \'share/man/man3/xcb_glx_get_tex_geniv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_geniv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_geniv_reply.3\', \'share/man/man3/xcb_glx_get_tex_geniv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_image.3\', \'share/man/man3/xcb_glx_get_tex_image_data.3\', \'share/man/man3/xcb_glx_get_tex_image_data_end.3\', \'share/man/man3/xcb_glx_get_tex_image_data_length.3\', \'share/man/man3/xcb_glx_get_tex_image_reply.3\', \'share/man/man3/xcb_glx_get_tex_image_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_tex_level_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_tex_level_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv_data.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv_reply.3\', \'share/man/man3/xcb_glx_get_tex_parameterfv_unchecked.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv_data.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv_data_end.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv_data_length.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv_reply.3\', \'share/man/man3/xcb_glx_get_tex_parameteriv_unchecked.3\', \'share/man/man3/xcb_glx_get_visual_configs.3\', \'share/man/man3/xcb_glx_get_visual_configs_property_list.3\', \'share/man/man3/xcb_glx_get_visual_configs_property_list_end.3\', \'share/man/man3/xcb_glx_get_visual_configs_property_list_length.3\', \'share/man/man3/xcb_glx_get_visual_configs_reply.3\', \'share/man/man3/xcb_glx_get_visual_configs_unchecked.3\', \'share/man/man3/xcb_glx_is_direct.3\', \'share/man/man3/xcb_glx_is_direct_reply.3\', \'share/man/man3/xcb_glx_is_direct_unchecked.3\', \'share/man/man3/xcb_glx_is_enabled.3\', \'share/man/man3/xcb_glx_is_enabled_reply.3\', \'share/man/man3/xcb_glx_is_enabled_unchecked.3\', \'share/man/man3/xcb_glx_is_list.3\', \'share/man/man3/xcb_glx_is_list_reply.3\', \'share/man/man3/xcb_glx_is_list_unchecked.3\', \'share/man/man3/xcb_glx_is_query_arb.3\', \'share/man/man3/xcb_glx_is_query_arb_reply.3\', \'share/man/man3/xcb_glx_is_query_arb_unchecked.3\', \'share/man/man3/xcb_glx_is_texture.3\', \'share/man/man3/xcb_glx_is_texture_reply.3\', \'share/man/man3/xcb_glx_is_texture_unchecked.3\', \'share/man/man3/xcb_glx_make_context_current.3\', \'share/man/man3/xcb_glx_make_context_current_reply.3\', \'share/man/man3/xcb_glx_make_context_current_unchecked.3\', \'share/man/man3/xcb_glx_make_current.3\', \'share/man/man3/xcb_glx_make_current_reply.3\', \'share/man/man3/xcb_glx_make_current_unchecked.3\', \'share/man/man3/xcb_glx_new_list.3\', \'share/man/man3/xcb_glx_new_list_checked.3\', \'share/man/man3/xcb_glx_pbuffer_clobber_event_t.3\', \'share/man/man3/xcb_glx_pixel_storef.3\', \'share/man/man3/xcb_glx_pixel_storef_checked.3\', \'share/man/man3/xcb_glx_pixel_storei.3\', \'share/man/man3/xcb_glx_pixel_storei_checked.3\', \'share/man/man3/xcb_glx_query_context.3\', \'share/man/man3/xcb_glx_query_context_attribs.3\', \'share/man/man3/xcb_glx_query_context_attribs_end.3\', \'share/man/man3/xcb_glx_query_context_attribs_length.3\', \'share/man/man3/xcb_glx_query_context_reply.3\', \'share/man/man3/xcb_glx_query_context_unchecked.3\', \'share/man/man3/xcb_glx_query_extensions_string.3\', \'share/man/man3/xcb_glx_query_extensions_string_reply.3\', \'share/man/man3/xcb_glx_query_extensions_string_unchecked.3\', \'share/man/man3/xcb_glx_query_server_string.3\', \'share/man/man3/xcb_glx_query_server_string_reply.3\', \'share/man/man3/xcb_glx_query_server_string_string.3\', \'share/man/man3/xcb_glx_query_server_string_string_end.3\', \'share/man/man3/xcb_glx_query_server_string_string_length.3\', \'share/man/man3/xcb_glx_query_server_string_unchecked.3\', \'share/man/man3/xcb_glx_query_version.3\', \'share/man/man3/xcb_glx_query_version_reply.3\', \'share/man/man3/xcb_glx_query_version_unchecked.3\', \'share/man/man3/xcb_glx_read_pixels.3\', \'share/man/man3/xcb_glx_read_pixels_data.3\', \'share/man/man3/xcb_glx_read_pixels_data_end.3\', \'share/man/man3/xcb_glx_read_pixels_data_length.3\', \'share/man/man3/xcb_glx_read_pixels_reply.3\', \'share/man/man3/xcb_glx_read_pixels_unchecked.3\', \'share/man/man3/xcb_glx_render.3\', \'share/man/man3/xcb_glx_render_checked.3\', \'share/man/man3/xcb_glx_render_large.3\', \'share/man/man3/xcb_glx_render_large_checked.3\', \'share/man/man3/xcb_glx_render_mode.3\', \'share/man/man3/xcb_glx_render_mode_data.3\', \'share/man/man3/xcb_glx_render_mode_data_end.3\', \'share/man/man3/xcb_glx_render_mode_data_length.3\', \'share/man/man3/xcb_glx_render_mode_reply.3\', \'share/man/man3/xcb_glx_render_mode_unchecked.3\', \'share/man/man3/xcb_glx_select_buffer.3\', \'share/man/man3/xcb_glx_select_buffer_checked.3\', \'share/man/man3/xcb_glx_set_client_info_2arb.3\', \'share/man/man3/xcb_glx_set_client_info_2arb_checked.3\', \'share/man/man3/xcb_glx_set_client_info_arb.3\', \'share/man/man3/xcb_glx_set_client_info_arb_checked.3\', \'share/man/man3/xcb_glx_swap_buffers.3\', \'share/man/man3/xcb_glx_swap_buffers_checked.3\', \'share/man/man3/xcb_glx_use_x_font.3\', \'share/man/man3/xcb_glx_use_x_font_checked.3\', \'share/man/man3/xcb_glx_vendor_private.3\', \'share/man/man3/xcb_glx_vendor_private_checked.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply_data_2.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply_data_2_end.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply_data_2_length.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply_reply.3\', \'share/man/man3/xcb_glx_vendor_private_with_reply_unchecked.3\', \'share/man/man3/xcb_glx_wait_gl.3\', \'share/man/man3/xcb_glx_wait_gl_checked.3\', \'share/man/man3/xcb_glx_wait_x.3\', \'share/man/man3/xcb_glx_wait_x_checked.3\', \'share/man/man3/xcb_grab_button.3\', \'share/man/man3/xcb_grab_button_checked.3\', \'share/man/man3/xcb_grab_key.3\', \'share/man/man3/xcb_grab_key_checked.3\', \'share/man/man3/xcb_grab_keyboard.3\', \'share/man/man3/xcb_grab_keyboard_reply.3\', \'share/man/man3/xcb_grab_keyboard_unchecked.3\', \'share/man/man3/xcb_grab_pointer.3\', \'share/man/man3/xcb_grab_pointer_reply.3\', \'share/man/man3/xcb_grab_pointer_unchecked.3\', \'share/man/man3/xcb_grab_server.3\', \'share/man/man3/xcb_grab_server_checked.3\', \'share/man/man3/xcb_graphics_exposure_event_t.3\', \'share/man/man3/xcb_gravity_notify_event_t.3\', \'share/man/man3/xcb_image_text_16.3\', \'share/man/man3/xcb_image_text_16_checked.3\', \'share/man/man3/xcb_image_text_8.3\', \'share/man/man3/xcb_image_text_8_checked.3\', \'share/man/man3/xcb_input_allow_device_events.3\', \'share/man/man3/xcb_input_allow_device_events_checked.3\', \'share/man/man3/xcb_input_barrier_hit_event_t.3\', \'share/man/man3/xcb_input_button_press_event_t.3\', \'share/man/man3/xcb_input_change_device_control.3\', \'share/man/man3/xcb_input_change_device_control_reply.3\', \'share/man/man3/xcb_input_change_device_control_unchecked.3\', \'share/man/man3/xcb_input_change_device_dont_propagate_list.3\', \'share/man/man3/xcb_input_change_device_dont_propagate_list_checked.3\', \'share/man/man3/xcb_input_change_device_key_mapping.3\', \'share/man/man3/xcb_input_change_device_key_mapping_checked.3\', \'share/man/man3/xcb_input_change_device_notify_event_t.3\', \'share/man/man3/xcb_input_change_device_property.3\', \'share/man/man3/xcb_input_change_device_property_checked.3\', \'share/man/man3/xcb_input_change_feedback_control.3\', \'share/man/man3/xcb_input_change_feedback_control_checked.3\', \'share/man/man3/xcb_input_change_keyboard_device.3\', \'share/man/man3/xcb_input_change_keyboard_device_reply.3\', \'share/man/man3/xcb_input_change_keyboard_device_unchecked.3\', \'share/man/man3/xcb_input_change_pointer_device.3\', \'share/man/man3/xcb_input_change_pointer_device_reply.3\', \'share/man/man3/xcb_input_change_pointer_device_unchecked.3\', \'share/man/man3/xcb_input_close_device.3\', \'share/man/man3/xcb_input_close_device_checked.3\', \'share/man/man3/xcb_input_delete_device_property.3\', \'share/man/man3/xcb_input_delete_device_property_checked.3\', \'share/man/man3/xcb_input_device_bell.3\', \'share/man/man3/xcb_input_device_bell_checked.3\', \'share/man/man3/xcb_input_device_button_state_notify_event_t.3\', \'share/man/man3/xcb_input_device_changed_event_t.3\', \'share/man/man3/xcb_input_device_focus_in_event_t.3\', \'share/man/man3/xcb_input_device_key_press_event_t.3\', \'share/man/man3/xcb_input_device_key_state_notify_event_t.3\', \'share/man/man3/xcb_input_device_mapping_notify_event_t.3\', \'share/man/man3/xcb_input_device_presence_notify_event_t.3\', \'share/man/man3/xcb_input_device_property_notify_event_t.3\', \'share/man/man3/xcb_input_device_state_notify_event_t.3\', \'share/man/man3/xcb_input_device_valuator_event_t.3\', \'share/man/man3/xcb_input_enter_event_t.3\', \'share/man/man3/xcb_input_get_device_button_mapping.3\', \'share/man/man3/xcb_input_get_device_button_mapping_map.3\', \'share/man/man3/xcb_input_get_device_button_mapping_map_end.3\', \'share/man/man3/xcb_input_get_device_button_mapping_map_length.3\', \'share/man/man3/xcb_input_get_device_button_mapping_pad_1.3\', \'share/man/man3/xcb_input_get_device_button_mapping_reply.3\', \'share/man/man3/xcb_input_get_device_button_mapping_unchecked.3\', \'share/man/man3/xcb_input_get_device_control.3\', \'share/man/man3/xcb_input_get_device_control_control.3\', \'share/man/man3/xcb_input_get_device_control_reply.3\', \'share/man/man3/xcb_input_get_device_control_unchecked.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list_classes.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list_classes_end.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list_classes_length.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list_reply.3\', \'share/man/man3/xcb_input_get_device_dont_propagate_list_unchecked.3\', \'share/man/man3/xcb_input_get_device_focus.3\', \'share/man/man3/xcb_input_get_device_focus_reply.3\', \'share/man/man3/xcb_input_get_device_focus_unchecked.3\', \'share/man/man3/xcb_input_get_device_key_mapping.3\', \'share/man/man3/xcb_input_get_device_key_mapping_keysyms.3\', \'share/man/man3/xcb_input_get_device_key_mapping_keysyms_end.3\', \'share/man/man3/xcb_input_get_device_key_mapping_keysyms_length.3\', \'share/man/man3/xcb_input_get_device_key_mapping_reply.3\', \'share/man/man3/xcb_input_get_device_key_mapping_unchecked.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping_keymaps.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping_keymaps_end.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping_keymaps_length.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping_reply.3\', \'share/man/man3/xcb_input_get_device_modifier_mapping_unchecked.3\', \'share/man/man3/xcb_input_get_device_motion_events.3\', \'share/man/man3/xcb_input_get_device_motion_events_events_iterator.3\', \'share/man/man3/xcb_input_get_device_motion_events_events_length.3\', \'share/man/man3/xcb_input_get_device_motion_events_reply.3\', \'share/man/man3/xcb_input_get_device_motion_events_unchecked.3\', \'share/man/man3/xcb_input_get_device_property.3\', \'share/man/man3/xcb_input_get_device_property_items.3\', \'share/man/man3/xcb_input_get_device_property_reply.3\', \'share/man/man3/xcb_input_get_device_property_unchecked.3\', \'share/man/man3/xcb_input_get_extension_version.3\', \'share/man/man3/xcb_input_get_extension_version_reply.3\', \'share/man/man3/xcb_input_get_extension_version_unchecked.3\', \'share/man/man3/xcb_input_get_feedback_control.3\', \'share/man/man3/xcb_input_get_feedback_control_feedbacks_iterator.3\', \'share/man/man3/xcb_input_get_feedback_control_feedbacks_length.3\', \'share/man/man3/xcb_input_get_feedback_control_reply.3\', \'share/man/man3/xcb_input_get_feedback_control_unchecked.3\', \'share/man/man3/xcb_input_get_selected_extension_events.3\', \'share/man/man3/xcb_input_get_selected_extension_events_all_classes.3\', \'share/man/man3/xcb_input_get_selected_extension_events_all_classes_end.3\', \'share/man/man3/xcb_input_get_selected_extension_events_all_classes_length.3\', \'share/man/man3/xcb_input_get_selected_extension_events_reply.3\', \'share/man/man3/xcb_input_get_selected_extension_events_this_classes.3\', \'share/man/man3/xcb_input_get_selected_extension_events_this_classes_end.3\', \'share/man/man3/xcb_input_get_selected_extension_events_this_classes_length.3\', \'share/man/man3/xcb_input_get_selected_extension_events_unchecked.3\', \'share/man/man3/xcb_input_grab_device.3\', \'share/man/man3/xcb_input_grab_device_button.3\', \'share/man/man3/xcb_input_grab_device_button_checked.3\', \'share/man/man3/xcb_input_grab_device_key.3\', \'share/man/man3/xcb_input_grab_device_key_checked.3\', \'share/man/man3/xcb_input_grab_device_reply.3\', \'share/man/man3/xcb_input_grab_device_unchecked.3\', \'share/man/man3/xcb_input_hierarchy_event_t.3\', \'share/man/man3/xcb_input_key_press_event_t.3\', \'share/man/man3/xcb_input_list_device_properties.3\', \'share/man/man3/xcb_input_list_device_properties_atoms.3\', \'share/man/man3/xcb_input_list_device_properties_atoms_end.3\', \'share/man/man3/xcb_input_list_device_properties_atoms_length.3\', \'share/man/man3/xcb_input_list_device_properties_reply.3\', \'share/man/man3/xcb_input_list_device_properties_unchecked.3\', \'share/man/man3/xcb_input_list_input_devices.3\', \'share/man/man3/xcb_input_list_input_devices_devices.3\', \'share/man/man3/xcb_input_list_input_devices_devices_iterator.3\', \'share/man/man3/xcb_input_list_input_devices_devices_length.3\', \'share/man/man3/xcb_input_list_input_devices_infos_iterator.3\', \'share/man/man3/xcb_input_list_input_devices_infos_length.3\', \'share/man/man3/xcb_input_list_input_devices_names_iterator.3\', \'share/man/man3/xcb_input_list_input_devices_names_length.3\', \'share/man/man3/xcb_input_list_input_devices_pad_1.3\', \'share/man/man3/xcb_input_list_input_devices_reply.3\', \'share/man/man3/xcb_input_list_input_devices_unchecked.3\', \'share/man/man3/xcb_input_open_device.3\', \'share/man/man3/xcb_input_open_device_class_info.3\', \'share/man/man3/xcb_input_open_device_class_info_iterator.3\', \'share/man/man3/xcb_input_open_device_class_info_length.3\', \'share/man/man3/xcb_input_open_device_pad_1.3\', \'share/man/man3/xcb_input_open_device_reply.3\', \'share/man/man3/xcb_input_open_device_unchecked.3\', \'share/man/man3/xcb_input_property_event_t.3\', \'share/man/man3/xcb_input_query_device_state.3\', \'share/man/man3/xcb_input_query_device_state_classes_iterator.3\', \'share/man/man3/xcb_input_query_device_state_classes_length.3\', \'share/man/man3/xcb_input_query_device_state_reply.3\', \'share/man/man3/xcb_input_query_device_state_unchecked.3\', \'share/man/man3/xcb_input_raw_button_press_event_t.3\', \'share/man/man3/xcb_input_raw_key_press_event_t.3\', \'share/man/man3/xcb_input_raw_touch_begin_event_t.3\', \'share/man/man3/xcb_input_select_extension_event.3\', \'share/man/man3/xcb_input_select_extension_event_checked.3\', \'share/man/man3/xcb_input_send_extension_event.3\', \'share/man/man3/xcb_input_send_extension_event_checked.3\', \'share/man/man3/xcb_input_set_device_button_mapping.3\', \'share/man/man3/xcb_input_set_device_button_mapping_reply.3\', \'share/man/man3/xcb_input_set_device_button_mapping_unchecked.3\', \'share/man/man3/xcb_input_set_device_focus.3\', \'share/man/man3/xcb_input_set_device_focus_checked.3\', \'share/man/man3/xcb_input_set_device_mode.3\', \'share/man/man3/xcb_input_set_device_mode_reply.3\', \'share/man/man3/xcb_input_set_device_mode_unchecked.3\', \'share/man/man3/xcb_input_set_device_modifier_mapping.3\', \'share/man/man3/xcb_input_set_device_modifier_mapping_reply.3\', \'share/man/man3/xcb_input_set_device_modifier_mapping_unchecked.3\', \'share/man/man3/xcb_input_set_device_valuators.3\', \'share/man/man3/xcb_input_set_device_valuators_reply.3\', \'share/man/man3/xcb_input_set_device_valuators_unchecked.3\', \'share/man/man3/xcb_input_touch_begin_event_t.3\', \'share/man/man3/xcb_input_touch_ownership_event_t.3\', \'share/man/man3/xcb_input_ungrab_device.3\', \'share/man/man3/xcb_input_ungrab_device_button.3\', \'share/man/man3/xcb_input_ungrab_device_button_checked.3\', \'share/man/man3/xcb_input_ungrab_device_checked.3\', \'share/man/man3/xcb_input_ungrab_device_key.3\', \'share/man/man3/xcb_input_ungrab_device_key_checked.3\', \'share/man/man3/xcb_input_xi_allow_events.3\', \'share/man/man3/xcb_input_xi_allow_events_checked.3\', \'share/man/man3/xcb_input_xi_barrier_release_pointer.3\', \'share/man/man3/xcb_input_xi_barrier_release_pointer_checked.3\', \'share/man/man3/xcb_input_xi_change_cursor.3\', \'share/man/man3/xcb_input_xi_change_cursor_checked.3\', \'share/man/man3/xcb_input_xi_change_hierarchy.3\', \'share/man/man3/xcb_input_xi_change_hierarchy_checked.3\', \'share/man/man3/xcb_input_xi_change_property.3\', \'share/man/man3/xcb_input_xi_change_property_checked.3\', \'share/man/man3/xcb_input_xi_delete_property.3\', \'share/man/man3/xcb_input_xi_delete_property_checked.3\', \'share/man/man3/xcb_input_xi_get_client_pointer.3\', \'share/man/man3/xcb_input_xi_get_client_pointer_reply.3\', \'share/man/man3/xcb_input_xi_get_client_pointer_unchecked.3\', \'share/man/man3/xcb_input_xi_get_focus.3\', \'share/man/man3/xcb_input_xi_get_focus_reply.3\', \'share/man/man3/xcb_input_xi_get_focus_unchecked.3\', \'share/man/man3/xcb_input_xi_get_property.3\', \'share/man/man3/xcb_input_xi_get_property_items.3\', \'share/man/man3/xcb_input_xi_get_property_reply.3\', \'share/man/man3/xcb_input_xi_get_property_unchecked.3\', \'share/man/man3/xcb_input_xi_get_selected_events.3\', \'share/man/man3/xcb_input_xi_get_selected_events_masks_iterator.3\', \'share/man/man3/xcb_input_xi_get_selected_events_masks_length.3\', \'share/man/man3/xcb_input_xi_get_selected_events_reply.3\', \'share/man/man3/xcb_input_xi_get_selected_events_unchecked.3\', \'share/man/man3/xcb_input_xi_grab_device.3\', \'share/man/man3/xcb_input_xi_grab_device_reply.3\', \'share/man/man3/xcb_input_xi_grab_device_unchecked.3\', \'share/man/man3/xcb_input_xi_list_properties.3\', \'share/man/man3/xcb_input_xi_list_properties_properties.3\', \'share/man/man3/xcb_input_xi_list_properties_properties_end.3\', \'share/man/man3/xcb_input_xi_list_properties_properties_length.3\', \'share/man/man3/xcb_input_xi_list_properties_reply.3\', \'share/man/man3/xcb_input_xi_list_properties_unchecked.3\', \'share/man/man3/xcb_input_xi_passive_grab_device.3\', \'share/man/man3/xcb_input_xi_passive_grab_device_modifiers.3\', \'share/man/man3/xcb_input_xi_passive_grab_device_modifiers_iterator.3\', \'share/man/man3/xcb_input_xi_passive_grab_device_modifiers_length.3\', \'share/man/man3/xcb_input_xi_passive_grab_device_reply.3\', \'share/man/man3/xcb_input_xi_passive_grab_device_unchecked.3\', \'share/man/man3/xcb_input_xi_passive_ungrab_device.3\', \'share/man/man3/xcb_input_xi_passive_ungrab_device_checked.3\', \'share/man/man3/xcb_input_xi_query_device.3\', \'share/man/man3/xcb_input_xi_query_device_infos_iterator.3\', \'share/man/man3/xcb_input_xi_query_device_infos_length.3\', \'share/man/man3/xcb_input_xi_query_device_reply.3\', \'share/man/man3/xcb_input_xi_query_device_unchecked.3\', \'share/man/man3/xcb_input_xi_query_pointer.3\', \'share/man/man3/xcb_input_xi_query_pointer_buttons.3\', \'share/man/man3/xcb_input_xi_query_pointer_buttons_end.3\', \'share/man/man3/xcb_input_xi_query_pointer_buttons_length.3\', \'share/man/man3/xcb_input_xi_query_pointer_reply.3\', \'share/man/man3/xcb_input_xi_query_pointer_unchecked.3\', \'share/man/man3/xcb_input_xi_query_version.3\', \'share/man/man3/xcb_input_xi_query_version_reply.3\', \'share/man/man3/xcb_input_xi_query_version_unchecked.3\', \'share/man/man3/xcb_input_xi_select_events.3\', \'share/man/man3/xcb_input_xi_select_events_checked.3\', \'share/man/man3/xcb_input_xi_set_client_pointer.3\', \'share/man/man3/xcb_input_xi_set_client_pointer_checked.3\', \'share/man/man3/xcb_input_xi_set_focus.3\', \'share/man/man3/xcb_input_xi_set_focus_checked.3\', \'share/man/man3/xcb_input_xi_ungrab_device.3\', \'share/man/man3/xcb_input_xi_ungrab_device_checked.3\', \'share/man/man3/xcb_input_xi_warp_pointer.3\', \'share/man/man3/xcb_input_xi_warp_pointer_checked.3\', \'share/man/man3/xcb_install_colormap.3\', \'share/man/man3/xcb_install_colormap_checked.3\', \'share/man/man3/xcb_intern_atom.3\', \'share/man/man3/xcb_intern_atom_reply.3\', \'share/man/man3/xcb_intern_atom_unchecked.3\', \'share/man/man3/xcb_key_press_event_t.3\', \'share/man/man3/xcb_keymap_notify_event_t.3\', \'share/man/man3/xcb_kill_client.3\', \'share/man/man3/xcb_kill_client_checked.3\', \'share/man/man3/xcb_list_extensions.3\', \'share/man/man3/xcb_list_extensions_names_iterator.3\', \'share/man/man3/xcb_list_extensions_names_length.3\', \'share/man/man3/xcb_list_extensions_reply.3\', \'share/man/man3/xcb_list_extensions_unchecked.3\', \'share/man/man3/xcb_list_fonts.3\', \'share/man/man3/xcb_list_fonts_names_iterator.3\', \'share/man/man3/xcb_list_fonts_names_length.3\', \'share/man/man3/xcb_list_fonts_reply.3\', \'share/man/man3/xcb_list_fonts_unchecked.3\', \'share/man/man3/xcb_list_fonts_with_info.3\', \'share/man/man3/xcb_list_fonts_with_info_name.3\', \'share/man/man3/xcb_list_fonts_with_info_name_end.3\', \'share/man/man3/xcb_list_fonts_with_info_name_length.3\', \'share/man/man3/xcb_list_fonts_with_info_properties.3\', \'share/man/man3/xcb_list_fonts_with_info_properties_iterator.3\', \'share/man/man3/xcb_list_fonts_with_info_properties_length.3\', \'share/man/man3/xcb_list_fonts_with_info_reply.3\', \'share/man/man3/xcb_list_fonts_with_info_unchecked.3\', \'share/man/man3/xcb_list_hosts.3\', \'share/man/man3/xcb_list_hosts_hosts_iterator.3\', \'share/man/man3/xcb_list_hosts_hosts_length.3\', \'share/man/man3/xcb_list_hosts_reply.3\', \'share/man/man3/xcb_list_hosts_unchecked.3\', \'share/man/man3/xcb_list_installed_colormaps.3\', \'share/man/man3/xcb_list_installed_colormaps_cmaps.3\', \'share/man/man3/xcb_list_installed_colormaps_cmaps_end.3\', \'share/man/man3/xcb_list_installed_colormaps_cmaps_length.3\', \'share/man/man3/xcb_list_installed_colormaps_reply.3\', \'share/man/man3/xcb_list_installed_colormaps_unchecked.3\', \'share/man/man3/xcb_list_properties.3\', \'share/man/man3/xcb_list_properties_atoms.3\', \'share/man/man3/xcb_list_properties_atoms_end.3\', \'share/man/man3/xcb_list_properties_atoms_length.3\', \'share/man/man3/xcb_list_properties_reply.3\', \'share/man/man3/xcb_list_properties_unchecked.3\', \'share/man/man3/xcb_lookup_color.3\', \'share/man/man3/xcb_lookup_color_reply.3\', \'share/man/man3/xcb_lookup_color_unchecked.3\', \'share/man/man3/xcb_map_notify_event_t.3\', \'share/man/man3/xcb_map_request_event_t.3\', \'share/man/man3/xcb_map_subwindows.3\', \'share/man/man3/xcb_map_subwindows_checked.3\', \'share/man/man3/xcb_map_window.3\', \'share/man/man3/xcb_map_window_checked.3\', \'share/man/man3/xcb_mapping_notify_event_t.3\', \'share/man/man3/xcb_motion_notify_event_t.3\', \'share/man/man3/xcb_no_exposure_event_t.3\', \'share/man/man3/xcb_no_operation.3\', \'share/man/man3/xcb_no_operation_checked.3\', \'share/man/man3/xcb_open_font.3\', \'share/man/man3/xcb_open_font_checked.3\', \'share/man/man3/xcb_poly_arc.3\', \'share/man/man3/xcb_poly_arc_checked.3\', \'share/man/man3/xcb_poly_fill_arc.3\', \'share/man/man3/xcb_poly_fill_arc_checked.3\', \'share/man/man3/xcb_poly_fill_rectangle.3\', \'share/man/man3/xcb_poly_fill_rectangle_checked.3\', \'share/man/man3/xcb_poly_line.3\', \'share/man/man3/xcb_poly_line_checked.3\', \'share/man/man3/xcb_poly_point.3\', \'share/man/man3/xcb_poly_point_checked.3\', \'share/man/man3/xcb_poly_rectangle.3\', \'share/man/man3/xcb_poly_rectangle_checked.3\', \'share/man/man3/xcb_poly_segment.3\', \'share/man/man3/xcb_poly_segment_checked.3\', \'share/man/man3/xcb_poly_text_16.3\', \'share/man/man3/xcb_poly_text_16_checked.3\', \'share/man/man3/xcb_poly_text_8.3\', \'share/man/man3/xcb_poly_text_8_checked.3\', \'share/man/man3/xcb_present_complete_notify_event_t.3\', \'share/man/man3/xcb_present_configure_notify_event_t.3\', \'share/man/man3/xcb_present_generic_event_t.3\', \'share/man/man3/xcb_present_idle_notify_event_t.3\', \'share/man/man3/xcb_present_notify_msc.3\', \'share/man/man3/xcb_present_notify_msc_checked.3\', \'share/man/man3/xcb_present_pixmap.3\', \'share/man/man3/xcb_present_pixmap_checked.3\', \'share/man/man3/xcb_present_query_capabilities.3\', \'share/man/man3/xcb_present_query_capabilities_reply.3\', \'share/man/man3/xcb_present_query_capabilities_unchecked.3\', \'share/man/man3/xcb_present_query_version.3\', \'share/man/man3/xcb_present_query_version_reply.3\', \'share/man/man3/xcb_present_query_version_unchecked.3\', \'share/man/man3/xcb_present_redirect_notify_event_t.3\', \'share/man/man3/xcb_present_select_input.3\', \'share/man/man3/xcb_present_select_input_checked.3\', \'share/man/man3/xcb_property_notify_event_t.3\', \'share/man/man3/xcb_put_image.3\', \'share/man/man3/xcb_put_image_checked.3\', \'share/man/man3/xcb_query_best_size.3\', \'share/man/man3/xcb_query_best_size_reply.3\', \'share/man/man3/xcb_query_best_size_unchecked.3\', \'share/man/man3/xcb_query_colors.3\', \'share/man/man3/xcb_query_colors_colors.3\', \'share/man/man3/xcb_query_colors_colors_iterator.3\', \'share/man/man3/xcb_query_colors_colors_length.3\', \'share/man/man3/xcb_query_colors_reply.3\', \'share/man/man3/xcb_query_colors_unchecked.3\', \'share/man/man3/xcb_query_extension.3\', \'share/man/man3/xcb_query_extension_reply.3\', \'share/man/man3/xcb_query_extension_unchecked.3\', \'share/man/man3/xcb_query_font.3\', \'share/man/man3/xcb_query_font_char_infos.3\', \'share/man/man3/xcb_query_font_char_infos_iterator.3\', \'share/man/man3/xcb_query_font_char_infos_length.3\', \'share/man/man3/xcb_query_font_properties.3\', \'share/man/man3/xcb_query_font_properties_iterator.3\', \'share/man/man3/xcb_query_font_properties_length.3\', \'share/man/man3/xcb_query_font_reply.3\', \'share/man/man3/xcb_query_font_unchecked.3\', \'share/man/man3/xcb_query_keymap.3\', \'share/man/man3/xcb_query_keymap_reply.3\', \'share/man/man3/xcb_query_keymap_unchecked.3\', \'share/man/man3/xcb_query_pointer.3\', \'share/man/man3/xcb_query_pointer_reply.3\', \'share/man/man3/xcb_query_pointer_unchecked.3\', \'share/man/man3/xcb_query_text_extents.3\', \'share/man/man3/xcb_query_text_extents_reply.3\', \'share/man/man3/xcb_query_text_extents_unchecked.3\', \'share/man/man3/xcb_query_tree.3\', \'share/man/man3/xcb_query_tree_children.3\', \'share/man/man3/xcb_query_tree_children_end.3\', \'share/man/man3/xcb_query_tree_children_length.3\', \'share/man/man3/xcb_query_tree_reply.3\', \'share/man/man3/xcb_query_tree_unchecked.3\', \'share/man/man3/xcb_randr_add_output_mode.3\', \'share/man/man3/xcb_randr_add_output_mode_checked.3\', \'share/man/man3/xcb_randr_change_output_property.3\', \'share/man/man3/xcb_randr_change_output_property_checked.3\', \'share/man/man3/xcb_randr_change_provider_property.3\', \'share/man/man3/xcb_randr_change_provider_property_checked.3\', \'share/man/man3/xcb_randr_configure_output_property.3\', \'share/man/man3/xcb_randr_configure_output_property_checked.3\', \'share/man/man3/xcb_randr_configure_provider_property.3\', \'share/man/man3/xcb_randr_configure_provider_property_checked.3\', \'share/man/man3/xcb_randr_create_mode.3\', \'share/man/man3/xcb_randr_create_mode_reply.3\', \'share/man/man3/xcb_randr_create_mode_unchecked.3\', \'share/man/man3/xcb_randr_delete_monitor.3\', \'share/man/man3/xcb_randr_delete_monitor_checked.3\', \'share/man/man3/xcb_randr_delete_output_mode.3\', \'share/man/man3/xcb_randr_delete_output_mode_checked.3\', \'share/man/man3/xcb_randr_delete_output_property.3\', \'share/man/man3/xcb_randr_delete_output_property_checked.3\', \'share/man/man3/xcb_randr_delete_provider_property.3\', \'share/man/man3/xcb_randr_delete_provider_property_checked.3\', \'share/man/man3/xcb_randr_destroy_mode.3\', \'share/man/man3/xcb_randr_destroy_mode_checked.3\', \'share/man/man3/xcb_randr_get_crtc_gamma.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_blue.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_blue_end.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_blue_length.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_green.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_green_end.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_green_length.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_red.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_red_end.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_red_length.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_reply.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_size.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_size_reply.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_size_unchecked.3\', \'share/man/man3/xcb_randr_get_crtc_gamma_unchecked.3\', \'share/man/man3/xcb_randr_get_crtc_info.3\', \'share/man/man3/xcb_randr_get_crtc_info_outputs.3\', \'share/man/man3/xcb_randr_get_crtc_info_outputs_end.3\', \'share/man/man3/xcb_randr_get_crtc_info_outputs_length.3\', \'share/man/man3/xcb_randr_get_crtc_info_possible.3\', \'share/man/man3/xcb_randr_get_crtc_info_possible_end.3\', \'share/man/man3/xcb_randr_get_crtc_info_possible_length.3\', \'share/man/man3/xcb_randr_get_crtc_info_reply.3\', \'share/man/man3/xcb_randr_get_crtc_info_unchecked.3\', \'share/man/man3/xcb_randr_get_crtc_transform.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_filter_name.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_filter_name_end.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_filter_name_length.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_params.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_params_end.3\', \'share/man/man3/xcb_randr_get_crtc_transform_current_params_length.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pad_3.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pad_4.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name_end.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_filter_name_length.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_params.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_params_end.3\', \'share/man/man3/xcb_randr_get_crtc_transform_pending_params_length.3\', \'share/man/man3/xcb_randr_get_crtc_transform_reply.3\', \'share/man/man3/xcb_randr_get_crtc_transform_unchecked.3\', \'share/man/man3/xcb_randr_get_monitors.3\', \'share/man/man3/xcb_randr_get_monitors_monitors_iterator.3\', \'share/man/man3/xcb_randr_get_monitors_monitors_length.3\', \'share/man/man3/xcb_randr_get_monitors_reply.3\', \'share/man/man3/xcb_randr_get_monitors_unchecked.3\', \'share/man/man3/xcb_randr_get_output_info.3\', \'share/man/man3/xcb_randr_get_output_info_clones.3\', \'share/man/man3/xcb_randr_get_output_info_clones_end.3\', \'share/man/man3/xcb_randr_get_output_info_clones_length.3\', \'share/man/man3/xcb_randr_get_output_info_crtcs.3\', \'share/man/man3/xcb_randr_get_output_info_crtcs_end.3\', \'share/man/man3/xcb_randr_get_output_info_crtcs_length.3\', \'share/man/man3/xcb_randr_get_output_info_modes.3\', \'share/man/man3/xcb_randr_get_output_info_modes_end.3\', \'share/man/man3/xcb_randr_get_output_info_modes_length.3\', \'share/man/man3/xcb_randr_get_output_info_name.3\', \'share/man/man3/xcb_randr_get_output_info_name_end.3\', \'share/man/man3/xcb_randr_get_output_info_name_length.3\', \'share/man/man3/xcb_randr_get_output_info_reply.3\', \'share/man/man3/xcb_randr_get_output_info_unchecked.3\', \'share/man/man3/xcb_randr_get_output_primary.3\', \'share/man/man3/xcb_randr_get_output_primary_reply.3\', \'share/man/man3/xcb_randr_get_output_primary_unchecked.3\', \'share/man/man3/xcb_randr_get_output_property.3\', \'share/man/man3/xcb_randr_get_output_property_data.3\', \'share/man/man3/xcb_randr_get_output_property_data_end.3\', \'share/man/man3/xcb_randr_get_output_property_data_length.3\', \'share/man/man3/xcb_randr_get_output_property_reply.3\', \'share/man/man3/xcb_randr_get_output_property_unchecked.3\', \'share/man/man3/xcb_randr_get_panning.3\', \'share/man/man3/xcb_randr_get_panning_reply.3\', \'share/man/man3/xcb_randr_get_panning_unchecked.3\', \'share/man/man3/xcb_randr_get_provider_info.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_capability.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_capability_end.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_capability_length.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_providers.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_providers_end.3\', \'share/man/man3/xcb_randr_get_provider_info_associated_providers_length.3\', \'share/man/man3/xcb_randr_get_provider_info_crtcs.3\', \'share/man/man3/xcb_randr_get_provider_info_crtcs_end.3\', \'share/man/man3/xcb_randr_get_provider_info_crtcs_length.3\', \'share/man/man3/xcb_randr_get_provider_info_name.3\', \'share/man/man3/xcb_randr_get_provider_info_name_end.3\', \'share/man/man3/xcb_randr_get_provider_info_name_length.3\', \'share/man/man3/xcb_randr_get_provider_info_outputs.3\', \'share/man/man3/xcb_randr_get_provider_info_outputs_end.3\', \'share/man/man3/xcb_randr_get_provider_info_outputs_length.3\', \'share/man/man3/xcb_randr_get_provider_info_reply.3\', \'share/man/man3/xcb_randr_get_provider_info_unchecked.3\', \'share/man/man3/xcb_randr_get_provider_property.3\', \'share/man/man3/xcb_randr_get_provider_property_data.3\', \'share/man/man3/xcb_randr_get_provider_property_data_end.3\', \'share/man/man3/xcb_randr_get_provider_property_data_length.3\', \'share/man/man3/xcb_randr_get_provider_property_reply.3\', \'share/man/man3/xcb_randr_get_provider_property_unchecked.3\', \'share/man/man3/xcb_randr_get_providers.3\', \'share/man/man3/xcb_randr_get_providers_providers.3\', \'share/man/man3/xcb_randr_get_providers_providers_end.3\', \'share/man/man3/xcb_randr_get_providers_providers_length.3\', \'share/man/man3/xcb_randr_get_providers_reply.3\', \'share/man/man3/xcb_randr_get_providers_unchecked.3\', \'share/man/man3/xcb_randr_get_screen_info.3\', \'share/man/man3/xcb_randr_get_screen_info_rates_iterator.3\', \'share/man/man3/xcb_randr_get_screen_info_rates_length.3\', \'share/man/man3/xcb_randr_get_screen_info_reply.3\', \'share/man/man3/xcb_randr_get_screen_info_sizes.3\', \'share/man/man3/xcb_randr_get_screen_info_sizes_iterator.3\', \'share/man/man3/xcb_randr_get_screen_info_sizes_length.3\', \'share/man/man3/xcb_randr_get_screen_info_unchecked.3\', \'share/man/man3/xcb_randr_get_screen_resources.3\', \'share/man/man3/xcb_randr_get_screen_resources_crtcs.3\', \'share/man/man3/xcb_randr_get_screen_resources_crtcs_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_crtcs_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_current.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_crtcs.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_crtcs_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_crtcs_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_modes.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_modes_iterator.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_modes_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_names.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_names_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_names_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_outputs.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_outputs_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_outputs_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_reply.3\', \'share/man/man3/xcb_randr_get_screen_resources_current_unchecked.3\', \'share/man/man3/xcb_randr_get_screen_resources_modes.3\', \'share/man/man3/xcb_randr_get_screen_resources_modes_iterator.3\', \'share/man/man3/xcb_randr_get_screen_resources_modes_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_names.3\', \'share/man/man3/xcb_randr_get_screen_resources_names_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_names_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_outputs.3\', \'share/man/man3/xcb_randr_get_screen_resources_outputs_end.3\', \'share/man/man3/xcb_randr_get_screen_resources_outputs_length.3\', \'share/man/man3/xcb_randr_get_screen_resources_reply.3\', \'share/man/man3/xcb_randr_get_screen_resources_unchecked.3\', \'share/man/man3/xcb_randr_get_screen_size_range.3\', \'share/man/man3/xcb_randr_get_screen_size_range_reply.3\', \'share/man/man3/xcb_randr_get_screen_size_range_unchecked.3\', \'share/man/man3/xcb_randr_list_output_properties.3\', \'share/man/man3/xcb_randr_list_output_properties_atoms.3\', \'share/man/man3/xcb_randr_list_output_properties_atoms_end.3\', \'share/man/man3/xcb_randr_list_output_properties_atoms_length.3\', \'share/man/man3/xcb_randr_list_output_properties_reply.3\', \'share/man/man3/xcb_randr_list_output_properties_unchecked.3\', \'share/man/man3/xcb_randr_list_provider_properties.3\', \'share/man/man3/xcb_randr_list_provider_properties_atoms.3\', \'share/man/man3/xcb_randr_list_provider_properties_atoms_end.3\', \'share/man/man3/xcb_randr_list_provider_properties_atoms_length.3\', \'share/man/man3/xcb_randr_list_provider_properties_reply.3\', \'share/man/man3/xcb_randr_list_provider_properties_unchecked.3\', \'share/man/man3/xcb_randr_notify_event_t.3\', \'share/man/man3/xcb_randr_query_output_property.3\', \'share/man/man3/xcb_randr_query_output_property_reply.3\', \'share/man/man3/xcb_randr_query_output_property_unchecked.3\', \'share/man/man3/xcb_randr_query_output_property_valid_values.3\', \'share/man/man3/xcb_randr_query_output_property_valid_values_end.3\', \'share/man/man3/xcb_randr_query_output_property_valid_values_length.3\', \'share/man/man3/xcb_randr_query_provider_property.3\', \'share/man/man3/xcb_randr_query_provider_property_reply.3\', \'share/man/man3/xcb_randr_query_provider_property_unchecked.3\', \'share/man/man3/xcb_randr_query_provider_property_valid_values.3\', \'share/man/man3/xcb_randr_query_provider_property_valid_values_end.3\', \'share/man/man3/xcb_randr_query_provider_property_valid_values_length.3\', \'share/man/man3/xcb_randr_query_version.3\', \'share/man/man3/xcb_randr_query_version_reply.3\', \'share/man/man3/xcb_randr_query_version_unchecked.3\', \'share/man/man3/xcb_randr_screen_change_notify_event_t.3\', \'share/man/man3/xcb_randr_select_input.3\', \'share/man/man3/xcb_randr_select_input_checked.3\', \'share/man/man3/xcb_randr_set_crtc_config.3\', \'share/man/man3/xcb_randr_set_crtc_config_reply.3\', \'share/man/man3/xcb_randr_set_crtc_config_unchecked.3\', \'share/man/man3/xcb_randr_set_crtc_gamma.3\', \'share/man/man3/xcb_randr_set_crtc_gamma_checked.3\', \'share/man/man3/xcb_randr_set_crtc_transform.3\', \'share/man/man3/xcb_randr_set_crtc_transform_checked.3\', \'share/man/man3/xcb_randr_set_monitor.3\', \'share/man/man3/xcb_randr_set_monitor_checked.3\', \'share/man/man3/xcb_randr_set_output_primary.3\', \'share/man/man3/xcb_randr_set_output_primary_checked.3\', \'share/man/man3/xcb_randr_set_panning.3\', \'share/man/man3/xcb_randr_set_panning_reply.3\', \'share/man/man3/xcb_randr_set_panning_unchecked.3\', \'share/man/man3/xcb_randr_set_provider_offload_sink.3\', \'share/man/man3/xcb_randr_set_provider_offload_sink_checked.3\', \'share/man/man3/xcb_randr_set_provider_output_source.3\', \'share/man/man3/xcb_randr_set_provider_output_source_checked.3\', \'share/man/man3/xcb_randr_set_screen_config.3\', \'share/man/man3/xcb_randr_set_screen_config_reply.3\', \'share/man/man3/xcb_randr_set_screen_config_unchecked.3\', \'share/man/man3/xcb_randr_set_screen_size.3\', \'share/man/man3/xcb_randr_set_screen_size_checked.3\', \'share/man/man3/xcb_recolor_cursor.3\', \'share/man/man3/xcb_recolor_cursor_checked.3\', \'share/man/man3/xcb_record_create_context.3\', \'share/man/man3/xcb_record_create_context_checked.3\', \'share/man/man3/xcb_record_disable_context.3\', \'share/man/man3/xcb_record_disable_context_checked.3\', \'share/man/man3/xcb_record_enable_context.3\', \'share/man/man3/xcb_record_enable_context_data.3\', \'share/man/man3/xcb_record_enable_context_data_end.3\', \'share/man/man3/xcb_record_enable_context_data_length.3\', \'share/man/man3/xcb_record_enable_context_reply.3\', \'share/man/man3/xcb_record_enable_context_unchecked.3\', \'share/man/man3/xcb_record_free_context.3\', \'share/man/man3/xcb_record_free_context_checked.3\', \'share/man/man3/xcb_record_get_context.3\', \'share/man/man3/xcb_record_get_context_intercepted_clients_iterator.3\', \'share/man/man3/xcb_record_get_context_intercepted_clients_length.3\', \'share/man/man3/xcb_record_get_context_reply.3\', \'share/man/man3/xcb_record_get_context_unchecked.3\', \'share/man/man3/xcb_record_query_version.3\', \'share/man/man3/xcb_record_query_version_reply.3\', \'share/man/man3/xcb_record_query_version_unchecked.3\', \'share/man/man3/xcb_record_register_clients.3\', \'share/man/man3/xcb_record_register_clients_checked.3\', \'share/man/man3/xcb_record_unregister_clients.3\', \'share/man/man3/xcb_record_unregister_clients_checked.3\', \'share/man/man3/xcb_render_add_glyphs.3\', \'share/man/man3/xcb_render_add_glyphs_checked.3\', \'share/man/man3/xcb_render_add_traps.3\', \'share/man/man3/xcb_render_add_traps_checked.3\', \'share/man/man3/xcb_render_change_picture.3\', \'share/man/man3/xcb_render_change_picture_checked.3\', \'share/man/man3/xcb_render_composite.3\', \'share/man/man3/xcb_render_composite_checked.3\', \'share/man/man3/xcb_render_composite_glyphs_16.3\', \'share/man/man3/xcb_render_composite_glyphs_16_checked.3\', \'share/man/man3/xcb_render_composite_glyphs_32.3\', \'share/man/man3/xcb_render_composite_glyphs_32_checked.3\', \'share/man/man3/xcb_render_composite_glyphs_8.3\', \'share/man/man3/xcb_render_composite_glyphs_8_checked.3\', \'share/man/man3/xcb_render_create_anim_cursor.3\', \'share/man/man3/xcb_render_create_anim_cursor_checked.3\', \'share/man/man3/xcb_render_create_conical_gradient.3\', \'share/man/man3/xcb_render_create_conical_gradient_checked.3\', \'share/man/man3/xcb_render_create_cursor.3\', \'share/man/man3/xcb_render_create_cursor_checked.3\', \'share/man/man3/xcb_render_create_glyph_set.3\', \'share/man/man3/xcb_render_create_glyph_set_checked.3\', \'share/man/man3/xcb_render_create_linear_gradient.3\', \'share/man/man3/xcb_render_create_linear_gradient_checked.3\', \'share/man/man3/xcb_render_create_picture.3\', \'share/man/man3/xcb_render_create_picture_checked.3\', \'share/man/man3/xcb_render_create_radial_gradient.3\', \'share/man/man3/xcb_render_create_radial_gradient_checked.3\', \'share/man/man3/xcb_render_create_solid_fill.3\', \'share/man/man3/xcb_render_create_solid_fill_checked.3\', \'share/man/man3/xcb_render_fill_rectangles.3\', \'share/man/man3/xcb_render_fill_rectangles_checked.3\', \'share/man/man3/xcb_render_free_glyph_set.3\', \'share/man/man3/xcb_render_free_glyph_set_checked.3\', \'share/man/man3/xcb_render_free_glyphs.3\', \'share/man/man3/xcb_render_free_glyphs_checked.3\', \'share/man/man3/xcb_render_free_picture.3\', \'share/man/man3/xcb_render_free_picture_checked.3\', \'share/man/man3/xcb_render_query_filters.3\', \'share/man/man3/xcb_render_query_filters_aliases.3\', \'share/man/man3/xcb_render_query_filters_aliases_end.3\', \'share/man/man3/xcb_render_query_filters_aliases_length.3\', \'share/man/man3/xcb_render_query_filters_filters_iterator.3\', \'share/man/man3/xcb_render_query_filters_filters_length.3\', \'share/man/man3/xcb_render_query_filters_reply.3\', \'share/man/man3/xcb_render_query_filters_unchecked.3\', \'share/man/man3/xcb_render_query_pict_formats.3\', \'share/man/man3/xcb_render_query_pict_formats_formats.3\', \'share/man/man3/xcb_render_query_pict_formats_formats_iterator.3\', \'share/man/man3/xcb_render_query_pict_formats_formats_length.3\', \'share/man/man3/xcb_render_query_pict_formats_reply.3\', \'share/man/man3/xcb_render_query_pict_formats_screens_iterator.3\', \'share/man/man3/xcb_render_query_pict_formats_screens_length.3\', \'share/man/man3/xcb_render_query_pict_formats_subpixels.3\', \'share/man/man3/xcb_render_query_pict_formats_subpixels_end.3\', \'share/man/man3/xcb_render_query_pict_formats_subpixels_length.3\', \'share/man/man3/xcb_render_query_pict_formats_unchecked.3\', \'share/man/man3/xcb_render_query_pict_index_values.3\', \'share/man/man3/xcb_render_query_pict_index_values_reply.3\', \'share/man/man3/xcb_render_query_pict_index_values_unchecked.3\', \'share/man/man3/xcb_render_query_pict_index_values_values.3\', \'share/man/man3/xcb_render_query_pict_index_values_values_iterator.3\', \'share/man/man3/xcb_render_query_pict_index_values_values_length.3\', \'share/man/man3/xcb_render_query_version.3\', \'share/man/man3/xcb_render_query_version_reply.3\', \'share/man/man3/xcb_render_query_version_unchecked.3\', \'share/man/man3/xcb_render_reference_glyph_set.3\', \'share/man/man3/xcb_render_reference_glyph_set_checked.3\', \'share/man/man3/xcb_render_set_picture_clip_rectangles.3\', \'share/man/man3/xcb_render_set_picture_clip_rectangles_checked.3\', \'share/man/man3/xcb_render_set_picture_filter.3\', \'share/man/man3/xcb_render_set_picture_filter_checked.3\', \'share/man/man3/xcb_render_set_picture_transform.3\', \'share/man/man3/xcb_render_set_picture_transform_checked.3\', \'share/man/man3/xcb_render_trapezoids.3\', \'share/man/man3/xcb_render_trapezoids_checked.3\', \'share/man/man3/xcb_render_tri_fan.3\', \'share/man/man3/xcb_render_tri_fan_checked.3\', \'share/man/man3/xcb_render_tri_strip.3\', \'share/man/man3/xcb_render_tri_strip_checked.3\', \'share/man/man3/xcb_render_triangles.3\', \'share/man/man3/xcb_render_triangles_checked.3\', \'share/man/man3/xcb_reparent_notify_event_t.3\', \'share/man/man3/xcb_reparent_window.3\', \'share/man/man3/xcb_reparent_window_checked.3\', \'share/man/man3/xcb_res_query_client_ids.3\', \'share/man/man3/xcb_res_query_client_ids_ids_iterator.3\', \'share/man/man3/xcb_res_query_client_ids_ids_length.3\', \'share/man/man3/xcb_res_query_client_ids_reply.3\', \'share/man/man3/xcb_res_query_client_ids_unchecked.3\', \'share/man/man3/xcb_res_query_client_pixmap_bytes.3\', \'share/man/man3/xcb_res_query_client_pixmap_bytes_reply.3\', \'share/man/man3/xcb_res_query_client_pixmap_bytes_unchecked.3\', \'share/man/man3/xcb_res_query_client_resources.3\', \'share/man/man3/xcb_res_query_client_resources_reply.3\', \'share/man/man3/xcb_res_query_client_resources_types.3\', \'share/man/man3/xcb_res_query_client_resources_types_iterator.3\', \'share/man/man3/xcb_res_query_client_resources_types_length.3\', \'share/man/man3/xcb_res_query_client_resources_unchecked.3\', \'share/man/man3/xcb_res_query_clients.3\', \'share/man/man3/xcb_res_query_clients_clients.3\', \'share/man/man3/xcb_res_query_clients_clients_iterator.3\', \'share/man/man3/xcb_res_query_clients_clients_length.3\', \'share/man/man3/xcb_res_query_clients_reply.3\', \'share/man/man3/xcb_res_query_clients_unchecked.3\', \'share/man/man3/xcb_res_query_resource_bytes.3\', \'share/man/man3/xcb_res_query_resource_bytes_reply.3\', \'share/man/man3/xcb_res_query_resource_bytes_sizes_iterator.3\', \'share/man/man3/xcb_res_query_resource_bytes_sizes_length.3\', \'share/man/man3/xcb_res_query_resource_bytes_unchecked.3\', \'share/man/man3/xcb_res_query_version.3\', \'share/man/man3/xcb_res_query_version_reply.3\', \'share/man/man3/xcb_res_query_version_unchecked.3\', \'share/man/man3/xcb_resize_request_event_t.3\', \'share/man/man3/xcb_rotate_properties.3\', \'share/man/man3/xcb_rotate_properties_checked.3\', \'share/man/man3/xcb_screensaver_notify_event_t.3\', \'share/man/man3/xcb_screensaver_query_info.3\', \'share/man/man3/xcb_screensaver_query_info_reply.3\', \'share/man/man3/xcb_screensaver_query_info_unchecked.3\', \'share/man/man3/xcb_screensaver_query_version.3\', \'share/man/man3/xcb_screensaver_query_version_reply.3\', \'share/man/man3/xcb_screensaver_query_version_unchecked.3\', \'share/man/man3/xcb_screensaver_select_input.3\', \'share/man/man3/xcb_screensaver_select_input_checked.3\', \'share/man/man3/xcb_screensaver_set_attributes.3\', \'share/man/man3/xcb_screensaver_set_attributes_checked.3\', \'share/man/man3/xcb_screensaver_suspend.3\', \'share/man/man3/xcb_screensaver_suspend_checked.3\', \'share/man/man3/xcb_screensaver_unset_attributes.3\', \'share/man/man3/xcb_screensaver_unset_attributes_checked.3\', \'share/man/man3/xcb_selection_clear_event_t.3\', \'share/man/man3/xcb_selection_notify_event_t.3\', \'share/man/man3/xcb_selection_request_event_t.3\', \'share/man/man3/xcb_selinux_get_client_context.3\', \'share/man/man3/xcb_selinux_get_client_context_context.3\', \'share/man/man3/xcb_selinux_get_client_context_context_end.3\', \'share/man/man3/xcb_selinux_get_client_context_context_length.3\', \'share/man/man3/xcb_selinux_get_client_context_reply.3\', \'share/man/man3/xcb_selinux_get_client_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_device_context.3\', \'share/man/man3/xcb_selinux_get_device_context_context.3\', \'share/man/man3/xcb_selinux_get_device_context_context_end.3\', \'share/man/man3/xcb_selinux_get_device_context_context_length.3\', \'share/man/man3/xcb_selinux_get_device_context_reply.3\', \'share/man/man3/xcb_selinux_get_device_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_device_create_context.3\', \'share/man/man3/xcb_selinux_get_device_create_context_context.3\', \'share/man/man3/xcb_selinux_get_device_create_context_context_end.3\', \'share/man/man3/xcb_selinux_get_device_create_context_context_length.3\', \'share/man/man3/xcb_selinux_get_device_create_context_reply.3\', \'share/man/man3/xcb_selinux_get_device_create_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_property_context.3\', \'share/man/man3/xcb_selinux_get_property_context_context.3\', \'share/man/man3/xcb_selinux_get_property_context_context_end.3\', \'share/man/man3/xcb_selinux_get_property_context_context_length.3\', \'share/man/man3/xcb_selinux_get_property_context_reply.3\', \'share/man/man3/xcb_selinux_get_property_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_property_create_context.3\', \'share/man/man3/xcb_selinux_get_property_create_context_context.3\', \'share/man/man3/xcb_selinux_get_property_create_context_context_end.3\', \'share/man/man3/xcb_selinux_get_property_create_context_context_length.3\', \'share/man/man3/xcb_selinux_get_property_create_context_reply.3\', \'share/man/man3/xcb_selinux_get_property_create_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_property_data_context.3\', \'share/man/man3/xcb_selinux_get_property_data_context_context.3\', \'share/man/man3/xcb_selinux_get_property_data_context_context_end.3\', \'share/man/man3/xcb_selinux_get_property_data_context_context_length.3\', \'share/man/man3/xcb_selinux_get_property_data_context_reply.3\', \'share/man/man3/xcb_selinux_get_property_data_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_property_use_context.3\', \'share/man/man3/xcb_selinux_get_property_use_context_context.3\', \'share/man/man3/xcb_selinux_get_property_use_context_context_end.3\', \'share/man/man3/xcb_selinux_get_property_use_context_context_length.3\', \'share/man/man3/xcb_selinux_get_property_use_context_reply.3\', \'share/man/man3/xcb_selinux_get_property_use_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_selection_context.3\', \'share/man/man3/xcb_selinux_get_selection_context_context.3\', \'share/man/man3/xcb_selinux_get_selection_context_context_end.3\', \'share/man/man3/xcb_selinux_get_selection_context_context_length.3\', \'share/man/man3/xcb_selinux_get_selection_context_reply.3\', \'share/man/man3/xcb_selinux_get_selection_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_selection_create_context.3\', \'share/man/man3/xcb_selinux_get_selection_create_context_context.3\', \'share/man/man3/xcb_selinux_get_selection_create_context_context_end.3\', \'share/man/man3/xcb_selinux_get_selection_create_context_context_length.3\', \'share/man/man3/xcb_selinux_get_selection_create_context_reply.3\', \'share/man/man3/xcb_selinux_get_selection_create_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_selection_data_context.3\', \'share/man/man3/xcb_selinux_get_selection_data_context_context.3\', \'share/man/man3/xcb_selinux_get_selection_data_context_context_end.3\', \'share/man/man3/xcb_selinux_get_selection_data_context_context_length.3\', \'share/man/man3/xcb_selinux_get_selection_data_context_reply.3\', \'share/man/man3/xcb_selinux_get_selection_data_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_selection_use_context.3\', \'share/man/man3/xcb_selinux_get_selection_use_context_context.3\', \'share/man/man3/xcb_selinux_get_selection_use_context_context_end.3\', \'share/man/man3/xcb_selinux_get_selection_use_context_context_length.3\', \'share/man/man3/xcb_selinux_get_selection_use_context_reply.3\', \'share/man/man3/xcb_selinux_get_selection_use_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_window_context.3\', \'share/man/man3/xcb_selinux_get_window_context_context.3\', \'share/man/man3/xcb_selinux_get_window_context_context_end.3\', \'share/man/man3/xcb_selinux_get_window_context_context_length.3\', \'share/man/man3/xcb_selinux_get_window_context_reply.3\', \'share/man/man3/xcb_selinux_get_window_context_unchecked.3\', \'share/man/man3/xcb_selinux_get_window_create_context.3\', \'share/man/man3/xcb_selinux_get_window_create_context_context.3\', \'share/man/man3/xcb_selinux_get_window_create_context_context_end.3\', \'share/man/man3/xcb_selinux_get_window_create_context_context_length.3\', \'share/man/man3/xcb_selinux_get_window_create_context_reply.3\', \'share/man/man3/xcb_selinux_get_window_create_context_unchecked.3\', \'share/man/man3/xcb_selinux_list_properties.3\', \'share/man/man3/xcb_selinux_list_properties_properties_iterator.3\', \'share/man/man3/xcb_selinux_list_properties_properties_length.3\', \'share/man/man3/xcb_selinux_list_properties_reply.3\', \'share/man/man3/xcb_selinux_list_properties_unchecked.3\', \'share/man/man3/xcb_selinux_list_selections.3\', \'share/man/man3/xcb_selinux_list_selections_reply.3\', \'share/man/man3/xcb_selinux_list_selections_selections_iterator.3\', \'share/man/man3/xcb_selinux_list_selections_selections_length.3\', \'share/man/man3/xcb_selinux_list_selections_unchecked.3\', \'share/man/man3/xcb_selinux_query_version.3\', \'share/man/man3/xcb_selinux_query_version_reply.3\', \'share/man/man3/xcb_selinux_query_version_unchecked.3\', \'share/man/man3/xcb_selinux_set_device_context.3\', \'share/man/man3/xcb_selinux_set_device_context_checked.3\', \'share/man/man3/xcb_selinux_set_device_create_context.3\', \'share/man/man3/xcb_selinux_set_device_create_context_checked.3\', \'share/man/man3/xcb_selinux_set_property_create_context.3\', \'share/man/man3/xcb_selinux_set_property_create_context_checked.3\', \'share/man/man3/xcb_selinux_set_property_use_context.3\', \'share/man/man3/xcb_selinux_set_property_use_context_checked.3\', \'share/man/man3/xcb_selinux_set_selection_create_context.3\', \'share/man/man3/xcb_selinux_set_selection_create_context_checked.3\', \'share/man/man3/xcb_selinux_set_selection_use_context.3\', \'share/man/man3/xcb_selinux_set_selection_use_context_checked.3\', \'share/man/man3/xcb_selinux_set_window_create_context.3\', \'share/man/man3/xcb_selinux_set_window_create_context_checked.3\', \'share/man/man3/xcb_send_event.3\', \'share/man/man3/xcb_send_event_checked.3\', \'share/man/man3/xcb_set_access_control.3\', \'share/man/man3/xcb_set_access_control_checked.3\', \'share/man/man3/xcb_set_clip_rectangles.3\', \'share/man/man3/xcb_set_clip_rectangles_checked.3\', \'share/man/man3/xcb_set_close_down_mode.3\', \'share/man/man3/xcb_set_close_down_mode_checked.3\', \'share/man/man3/xcb_set_dashes.3\', \'share/man/man3/xcb_set_dashes_checked.3\', \'share/man/man3/xcb_set_font_path.3\', \'share/man/man3/xcb_set_font_path_checked.3\', \'share/man/man3/xcb_set_input_focus.3\', \'share/man/man3/xcb_set_input_focus_checked.3\', \'share/man/man3/xcb_set_modifier_mapping.3\', \'share/man/man3/xcb_set_modifier_mapping_reply.3\', \'share/man/man3/xcb_set_modifier_mapping_unchecked.3\', \'share/man/man3/xcb_set_pointer_mapping.3\', \'share/man/man3/xcb_set_pointer_mapping_reply.3\', \'share/man/man3/xcb_set_pointer_mapping_unchecked.3\', \'share/man/man3/xcb_set_screen_saver.3\', \'share/man/man3/xcb_set_screen_saver_checked.3\', \'share/man/man3/xcb_set_selection_owner.3\', \'share/man/man3/xcb_set_selection_owner_checked.3\', \'share/man/man3/xcb_shape_combine.3\', \'share/man/man3/xcb_shape_combine_checked.3\', \'share/man/man3/xcb_shape_get_rectangles.3\', \'share/man/man3/xcb_shape_get_rectangles_rectangles.3\', \'share/man/man3/xcb_shape_get_rectangles_rectangles_iterator.3\', \'share/man/man3/xcb_shape_get_rectangles_rectangles_length.3\', \'share/man/man3/xcb_shape_get_rectangles_reply.3\', \'share/man/man3/xcb_shape_get_rectangles_unchecked.3\', \'share/man/man3/xcb_shape_input_selected.3\', \'share/man/man3/xcb_shape_input_selected_reply.3\', \'share/man/man3/xcb_shape_input_selected_unchecked.3\', \'share/man/man3/xcb_shape_mask.3\', \'share/man/man3/xcb_shape_mask_checked.3\', \'share/man/man3/xcb_shape_notify_event_t.3\', \'share/man/man3/xcb_shape_offset.3\', \'share/man/man3/xcb_shape_offset_checked.3\', \'share/man/man3/xcb_shape_query_extents.3\', \'share/man/man3/xcb_shape_query_extents_reply.3\', \'share/man/man3/xcb_shape_query_extents_unchecked.3\', \'share/man/man3/xcb_shape_query_version.3\', \'share/man/man3/xcb_shape_query_version_reply.3\', \'share/man/man3/xcb_shape_query_version_unchecked.3\', \'share/man/man3/xcb_shape_rectangles.3\', \'share/man/man3/xcb_shape_rectangles_checked.3\', \'share/man/man3/xcb_shape_select_input.3\', \'share/man/man3/xcb_shape_select_input_checked.3\', \'share/man/man3/xcb_shm_attach.3\', \'share/man/man3/xcb_shm_attach_checked.3\', \'share/man/man3/xcb_shm_attach_fd.3\', \'share/man/man3/xcb_shm_attach_fd_checked.3\', \'share/man/man3/xcb_shm_completion_event_t.3\', \'share/man/man3/xcb_shm_create_pixmap.3\', \'share/man/man3/xcb_shm_create_pixmap_checked.3\', \'share/man/man3/xcb_shm_create_segment.3\', \'share/man/man3/xcb_shm_create_segment_reply.3\', \'share/man/man3/xcb_shm_create_segment_unchecked.3\', \'share/man/man3/xcb_shm_detach.3\', \'share/man/man3/xcb_shm_detach_checked.3\', \'share/man/man3/xcb_shm_get_image.3\', \'share/man/man3/xcb_shm_get_image_reply.3\', \'share/man/man3/xcb_shm_get_image_unchecked.3\', \'share/man/man3/xcb_shm_put_image.3\', \'share/man/man3/xcb_shm_put_image_checked.3\', \'share/man/man3/xcb_shm_query_version.3\', \'share/man/man3/xcb_shm_query_version_reply.3\', \'share/man/man3/xcb_shm_query_version_unchecked.3\', \'share/man/man3/xcb_store_colors.3\', \'share/man/man3/xcb_store_colors_checked.3\', \'share/man/man3/xcb_store_named_color.3\', \'share/man/man3/xcb_store_named_color_checked.3\', \'share/man/man3/xcb_sync_alarm_notify_event_t.3\', \'share/man/man3/xcb_sync_await.3\', \'share/man/man3/xcb_sync_await_checked.3\', \'share/man/man3/xcb_sync_await_fence.3\', \'share/man/man3/xcb_sync_await_fence_checked.3\', \'share/man/man3/xcb_sync_change_alarm.3\', \'share/man/man3/xcb_sync_change_alarm_checked.3\', \'share/man/man3/xcb_sync_change_counter.3\', \'share/man/man3/xcb_sync_change_counter_checked.3\', \'share/man/man3/xcb_sync_counter_notify_event_t.3\', \'share/man/man3/xcb_sync_create_alarm.3\', \'share/man/man3/xcb_sync_create_alarm_checked.3\', \'share/man/man3/xcb_sync_create_counter.3\', \'share/man/man3/xcb_sync_create_counter_checked.3\', \'share/man/man3/xcb_sync_create_fence.3\', \'share/man/man3/xcb_sync_create_fence_checked.3\', \'share/man/man3/xcb_sync_destroy_alarm.3\', \'share/man/man3/xcb_sync_destroy_alarm_checked.3\', \'share/man/man3/xcb_sync_destroy_counter.3\', \'share/man/man3/xcb_sync_destroy_counter_checked.3\', \'share/man/man3/xcb_sync_destroy_fence.3\', \'share/man/man3/xcb_sync_destroy_fence_checked.3\', \'share/man/man3/xcb_sync_get_priority.3\', \'share/man/man3/xcb_sync_get_priority_reply.3\', \'share/man/man3/xcb_sync_get_priority_unchecked.3\', \'share/man/man3/xcb_sync_initialize.3\', \'share/man/man3/xcb_sync_initialize_reply.3\', \'share/man/man3/xcb_sync_initialize_unchecked.3\', \'share/man/man3/xcb_sync_list_system_counters.3\', \'share/man/man3/xcb_sync_list_system_counters_counters_iterator.3\', \'share/man/man3/xcb_sync_list_system_counters_counters_length.3\', \'share/man/man3/xcb_sync_list_system_counters_reply.3\', \'share/man/man3/xcb_sync_list_system_counters_unchecked.3\', \'share/man/man3/xcb_sync_query_alarm.3\', \'share/man/man3/xcb_sync_query_alarm_reply.3\', \'share/man/man3/xcb_sync_query_alarm_unchecked.3\', \'share/man/man3/xcb_sync_query_counter.3\', \'share/man/man3/xcb_sync_query_counter_reply.3\', \'share/man/man3/xcb_sync_query_counter_unchecked.3\', \'share/man/man3/xcb_sync_query_fence.3\', \'share/man/man3/xcb_sync_query_fence_reply.3\', \'share/man/man3/xcb_sync_query_fence_unchecked.3\', \'share/man/man3/xcb_sync_reset_fence.3\', \'share/man/man3/xcb_sync_reset_fence_checked.3\', \'share/man/man3/xcb_sync_set_counter.3\', \'share/man/man3/xcb_sync_set_counter_checked.3\', \'share/man/man3/xcb_sync_set_priority.3\', \'share/man/man3/xcb_sync_set_priority_checked.3\', \'share/man/man3/xcb_sync_trigger_fence.3\', \'share/man/man3/xcb_sync_trigger_fence_checked.3\', \'share/man/man3/xcb_test_compare_cursor.3\', \'share/man/man3/xcb_test_compare_cursor_reply.3\', \'share/man/man3/xcb_test_compare_cursor_unchecked.3\', \'share/man/man3/xcb_test_fake_input.3\', \'share/man/man3/xcb_test_fake_input_checked.3\', \'share/man/man3/xcb_test_get_version.3\', \'share/man/man3/xcb_test_get_version_reply.3\', \'share/man/man3/xcb_test_get_version_unchecked.3\', \'share/man/man3/xcb_test_grab_control.3\', \'share/man/man3/xcb_test_grab_control_checked.3\', \'share/man/man3/xcb_translate_coordinates.3\', \'share/man/man3/xcb_translate_coordinates_reply.3\', \'share/man/man3/xcb_translate_coordinates_unchecked.3\', \'share/man/man3/xcb_ungrab_button.3\', \'share/man/man3/xcb_ungrab_button_checked.3\', \'share/man/man3/xcb_ungrab_key.3\', \'share/man/man3/xcb_ungrab_key_checked.3\', \'share/man/man3/xcb_ungrab_keyboard.3\', \'share/man/man3/xcb_ungrab_keyboard_checked.3\', \'share/man/man3/xcb_ungrab_pointer.3\', \'share/man/man3/xcb_ungrab_pointer_checked.3\', \'share/man/man3/xcb_ungrab_server.3\', \'share/man/man3/xcb_ungrab_server_checked.3\', \'share/man/man3/xcb_uninstall_colormap.3\', \'share/man/man3/xcb_uninstall_colormap_checked.3\', \'share/man/man3/xcb_unmap_notify_event_t.3\', \'share/man/man3/xcb_unmap_subwindows.3\', \'share/man/man3/xcb_unmap_subwindows_checked.3\', \'share/man/man3/xcb_unmap_window.3\', \'share/man/man3/xcb_unmap_window_checked.3\', \'share/man/man3/xcb_visibility_notify_event_t.3\', \'share/man/man3/xcb_warp_pointer.3\', \'share/man/man3/xcb_warp_pointer_checked.3\', \'share/man/man3/xcb_x_print_attribut_notify_event_t.3\', \'share/man/man3/xcb_x_print_create_context.3\', \'share/man/man3/xcb_x_print_create_context_checked.3\', \'share/man/man3/xcb_x_print_notify_event_t.3\', \'share/man/man3/xcb_x_print_print_destroy_context.3\', \'share/man/man3/xcb_x_print_print_destroy_context_checked.3\', \'share/man/man3/xcb_x_print_print_end_doc.3\', \'share/man/man3/xcb_x_print_print_end_doc_checked.3\', \'share/man/man3/xcb_x_print_print_end_job.3\', \'share/man/man3/xcb_x_print_print_end_job_checked.3\', \'share/man/man3/xcb_x_print_print_end_page.3\', \'share/man/man3/xcb_x_print_print_end_page_checked.3\', \'share/man/man3/xcb_x_print_print_get_attributes.3\', \'share/man/man3/xcb_x_print_print_get_attributes_attributes.3\', \'share/man/man3/xcb_x_print_print_get_attributes_attributes_end.3\', \'share/man/man3/xcb_x_print_print_get_attributes_attributes_length.3\', \'share/man/man3/xcb_x_print_print_get_attributes_reply.3\', \'share/man/man3/xcb_x_print_print_get_attributes_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_context.3\', \'share/man/man3/xcb_x_print_print_get_context_reply.3\', \'share/man/man3/xcb_x_print_print_get_context_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_document_data.3\', \'share/man/man3/xcb_x_print_print_get_document_data_data.3\', \'share/man/man3/xcb_x_print_print_get_document_data_data_end.3\', \'share/man/man3/xcb_x_print_print_get_document_data_data_length.3\', \'share/man/man3/xcb_x_print_print_get_document_data_reply.3\', \'share/man/man3/xcb_x_print_print_get_document_data_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_image_resolution.3\', \'share/man/man3/xcb_x_print_print_get_image_resolution_reply.3\', \'share/man/man3/xcb_x_print_print_get_image_resolution_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes_reply.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes_value.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes_value_end.3\', \'share/man/man3/xcb_x_print_print_get_one_attributes_value_length.3\', \'share/man/man3/xcb_x_print_print_get_page_dimensions.3\', \'share/man/man3/xcb_x_print_print_get_page_dimensions_reply.3\', \'share/man/man3/xcb_x_print_print_get_page_dimensions_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_printer_list.3\', \'share/man/man3/xcb_x_print_print_get_printer_list_printers_iterator.3\', \'share/man/man3/xcb_x_print_print_get_printer_list_printers_length.3\', \'share/man/man3/xcb_x_print_print_get_printer_list_reply.3\', \'share/man/man3/xcb_x_print_print_get_printer_list_unchecked.3\', \'share/man/man3/xcb_x_print_print_get_screen_of_context.3\', \'share/man/man3/xcb_x_print_print_get_screen_of_context_reply.3\', \'share/man/man3/xcb_x_print_print_get_screen_of_context_unchecked.3\', \'share/man/man3/xcb_x_print_print_input_selected.3\', \'share/man/man3/xcb_x_print_print_input_selected_reply.3\', \'share/man/man3/xcb_x_print_print_input_selected_unchecked.3\', \'share/man/man3/xcb_x_print_print_put_document_data.3\', \'share/man/man3/xcb_x_print_print_put_document_data_checked.3\', \'share/man/man3/xcb_x_print_print_query_screens.3\', \'share/man/man3/xcb_x_print_print_query_screens_reply.3\', \'share/man/man3/xcb_x_print_print_query_screens_roots.3\', \'share/man/man3/xcb_x_print_print_query_screens_roots_end.3\', \'share/man/man3/xcb_x_print_print_query_screens_roots_length.3\', \'share/man/man3/xcb_x_print_print_query_screens_unchecked.3\', \'share/man/man3/xcb_x_print_print_query_version.3\', \'share/man/man3/xcb_x_print_print_query_version_reply.3\', \'share/man/man3/xcb_x_print_print_query_version_unchecked.3\', \'share/man/man3/xcb_x_print_print_rehash_printer_list.3\', \'share/man/man3/xcb_x_print_print_rehash_printer_list_checked.3\', \'share/man/man3/xcb_x_print_print_select_input.3\', \'share/man/man3/xcb_x_print_print_select_input_checked.3\', \'share/man/man3/xcb_x_print_print_set_attributes.3\', \'share/man/man3/xcb_x_print_print_set_attributes_checked.3\', \'share/man/man3/xcb_x_print_print_set_context.3\', \'share/man/man3/xcb_x_print_print_set_context_checked.3\', \'share/man/man3/xcb_x_print_print_set_image_resolution.3\', \'share/man/man3/xcb_x_print_print_set_image_resolution_reply.3\', \'share/man/man3/xcb_x_print_print_set_image_resolution_unchecked.3\', \'share/man/man3/xcb_x_print_print_start_doc.3\', \'share/man/man3/xcb_x_print_print_start_doc_checked.3\', \'share/man/man3/xcb_x_print_print_start_job.3\', \'share/man/man3/xcb_x_print_print_start_job_checked.3\', \'share/man/man3/xcb_x_print_print_start_page.3\', \'share/man/man3/xcb_x_print_print_start_page_checked.3\', \'share/man/man3/xcb_xc_misc_get_version.3\', \'share/man/man3/xcb_xc_misc_get_version_reply.3\', \'share/man/man3/xcb_xc_misc_get_version_unchecked.3\', \'share/man/man3/xcb_xc_misc_get_xid_list.3\', \'share/man/man3/xcb_xc_misc_get_xid_list_ids.3\', \'share/man/man3/xcb_xc_misc_get_xid_list_ids_end.3\', \'share/man/man3/xcb_xc_misc_get_xid_list_ids_length.3\', \'share/man/man3/xcb_xc_misc_get_xid_list_reply.3\', \'share/man/man3/xcb_xc_misc_get_xid_list_unchecked.3\', \'share/man/man3/xcb_xc_misc_get_xid_range.3\', \'share/man/man3/xcb_xc_misc_get_xid_range_reply.3\', \'share/man/man3/xcb_xc_misc_get_xid_range_unchecked.3\', \'share/man/man3/xcb_xevie_end.3\', \'share/man/man3/xcb_xevie_end_reply.3\', \'share/man/man3/xcb_xevie_end_unchecked.3\', \'share/man/man3/xcb_xevie_query_version.3\', \'share/man/man3/xcb_xevie_query_version_reply.3\', \'share/man/man3/xcb_xevie_query_version_unchecked.3\', \'share/man/man3/xcb_xevie_select_input.3\', \'share/man/man3/xcb_xevie_select_input_reply.3\', \'share/man/man3/xcb_xevie_select_input_unchecked.3\', \'share/man/man3/xcb_xevie_send.3\', \'share/man/man3/xcb_xevie_send_reply.3\', \'share/man/man3/xcb_xevie_send_unchecked.3\', \'share/man/man3/xcb_xevie_start.3\', \'share/man/man3/xcb_xevie_start_reply.3\', \'share/man/man3/xcb_xevie_start_unchecked.3\', \'share/man/man3/xcb_xf86dri_auth_connection.3\', \'share/man/man3/xcb_xf86dri_auth_connection_reply.3\', \'share/man/man3/xcb_xf86dri_auth_connection_unchecked.3\', \'share/man/man3/xcb_xf86dri_close_connection.3\', \'share/man/man3/xcb_xf86dri_close_connection_checked.3\', \'share/man/man3/xcb_xf86dri_create_context.3\', \'share/man/man3/xcb_xf86dri_create_context_reply.3\', \'share/man/man3/xcb_xf86dri_create_context_unchecked.3\', \'share/man/man3/xcb_xf86dri_create_drawable.3\', \'share/man/man3/xcb_xf86dri_create_drawable_reply.3\', \'share/man/man3/xcb_xf86dri_create_drawable_unchecked.3\', \'share/man/man3/xcb_xf86dri_destroy_context.3\', \'share/man/man3/xcb_xf86dri_destroy_context_checked.3\', \'share/man/man3/xcb_xf86dri_destroy_drawable.3\', \'share/man/man3/xcb_xf86dri_destroy_drawable_checked.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_end.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name_client_driver_name_length.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name_reply.3\', \'share/man/man3/xcb_xf86dri_get_client_driver_name_unchecked.3\', \'share/man/man3/xcb_xf86dri_get_device_info.3\', \'share/man/man3/xcb_xf86dri_get_device_info_device_private.3\', \'share/man/man3/xcb_xf86dri_get_device_info_device_private_end.3\', \'share/man/man3/xcb_xf86dri_get_device_info_device_private_length.3\', \'share/man/man3/xcb_xf86dri_get_device_info_reply.3\', \'share/man/man3/xcb_xf86dri_get_device_info_unchecked.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_iterator.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_back_clip_rects_length.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects_iterator.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_clip_rects_length.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_reply.3\', \'share/man/man3/xcb_xf86dri_get_drawable_info_unchecked.3\', \'share/man/man3/xcb_xf86dri_open_connection.3\', \'share/man/man3/xcb_xf86dri_open_connection_bus_id.3\', \'share/man/man3/xcb_xf86dri_open_connection_bus_id_end.3\', \'share/man/man3/xcb_xf86dri_open_connection_bus_id_length.3\', \'share/man/man3/xcb_xf86dri_open_connection_reply.3\', \'share/man/man3/xcb_xf86dri_open_connection_unchecked.3\', \'share/man/man3/xcb_xf86dri_query_direct_rendering_capable.3\', \'share/man/man3/xcb_xf86dri_query_direct_rendering_capable_reply.3\', \'share/man/man3/xcb_xf86dri_query_direct_rendering_capable_unchecked.3\', \'share/man/man3/xcb_xf86dri_query_version.3\', \'share/man/man3/xcb_xf86dri_query_version_reply.3\', \'share/man/man3/xcb_xf86dri_query_version_unchecked.3\', \'share/man/man3/xcb_xfixes_change_cursor.3\', \'share/man/man3/xcb_xfixes_change_cursor_by_name.3\', \'share/man/man3/xcb_xfixes_change_cursor_by_name_checked.3\', \'share/man/man3/xcb_xfixes_change_cursor_checked.3\', \'share/man/man3/xcb_xfixes_change_save_set.3\', \'share/man/man3/xcb_xfixes_change_save_set_checked.3\', \'share/man/man3/xcb_xfixes_copy_region.3\', \'share/man/man3/xcb_xfixes_copy_region_checked.3\', \'share/man/man3/xcb_xfixes_create_pointer_barrier.3\', \'share/man/man3/xcb_xfixes_create_pointer_barrier_checked.3\', \'share/man/man3/xcb_xfixes_create_region.3\', \'share/man/man3/xcb_xfixes_create_region_checked.3\', \'share/man/man3/xcb_xfixes_create_region_from_bitmap.3\', \'share/man/man3/xcb_xfixes_create_region_from_bitmap_checked.3\', \'share/man/man3/xcb_xfixes_create_region_from_gc.3\', \'share/man/man3/xcb_xfixes_create_region_from_gc_checked.3\', \'share/man/man3/xcb_xfixes_create_region_from_picture.3\', \'share/man/man3/xcb_xfixes_create_region_from_picture_checked.3\', \'share/man/man3/xcb_xfixes_create_region_from_window.3\', \'share/man/man3/xcb_xfixes_create_region_from_window_checked.3\', \'share/man/man3/xcb_xfixes_cursor_notify_event_t.3\', \'share/man/man3/xcb_xfixes_delete_pointer_barrier.3\', \'share/man/man3/xcb_xfixes_delete_pointer_barrier_checked.3\', \'share/man/man3/xcb_xfixes_destroy_region.3\', \'share/man/man3/xcb_xfixes_destroy_region_checked.3\', \'share/man/man3/xcb_xfixes_expand_region.3\', \'share/man/man3/xcb_xfixes_expand_region_checked.3\', \'share/man/man3/xcb_xfixes_fetch_region.3\', \'share/man/man3/xcb_xfixes_fetch_region_rectangles.3\', \'share/man/man3/xcb_xfixes_fetch_region_rectangles_iterator.3\', \'share/man/man3/xcb_xfixes_fetch_region_rectangles_length.3\', \'share/man/man3/xcb_xfixes_fetch_region_reply.3\', \'share/man/man3/xcb_xfixes_fetch_region_unchecked.3\', \'share/man/man3/xcb_xfixes_get_cursor_image.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_end.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_cursor_image_length.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_name.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_name_end.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_name_length.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_reply.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_and_name_unchecked.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_cursor_image.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_cursor_image_end.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_cursor_image_length.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_reply.3\', \'share/man/man3/xcb_xfixes_get_cursor_image_unchecked.3\', \'share/man/man3/xcb_xfixes_get_cursor_name.3\', \'share/man/man3/xcb_xfixes_get_cursor_name_name.3\', \'share/man/man3/xcb_xfixes_get_cursor_name_name_end.3\', \'share/man/man3/xcb_xfixes_get_cursor_name_name_length.3\', \'share/man/man3/xcb_xfixes_get_cursor_name_reply.3\', \'share/man/man3/xcb_xfixes_get_cursor_name_unchecked.3\', \'share/man/man3/xcb_xfixes_hide_cursor.3\', \'share/man/man3/xcb_xfixes_hide_cursor_checked.3\', \'share/man/man3/xcb_xfixes_intersect_region.3\', \'share/man/man3/xcb_xfixes_intersect_region_checked.3\', \'share/man/man3/xcb_xfixes_invert_region.3\', \'share/man/man3/xcb_xfixes_invert_region_checked.3\', \'share/man/man3/xcb_xfixes_query_version.3\', \'share/man/man3/xcb_xfixes_query_version_reply.3\', \'share/man/man3/xcb_xfixes_query_version_unchecked.3\', \'share/man/man3/xcb_xfixes_region_extents.3\', \'share/man/man3/xcb_xfixes_region_extents_checked.3\', \'share/man/man3/xcb_xfixes_select_cursor_input.3\', \'share/man/man3/xcb_xfixes_select_cursor_input_checked.3\', \'share/man/man3/xcb_xfixes_select_selection_input.3\', \'share/man/man3/xcb_xfixes_select_selection_input_checked.3\', \'share/man/man3/xcb_xfixes_selection_notify_event_t.3\', \'share/man/man3/xcb_xfixes_set_cursor_name.3\', \'share/man/man3/xcb_xfixes_set_cursor_name_checked.3\', \'share/man/man3/xcb_xfixes_set_gc_clip_region.3\', \'share/man/man3/xcb_xfixes_set_gc_clip_region_checked.3\', \'share/man/man3/xcb_xfixes_set_picture_clip_region.3\', \'share/man/man3/xcb_xfixes_set_picture_clip_region_checked.3\', \'share/man/man3/xcb_xfixes_set_region.3\', \'share/man/man3/xcb_xfixes_set_region_checked.3\', \'share/man/man3/xcb_xfixes_set_window_shape_region.3\', \'share/man/man3/xcb_xfixes_set_window_shape_region_checked.3\', \'share/man/man3/xcb_xfixes_show_cursor.3\', \'share/man/man3/xcb_xfixes_show_cursor_checked.3\', \'share/man/man3/xcb_xfixes_subtract_region.3\', \'share/man/man3/xcb_xfixes_subtract_region_checked.3\', \'share/man/man3/xcb_xfixes_translate_region.3\', \'share/man/man3/xcb_xfixes_translate_region_checked.3\', \'share/man/man3/xcb_xfixes_union_region.3\', \'share/man/man3/xcb_xfixes_union_region_checked.3\', \'share/man/man3/xcb_xinerama_get_screen_count.3\', \'share/man/man3/xcb_xinerama_get_screen_count_reply.3\', \'share/man/man3/xcb_xinerama_get_screen_count_unchecked.3\', \'share/man/man3/xcb_xinerama_get_screen_size.3\', \'share/man/man3/xcb_xinerama_get_screen_size_reply.3\', \'share/man/man3/xcb_xinerama_get_screen_size_unchecked.3\', \'share/man/man3/xcb_xinerama_get_state.3\', \'share/man/man3/xcb_xinerama_get_state_reply.3\', \'share/man/man3/xcb_xinerama_get_state_unchecked.3\', \'share/man/man3/xcb_xinerama_is_active.3\', \'share/man/man3/xcb_xinerama_is_active_reply.3\', \'share/man/man3/xcb_xinerama_is_active_unchecked.3\', \'share/man/man3/xcb_xinerama_query_screens.3\', \'share/man/man3/xcb_xinerama_query_screens_reply.3\', \'share/man/man3/xcb_xinerama_query_screens_screen_info.3\', \'share/man/man3/xcb_xinerama_query_screens_screen_info_iterator.3\', \'share/man/man3/xcb_xinerama_query_screens_screen_info_length.3\', \'share/man/man3/xcb_xinerama_query_screens_unchecked.3\', \'share/man/man3/xcb_xinerama_query_version.3\', \'share/man/man3/xcb_xinerama_query_version_reply.3\', \'share/man/man3/xcb_xinerama_query_version_unchecked.3\', \'share/man/man3/xcb_xkb_access_x_notify_event_t.3\', \'share/man/man3/xcb_xkb_action_message_event_t.3\', \'share/man/man3/xcb_xkb_bell.3\', \'share/man/man3/xcb_xkb_bell_checked.3\', \'share/man/man3/xcb_xkb_bell_notify_event_t.3\', \'share/man/man3/xcb_xkb_compat_map_notify_event_t.3\', \'share/man/man3/xcb_xkb_controls_notify_event_t.3\', \'share/man/man3/xcb_xkb_extension_device_notify_event_t.3\', \'share/man/man3/xcb_xkb_get_compat_map.3\', \'share/man/man3/xcb_xkb_get_compat_map_group_rtrn.3\', \'share/man/man3/xcb_xkb_get_compat_map_group_rtrn_iterator.3\', \'share/man/man3/xcb_xkb_get_compat_map_group_rtrn_length.3\', \'share/man/man3/xcb_xkb_get_compat_map_reply.3\', \'share/man/man3/xcb_xkb_get_compat_map_si_rtrn.3\', \'share/man/man3/xcb_xkb_get_compat_map_si_rtrn_iterator.3\', \'share/man/man3/xcb_xkb_get_compat_map_si_rtrn_length.3\', \'share/man/man3/xcb_xkb_get_compat_map_unchecked.3\', \'share/man/man3/xcb_xkb_get_controls.3\', \'share/man/man3/xcb_xkb_get_controls_reply.3\', \'share/man/man3/xcb_xkb_get_controls_unchecked.3\', \'share/man/man3/xcb_xkb_get_device_info.3\', \'share/man/man3/xcb_xkb_get_device_info_btn_actions.3\', \'share/man/man3/xcb_xkb_get_device_info_btn_actions_iterator.3\', \'share/man/man3/xcb_xkb_get_device_info_btn_actions_length.3\', \'share/man/man3/xcb_xkb_get_device_info_leds_iterator.3\', \'share/man/man3/xcb_xkb_get_device_info_leds_length.3\', \'share/man/man3/xcb_xkb_get_device_info_name.3\', \'share/man/man3/xcb_xkb_get_device_info_name_end.3\', \'share/man/man3/xcb_xkb_get_device_info_name_length.3\', \'share/man/man3/xcb_xkb_get_device_info_pad_1.3\', \'share/man/man3/xcb_xkb_get_device_info_reply.3\', \'share/man/man3/xcb_xkb_get_device_info_unchecked.3\', \'share/man/man3/xcb_xkb_get_indicator_map.3\', \'share/man/man3/xcb_xkb_get_indicator_map_maps.3\', \'share/man/man3/xcb_xkb_get_indicator_map_maps_iterator.3\', \'share/man/man3/xcb_xkb_get_indicator_map_maps_length.3\', \'share/man/man3/xcb_xkb_get_indicator_map_reply.3\', \'share/man/man3/xcb_xkb_get_indicator_map_unchecked.3\', \'share/man/man3/xcb_xkb_get_indicator_state.3\', \'share/man/man3/xcb_xkb_get_indicator_state_reply.3\', \'share/man/man3/xcb_xkb_get_indicator_state_unchecked.3\', \'share/man/man3/xcb_xkb_get_kbd_by_name.3\', \'share/man/man3/xcb_xkb_get_kbd_by_name_replies.3\', \'share/man/man3/xcb_xkb_get_kbd_by_name_reply.3\', \'share/man/man3/xcb_xkb_get_kbd_by_name_unchecked.3\', \'share/man/man3/xcb_xkb_get_map.3\', \'share/man/man3/xcb_xkb_get_map_map.3\', \'share/man/man3/xcb_xkb_get_map_reply.3\', \'share/man/man3/xcb_xkb_get_map_unchecked.3\', \'share/man/man3/xcb_xkb_get_named_indicator.3\', \'share/man/man3/xcb_xkb_get_named_indicator_reply.3\', \'share/man/man3/xcb_xkb_get_named_indicator_unchecked.3\', \'share/man/man3/xcb_xkb_get_names.3\', \'share/man/man3/xcb_xkb_get_names_reply.3\', \'share/man/man3/xcb_xkb_get_names_unchecked.3\', \'share/man/man3/xcb_xkb_get_names_value_list.3\', \'share/man/man3/xcb_xkb_get_state.3\', \'share/man/man3/xcb_xkb_get_state_reply.3\', \'share/man/man3/xcb_xkb_get_state_unchecked.3\', \'share/man/man3/xcb_xkb_indicator_map_notify_event_t.3\', \'share/man/man3/xcb_xkb_indicator_state_notify_event_t.3\', \'share/man/man3/xcb_xkb_latch_lock_state.3\', \'share/man/man3/xcb_xkb_latch_lock_state_checked.3\', \'share/man/man3/xcb_xkb_list_components.3\', \'share/man/man3/xcb_xkb_list_components_compat_maps_iterator.3\', \'share/man/man3/xcb_xkb_list_components_compat_maps_length.3\', \'share/man/man3/xcb_xkb_list_components_geometries_iterator.3\', \'share/man/man3/xcb_xkb_list_components_geometries_length.3\', \'share/man/man3/xcb_xkb_list_components_keycodes_iterator.3\', \'share/man/man3/xcb_xkb_list_components_keycodes_length.3\', \'share/man/man3/xcb_xkb_list_components_keymaps_iterator.3\', \'share/man/man3/xcb_xkb_list_components_keymaps_length.3\', \'share/man/man3/xcb_xkb_list_components_reply.3\', \'share/man/man3/xcb_xkb_list_components_symbols_iterator.3\', \'share/man/man3/xcb_xkb_list_components_symbols_length.3\', \'share/man/man3/xcb_xkb_list_components_types_iterator.3\', \'share/man/man3/xcb_xkb_list_components_types_length.3\', \'share/man/man3/xcb_xkb_list_components_unchecked.3\', \'share/man/man3/xcb_xkb_map_notify_event_t.3\', \'share/man/man3/xcb_xkb_names_notify_event_t.3\', \'share/man/man3/xcb_xkb_new_keyboard_notify_event_t.3\', \'share/man/man3/xcb_xkb_per_client_flags.3\', \'share/man/man3/xcb_xkb_per_client_flags_reply.3\', \'share/man/man3/xcb_xkb_per_client_flags_unchecked.3\', \'share/man/man3/xcb_xkb_select_events.3\', \'share/man/man3/xcb_xkb_select_events_checked.3\', \'share/man/man3/xcb_xkb_set_compat_map.3\', \'share/man/man3/xcb_xkb_set_compat_map_checked.3\', \'share/man/man3/xcb_xkb_set_controls.3\', \'share/man/man3/xcb_xkb_set_controls_checked.3\', \'share/man/man3/xcb_xkb_set_debugging_flags.3\', \'share/man/man3/xcb_xkb_set_debugging_flags_reply.3\', \'share/man/man3/xcb_xkb_set_debugging_flags_unchecked.3\', \'share/man/man3/xcb_xkb_set_device_info.3\', \'share/man/man3/xcb_xkb_set_device_info_checked.3\', \'share/man/man3/xcb_xkb_set_indicator_map.3\', \'share/man/man3/xcb_xkb_set_indicator_map_checked.3\', \'share/man/man3/xcb_xkb_set_map.3\', \'share/man/man3/xcb_xkb_set_map_checked.3\', \'share/man/man3/xcb_xkb_set_named_indicator.3\', \'share/man/man3/xcb_xkb_set_named_indicator_checked.3\', \'share/man/man3/xcb_xkb_set_names.3\', \'share/man/man3/xcb_xkb_set_names_checked.3\', \'share/man/man3/xcb_xkb_state_notify_event_t.3\', \'share/man/man3/xcb_xkb_use_extension.3\', \'share/man/man3/xcb_xkb_use_extension_reply.3\', \'share/man/man3/xcb_xkb_use_extension_unchecked.3\', \'share/man/man3/xcb_xv_get_port_attribute.3\', \'share/man/man3/xcb_xv_get_port_attribute_reply.3\', \'share/man/man3/xcb_xv_get_port_attribute_unchecked.3\', \'share/man/man3/xcb_xv_get_still.3\', \'share/man/man3/xcb_xv_get_still_checked.3\', \'share/man/man3/xcb_xv_get_video.3\', \'share/man/man3/xcb_xv_get_video_checked.3\', \'share/man/man3/xcb_xv_grab_port.3\', \'share/man/man3/xcb_xv_grab_port_reply.3\', \'share/man/man3/xcb_xv_grab_port_unchecked.3\', \'share/man/man3/xcb_xv_list_image_formats.3\', \'share/man/man3/xcb_xv_list_image_formats_format.3\', \'share/man/man3/xcb_xv_list_image_formats_format_iterator.3\', \'share/man/man3/xcb_xv_list_image_formats_format_length.3\', \'share/man/man3/xcb_xv_list_image_formats_reply.3\', \'share/man/man3/xcb_xv_list_image_formats_unchecked.3\', \'share/man/man3/xcb_xv_port_notify_event_t.3\', \'share/man/man3/xcb_xv_put_image.3\', \'share/man/man3/xcb_xv_put_image_checked.3\', \'share/man/man3/xcb_xv_put_still.3\', \'share/man/man3/xcb_xv_put_still_checked.3\', \'share/man/man3/xcb_xv_put_video.3\', \'share/man/man3/xcb_xv_put_video_checked.3\', \'share/man/man3/xcb_xv_query_adaptors.3\', \'share/man/man3/xcb_xv_query_adaptors_info_iterator.3\', \'share/man/man3/xcb_xv_query_adaptors_info_length.3\', \'share/man/man3/xcb_xv_query_adaptors_reply.3\', \'share/man/man3/xcb_xv_query_adaptors_unchecked.3\', \'share/man/man3/xcb_xv_query_best_size.3\', \'share/man/man3/xcb_xv_query_best_size_reply.3\', \'share/man/man3/xcb_xv_query_best_size_unchecked.3\', \'share/man/man3/xcb_xv_query_encodings.3\', \'share/man/man3/xcb_xv_query_encodings_info_iterator.3\', \'share/man/man3/xcb_xv_query_encodings_info_length.3\', \'share/man/man3/xcb_xv_query_encodings_reply.3\', \'share/man/man3/xcb_xv_query_encodings_unchecked.3\', \'share/man/man3/xcb_xv_query_extension.3\', \'share/man/man3/xcb_xv_query_extension_reply.3\', \'share/man/man3/xcb_xv_query_extension_unchecked.3\', \'share/man/man3/xcb_xv_query_image_attributes.3\', \'share/man/man3/xcb_xv_query_image_attributes_offsets.3\', \'share/man/man3/xcb_xv_query_image_attributes_offsets_end.3\', \'share/man/man3/xcb_xv_query_image_attributes_offsets_length.3\', \'share/man/man3/xcb_xv_query_image_attributes_pitches.3\', \'share/man/man3/xcb_xv_query_image_attributes_pitches_end.3\', \'share/man/man3/xcb_xv_query_image_attributes_pitches_length.3\', \'share/man/man3/xcb_xv_query_image_attributes_reply.3\', \'share/man/man3/xcb_xv_query_image_attributes_unchecked.3\', \'share/man/man3/xcb_xv_query_port_attributes.3\', \'share/man/man3/xcb_xv_query_port_attributes_attributes_iterator.3\', \'share/man/man3/xcb_xv_query_port_attributes_attributes_length.3\', \'share/man/man3/xcb_xv_query_port_attributes_reply.3\', \'share/man/man3/xcb_xv_query_port_attributes_unchecked.3\', \'share/man/man3/xcb_xv_select_port_notify.3\', \'share/man/man3/xcb_xv_select_port_notify_checked.3\', \'share/man/man3/xcb_xv_select_video_notify.3\', \'share/man/man3/xcb_xv_select_video_notify_checked.3\', \'share/man/man3/xcb_xv_set_port_attribute.3\', \'share/man/man3/xcb_xv_set_port_attribute_checked.3\', \'share/man/man3/xcb_xv_shm_put_image.3\', \'share/man/man3/xcb_xv_shm_put_image_checked.3\', \'share/man/man3/xcb_xv_stop_video.3\', \'share/man/man3/xcb_xv_stop_video_checked.3\', \'share/man/man3/xcb_xv_ungrab_port.3\', \'share/man/man3/xcb_xv_ungrab_port_checked.3\', \'share/man/man3/xcb_xv_video_notify_event_t.3\', \'share/man/man3/xcb_xvmc_create_context.3\', \'share/man/man3/xcb_xvmc_create_context_priv_data.3\', \'share/man/man3/xcb_xvmc_create_context_priv_data_end.3\', \'share/man/man3/xcb_xvmc_create_context_priv_data_length.3\', \'share/man/man3/xcb_xvmc_create_context_reply.3\', \'share/man/man3/xcb_xvmc_create_context_unchecked.3\', \'share/man/man3/xcb_xvmc_create_subpicture.3\', \'share/man/man3/xcb_xvmc_create_subpicture_priv_data.3\', \'share/man/man3/xcb_xvmc_create_subpicture_priv_data_end.3\', \'share/man/man3/xcb_xvmc_create_subpicture_priv_data_length.3\', \'share/man/man3/xcb_xvmc_create_subpicture_reply.3\', \'share/man/man3/xcb_xvmc_create_subpicture_unchecked.3\', \'share/man/man3/xcb_xvmc_create_surface.3\', \'share/man/man3/xcb_xvmc_create_surface_priv_data.3\', \'share/man/man3/xcb_xvmc_create_surface_priv_data_end.3\', \'share/man/man3/xcb_xvmc_create_surface_priv_data_length.3\', \'share/man/man3/xcb_xvmc_create_surface_reply.3\', \'share/man/man3/xcb_xvmc_create_surface_unchecked.3\', \'share/man/man3/xcb_xvmc_destroy_context.3\', \'share/man/man3/xcb_xvmc_destroy_context_checked.3\', \'share/man/man3/xcb_xvmc_destroy_subpicture.3\', \'share/man/man3/xcb_xvmc_destroy_subpicture_checked.3\', \'share/man/man3/xcb_xvmc_destroy_surface.3\', \'share/man/man3/xcb_xvmc_destroy_surface_checked.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types_reply.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types_types.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types_types_iterator.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types_types_length.3\', \'share/man/man3/xcb_xvmc_list_subpicture_types_unchecked.3\', \'share/man/man3/xcb_xvmc_list_surface_types.3\', \'share/man/man3/xcb_xvmc_list_surface_types_reply.3\', \'share/man/man3/xcb_xvmc_list_surface_types_surfaces.3\', \'share/man/man3/xcb_xvmc_list_surface_types_surfaces_iterator.3\', \'share/man/man3/xcb_xvmc_list_surface_types_surfaces_length.3\', \'share/man/man3/xcb_xvmc_list_surface_types_unchecked.3\', \'share/man/man3/xcb_xvmc_query_version.3\', \'share/man/man3/xcb_xvmc_query_version_reply.3\', \'share/man/man3/xcb_xvmc_query_version_unchecked.3\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libxcb-1.12-1\', type=1))", "defaults::libxml2-2.9.4-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'libiconv\', \'zlib 1.2.*\'), license=\'MIT\', license_family=\'MIT\', md5=\'750025fc9f5f623446bdafa7c726c61d\', name=\'libxml2\', platform=\'linux\', subdir=\'linux-64\', version=\'2.9.4\', fn=\'libxml2-2.9.4-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libxml2-2.9.4-0.tar.bz2\', files=(\'bin/xml2-config\', \'bin/xmlcatalog\', \'bin/xmllint\', \'include/libxml2/libxml/DOCBparser.h\', \'include/libxml2/libxml/HTMLparser.h\', \'include/libxml2/libxml/HTMLtree.h\', \'include/libxml2/libxml/SAX.h\', \'include/libxml2/libxml/SAX2.h\', \'include/libxml2/libxml/c14n.h\', \'include/libxml2/libxml/catalog.h\', \'include/libxml2/libxml/chvalid.h\', \'include/libxml2/libxml/debugXML.h\', \'include/libxml2/libxml/dict.h\', \'include/libxml2/libxml/encoding.h\', \'include/libxml2/libxml/entities.h\', \'include/libxml2/libxml/globals.h\', \'include/libxml2/libxml/hash.h\', \'include/libxml2/libxml/list.h\', \'include/libxml2/libxml/nanoftp.h\', \'include/libxml2/libxml/nanohttp.h\', \'include/libxml2/libxml/parser.h\', \'include/libxml2/libxml/parserInternals.h\', \'include/libxml2/libxml/pattern.h\', \'include/libxml2/libxml/relaxng.h\', \'include/libxml2/libxml/schemasInternals.h\', \'include/libxml2/libxml/schematron.h\', \'include/libxml2/libxml/threads.h\', \'include/libxml2/libxml/tree.h\', \'include/libxml2/libxml/uri.h\', \'include/libxml2/libxml/valid.h\', \'include/libxml2/libxml/xinclude.h\', \'include/libxml2/libxml/xlink.h\', \'include/libxml2/libxml/xmlIO.h\', \'include/libxml2/libxml/xmlautomata.h\', \'include/libxml2/libxml/xmlerror.h\', \'include/libxml2/libxml/xmlexports.h\', \'include/libxml2/libxml/xmlmemory.h\', \'include/libxml2/libxml/xmlmodule.h\', \'include/libxml2/libxml/xmlreader.h\', \'include/libxml2/libxml/xmlregexp.h\', \'include/libxml2/libxml/xmlsave.h\', \'include/libxml2/libxml/xmlschemas.h\', \'include/libxml2/libxml/xmlschemastypes.h\', \'include/libxml2/libxml/xmlstring.h\', \'include/libxml2/libxml/xmlunicode.h\', \'include/libxml2/libxml/xmlversion.h\', \'include/libxml2/libxml/xmlwriter.h\', \'include/libxml2/libxml/xpath.h\', \'include/libxml2/libxml/xpathInternals.h\', \'include/libxml2/libxml/xpointer.h\', \'lib/cmake/libxml2/libxml2-config.cmake\', \'lib/libxml2.a\', \'lib/libxml2.la\', \'lib/libxml2.so\', \'lib/libxml2.so.2\', \'lib/libxml2.so.2.9.4\', \'lib/pkgconfig/libxml-2.0.pc\', \'lib/xml2Conf.sh\', \'share/aclocal/libxml.m4\', \'share/man/man1/xml2-config.1\', \'share/man/man1/xmlcatalog.1\', \'share/man/man1/xmllint.1\', \'share/man/man3/libxml.3\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libxml2-2.9.4-0\', type=1))", "defaults::libxslt-1.1.29-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'libxml2 2.9.4\',), license=\'MIT\', md5=\'221767e891fd74efe885c60b9d66923d\', name=\'libxslt\', platform=\'linux\', subdir=\'linux-64\', version=\'1.1.29\', fn=\'libxslt-1.1.29-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/libxslt-1.1.29-0.tar.bz2\', files=(\'bin/xslt-config\', \'bin/xsltproc\', \'include/libexslt/exslt.h\', \'include/libexslt/exsltconfig.h\', \'include/libexslt/exsltexports.h\', \'include/libxslt/attributes.h\', \'include/libxslt/documents.h\', \'include/libxslt/extensions.h\', \'include/libxslt/extra.h\', \'include/libxslt/functions.h\', \'include/libxslt/imports.h\', \'include/libxslt/keys.h\', \'include/libxslt/namespaces.h\', \'include/libxslt/numbersInternals.h\', \'include/libxslt/pattern.h\', \'include/libxslt/preproc.h\', \'include/libxslt/security.h\', \'include/libxslt/templates.h\', \'include/libxslt/transform.h\', \'include/libxslt/variables.h\', \'include/libxslt/xslt.h\', \'include/libxslt/xsltInternals.h\', \'include/libxslt/xsltconfig.h\', \'include/libxslt/xsltexports.h\', \'include/libxslt/xsltlocale.h\', \'include/libxslt/xsltutils.h\', \'lib/libexslt.a\', \'lib/libexslt.la\', \'lib/libexslt.so\', \'lib/libexslt.so.0\', \'lib/libexslt.so.0.8.17\', \'lib/libxslt.a\', \'lib/libxslt.la\', \'lib/libxslt.so\', \'lib/libxslt.so.1\', \'lib/libxslt.so.1.1.29\', \'lib/pkgconfig/libexslt.pc\', \'lib/pkgconfig/libxslt.pc\', \'lib/xsltConf.sh\', \'share/aclocal/libxslt.m4\', \'share/man/man1/xsltproc.1\', \'share/man/man3/libexslt.3\', \'share/man/man3/libxslt.3\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/libxslt-1.1.29-0\', type=1))", "defaults::llvmlite-0.15.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'9b2a2878076de9148f7a50d887ef6594\', name=\'llvmlite\', platform=\'linux\', subdir=\'linux-64\', version=\'0.15.0\', fn=\'llvmlite-0.15.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/llvmlite-0.15.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/llvmlite-0.15.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/llvmlite-0.15.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/llvmlite-0.15.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/llvmlite-0.15.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/llvmlite/__init__.py\', \'lib/python3.6/site-packages/llvmlite/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/_version.py\', \'lib/python3.6/site-packages/llvmlite/binding/__init__.py\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/dylib.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/executionengine.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/ffi.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/initfini.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/linker.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/module.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/object_file.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/options.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/passmanagers.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/targets.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/__pycache__/value.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/binding/analysis.py\', \'lib/python3.6/site-packages/llvmlite/binding/common.py\', \'lib/python3.6/site-packages/llvmlite/binding/dylib.py\', \'lib/python3.6/site-packages/llvmlite/binding/executionengine.py\', \'lib/python3.6/site-packages/llvmlite/binding/ffi.py\', \'lib/python3.6/site-packages/llvmlite/binding/initfini.py\', \'lib/python3.6/site-packages/llvmlite/binding/libllvmlite.so\', \'lib/python3.6/site-packages/llvmlite/binding/linker.py\', \'lib/python3.6/site-packages/llvmlite/binding/module.py\', \'lib/python3.6/site-packages/llvmlite/binding/object_file.py\', \'lib/python3.6/site-packages/llvmlite/binding/options.py\', \'lib/python3.6/site-packages/llvmlite/binding/passmanagers.py\', \'lib/python3.6/site-packages/llvmlite/binding/targets.py\', \'lib/python3.6/site-packages/llvmlite/binding/transforms.py\', \'lib/python3.6/site-packages/llvmlite/binding/value.py\', \'lib/python3.6/site-packages/llvmlite/ir/__init__.py\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/builder.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/instructions.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/module.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/__pycache__/values.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/ir/_utils.py\', \'lib/python3.6/site-packages/llvmlite/ir/builder.py\', \'lib/python3.6/site-packages/llvmlite/ir/context.py\', \'lib/python3.6/site-packages/llvmlite/ir/instructions.py\', \'lib/python3.6/site-packages/llvmlite/ir/module.py\', \'lib/python3.6/site-packages/llvmlite/ir/transforms.py\', \'lib/python3.6/site-packages/llvmlite/ir/types.py\', \'lib/python3.6/site-packages/llvmlite/ir/values.py\', \'lib/python3.6/site-packages/llvmlite/llvmpy/__init__.py\', \'lib/python3.6/site-packages/llvmlite/llvmpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/llvmpy/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/llvmpy/__pycache__/passes.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/llvmpy/core.py\', \'lib/python3.6/site-packages/llvmlite/llvmpy/passes.py\', \'lib/python3.6/site-packages/llvmlite/six.py\', \'lib/python3.6/site-packages/llvmlite/tests/__init__.py\', \'lib/python3.6/site-packages/llvmlite/tests/__main__.py\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/customize.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/test_binding.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/test_ir.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/test_llvmpy.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/__pycache__/test_valuerepr.cpython-36.pyc\', \'lib/python3.6/site-packages/llvmlite/tests/customize.py\', \'lib/python3.6/site-packages/llvmlite/tests/test_binding.py\', \'lib/python3.6/site-packages/llvmlite/tests/test_ir.py\', \'lib/python3.6/site-packages/llvmlite/tests/test_llvmpy.py\', \'lib/python3.6/site-packages/llvmlite/tests/test_valuerepr.py\', \'lib/python3.6/site-packages/llvmlite/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/llvmlite-0.15.0-py36_0\', type=1))", "defaults::locket-0.2.0-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'4cd507e19e6f4734e5c2fa54fae635b2\', name=\'locket\', platform=\'linux\', subdir=\'linux-64\', version=\'0.2.0\', fn=\'locket-0.2.0-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/locket-0.2.0-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/locket-0.2.0-py3.6.egg-info\', \'lib/python3.6/site-packages/locket/__init__.py\', \'lib/python3.6/site-packages/locket/__pycache__/__init__.cpython-36.pyc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/locket-0.2.0-py36_1\', type=1))", "defaults::lxml-3.7.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'libxml2 2.9*\', \'libxslt 1.1.29\', \'python 3.6*\'), license=\'BSD\', md5=\'db34457c29b3d0920226751be427885d\', name=\'lxml\', platform=\'linux\', requires=(\'libxml2 2.9.4\', \'libxslt 1.1.29\', \'python 3.6\'), subdir=\'linux-64\', version=\'3.7.2\', fn=\'lxml-3.7.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/lxml-3.7.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/lxml-3.7.2-py3.6.egg-info\', \'lib/python3.6/site-packages/lxml/ElementInclude.py\', \'lib/python3.6/site-packages/lxml/__init__.py\', \'lib/python3.6/site-packages/lxml/__pycache__/ElementInclude.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/_elementpath.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/builder.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/cssselect.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/doctestcompare.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/pyclasslookup.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/sax.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/__pycache__/usedoctest.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/_elementpath.py\', \'lib/python3.6/site-packages/lxml/builder.py\', \'lib/python3.6/site-packages/lxml/cssselect.py\', \'lib/python3.6/site-packages/lxml/doctestcompare.py\', \'lib/python3.6/site-packages/lxml/etree.so\', \'lib/python3.6/site-packages/lxml/html/ElementSoup.py\', \'lib/python3.6/site-packages/lxml/html/__init__.py\', \'lib/python3.6/site-packages/lxml/html/__pycache__/ElementSoup.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/_diffcommand.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/_html5builder.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/_setmixin.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/builder.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/clean.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/defs.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/diff.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/formfill.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/html5parser.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/soupparser.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/__pycache__/usedoctest.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/html/_diffcommand.py\', \'lib/python3.6/site-packages/lxml/html/_html5builder.py\', \'lib/python3.6/site-packages/lxml/html/_setmixin.py\', \'lib/python3.6/site-packages/lxml/html/builder.py\', \'lib/python3.6/site-packages/lxml/html/clean.py\', \'lib/python3.6/site-packages/lxml/html/defs.py\', \'lib/python3.6/site-packages/lxml/html/diff.py\', \'lib/python3.6/site-packages/lxml/html/formfill.py\', \'lib/python3.6/site-packages/lxml/html/html5parser.py\', \'lib/python3.6/site-packages/lxml/html/soupparser.py\', \'lib/python3.6/site-packages/lxml/html/usedoctest.py\', \'lib/python3.6/site-packages/lxml/includes/__init__.py\', \'lib/python3.6/site-packages/lxml/includes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/includes/c14n.pxd\', \'lib/python3.6/site-packages/lxml/includes/config.pxd\', \'lib/python3.6/site-packages/lxml/includes/dtdvalid.pxd\', \'lib/python3.6/site-packages/lxml/includes/etree_defs.h\', \'lib/python3.6/site-packages/lxml/includes/etreepublic.pxd\', \'lib/python3.6/site-packages/lxml/includes/htmlparser.pxd\', \'lib/python3.6/site-packages/lxml/includes/lxml-version.h\', \'lib/python3.6/site-packages/lxml/includes/relaxng.pxd\', \'lib/python3.6/site-packages/lxml/includes/schematron.pxd\', \'lib/python3.6/site-packages/lxml/includes/tree.pxd\', \'lib/python3.6/site-packages/lxml/includes/uri.pxd\', \'lib/python3.6/site-packages/lxml/includes/xinclude.pxd\', \'lib/python3.6/site-packages/lxml/includes/xmlerror.pxd\', \'lib/python3.6/site-packages/lxml/includes/xmlparser.pxd\', \'lib/python3.6/site-packages/lxml/includes/xmlschema.pxd\', \'lib/python3.6/site-packages/lxml/includes/xpath.pxd\', \'lib/python3.6/site-packages/lxml/includes/xslt.pxd\', \'lib/python3.6/site-packages/lxml/isoschematron/__init__.py\', \'lib/python3.6/site-packages/lxml/isoschematron/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/rng/iso-schematron.rng\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/RNG2Schtrn.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/XSD2Schtrn.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_abstract_expand.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_dsdl_include.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_message.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_schematron_skeleton_for_xslt1.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/iso_svrl_for_xslt1.xsl\', \'lib/python3.6/site-packages/lxml/isoschematron/resources/xsl/iso-schematron-xslt1/readme.txt\', \'lib/python3.6/site-packages/lxml/lxml.etree.h\', \'lib/python3.6/site-packages/lxml/lxml.etree_api.h\', \'lib/python3.6/site-packages/lxml/objectify.so\', \'lib/python3.6/site-packages/lxml/pyclasslookup.py\', \'lib/python3.6/site-packages/lxml/sax.py\', \'lib/python3.6/site-packages/lxml/usedoctest.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/lxml-3.7.2-py36_0\', type=1))", "defaults::markupsafe-0.23-py36_2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_2\', build_number=2, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'d2a495c7328763bfbf49a5e0e3467806\', name=\'markupsafe\', platform=\'linux\', subdir=\'linux-64\', version=\'0.23\', fn=\'markupsafe-0.23-py36_2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/markupsafe-0.23-py36_2.tar.bz2\', files=(\'lib/python3.6/site-packages/MarkupSafe-0.23-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/MarkupSafe-0.23-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/MarkupSafe-0.23-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/MarkupSafe-0.23-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/MarkupSafe-0.23-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/markupsafe/__init__.py\', \'lib/python3.6/site-packages/markupsafe/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/markupsafe/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/markupsafe/__pycache__/_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/markupsafe/__pycache__/_native.cpython-36.pyc\', \'lib/python3.6/site-packages/markupsafe/__pycache__/tests.cpython-36.pyc\', \'lib/python3.6/site-packages/markupsafe/_compat.py\', \'lib/python3.6/site-packages/markupsafe/_constants.py\', \'lib/python3.6/site-packages/markupsafe/_native.py\', \'lib/python3.6/site-packages/markupsafe/_speedups.c\', \'lib/python3.6/site-packages/markupsafe/_speedups.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/markupsafe/tests.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/markupsafe-0.23-py36_2\', type=1))", "defaults::matplotlib-2.0.0-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'cycler >=0.10.0\', \'freetype 2.5.*\', \'libpng >=1.6.27,<1.7\', \'numpy 1.11*\', \'pyparsing\', \'pyqt 5.*\', \'python 3.6*\', \'python-dateutil\', \'pytz\'), license=\'PSF-based\', license_family=\'PSF\', md5=\'5699d5d312d0f825b0e82430b122f103\', name=\'matplotlib\', platform=\'linux\', subdir=\'linux-64\', version=\'2.0.0\', fn=\'matplotlib-2.0.0-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/matplotlib-2.0.0-np111py36_0.tar.bz2\', files=(\'lib/libtcl.so\', \'lib/libtk.so\', \'lib/python3.6/site-packages/__pycache__/pylab.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/namespace_packages.txt\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/matplotlib-2.0.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/matplotlib/__init__.py\', \'lib/python3.6/site-packages/matplotlib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_cm.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_cm_listed.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_color_data.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_mathtext_data.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_pylab_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/afm.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/animation.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/artist.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/axis.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/backend_bases.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/backend_managers.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/backend_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/bezier.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/blocking_input.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/cbook.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/cm.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/colorbar.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/colors.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/container.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/contour.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/dates.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/docstring.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/dviread.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/figure.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/finance.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/font_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/fontconfig_pattern.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/gridspec.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/hatch.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/legend.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/legend_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/lines.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/markers.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/mathtext.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/mlab.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/offsetbox.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/patches.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/patheffects.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/pylab.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/pyplot.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/quiver.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/rcsetup.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/sankey.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/scale.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/spines.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/stackplot.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/streamplot.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/texmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/textpath.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/ticker.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/tight_bbox.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/tight_layout.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/type1font.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/__pycache__/widgets.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/_cm.py\', \'lib/python3.6/site-packages/matplotlib/_cm_listed.py\', \'lib/python3.6/site-packages/matplotlib/_cntr.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_color_data.py\', \'lib/python3.6/site-packages/matplotlib/_contour.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_delaunay.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_image.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_mathtext_data.py\', \'lib/python3.6/site-packages/matplotlib/_path.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_png.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_pylab_helpers.py\', \'lib/python3.6/site-packages/matplotlib/_qhull.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_tri.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/_version.py\', \'lib/python3.6/site-packages/matplotlib/afm.py\', \'lib/python3.6/site-packages/matplotlib/animation.py\', \'lib/python3.6/site-packages/matplotlib/artist.py\', \'lib/python3.6/site-packages/matplotlib/axes/__init__.py\', \'lib/python3.6/site-packages/matplotlib/axes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/axes/__pycache__/_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/axes/__pycache__/_base.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/axes/__pycache__/_subplots.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/axes/_axes.py\', \'lib/python3.6/site-packages/matplotlib/axes/_base.py\', \'lib/python3.6/site-packages/matplotlib/axes/_subplots.py\', \'lib/python3.6/site-packages/matplotlib/axis.py\', \'lib/python3.6/site-packages/matplotlib/backend_bases.py\', \'lib/python3.6/site-packages/matplotlib/backend_managers.py\', \'lib/python3.6/site-packages/matplotlib/backend_tools.py\', \'lib/python3.6/site-packages/matplotlib/backends/__init__.py\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_agg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_cairo.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gdk.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtk.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtk3.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtk3agg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtk3cairo.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtkagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_gtkcairo.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_macosx.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_mixed.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_nbagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_pdf.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_pgf.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_ps.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_qt4.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_qt4agg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_qt5.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_qt5agg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_svg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_template.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_tkagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_webagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_webagg_core.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_wx.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/backend_wxagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/qt4_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/qt_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/tkagg.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/windowing.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/__pycache__/wx_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/_backend_agg.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/backends/_tkagg.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/backends/backend_agg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_cairo.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gdk.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtk.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtk3.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtk3agg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtk3cairo.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtkagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_gtkcairo.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_macosx.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_mixed.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_nbagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_pdf.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_pgf.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_ps.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_qt4.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_qt4agg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_qt5.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_qt5agg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_svg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_template.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_tkagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_webagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_webagg_core.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_wx.py\', \'lib/python3.6/site-packages/matplotlib/backends/backend_wxagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt4_compat.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt_compat.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/__init__.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/__pycache__/figureoptions.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/__pycache__/formlayout.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/__pycache__/formsubplottool.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/figureoptions.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/formlayout.py\', \'lib/python3.6/site-packages/matplotlib/backends/qt_editor/formsubplottool.py\', \'lib/python3.6/site-packages/matplotlib/backends/tkagg.py\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/all_figures.html\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/css/boilerplate.css\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/css/fbm.css\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/css/page.css\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/ipython_inline_figure.html\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_diagonals-thick_18_b81900_40x40.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_diagonals-thick_20_666666_40x40.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_flat_10_000000_40x100.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_100_f6f6f6_1x400.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_100_fdf5ce_1x400.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_glass_65_ffffff_1x400.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_gloss-wave_35_f6a828_500x100.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_100_eeeeee_1x100.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-bg_highlight-soft_75_ffe45c_1x100.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_222222_256x240.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_228ef1_256x240.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ef8c08_256x240.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ffd27a_256x240.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/images/ui-icons_ffffff_256x240.png\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/css/themes/base/jquery-ui.min.css\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/js/jquery-1.11.3.min.js\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/jquery/js/jquery-ui.min.js\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/mpl.js\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/mpl_tornado.js\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/nbagg_mpl.js\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/nbagg_uat.ipynb\', \'lib/python3.6/site-packages/matplotlib/backends/web_backend/single_figure.html\', \'lib/python3.6/site-packages/matplotlib/backends/windowing.py\', \'lib/python3.6/site-packages/matplotlib/backends/wx_compat.py\', \'lib/python3.6/site-packages/matplotlib/bezier.py\', \'lib/python3.6/site-packages/matplotlib/blocking_input.py\', \'lib/python3.6/site-packages/matplotlib/cbook.py\', \'lib/python3.6/site-packages/matplotlib/cm.py\', \'lib/python3.6/site-packages/matplotlib/collections.py\', \'lib/python3.6/site-packages/matplotlib/colorbar.py\', \'lib/python3.6/site-packages/matplotlib/colors.py\', \'lib/python3.6/site-packages/matplotlib/compat/__init__.py\', \'lib/python3.6/site-packages/matplotlib/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/compat/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/compat/subprocess.py\', \'lib/python3.6/site-packages/matplotlib/container.py\', \'lib/python3.6/site-packages/matplotlib/contour.py\', \'lib/python3.6/site-packages/matplotlib/dates.py\', \'lib/python3.6/site-packages/matplotlib/delaunay/__init__.py\', \'lib/python3.6/site-packages/matplotlib/delaunay/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/delaunay/__pycache__/interpolate.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/delaunay/__pycache__/testfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/delaunay/__pycache__/triangulate.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/delaunay/interpolate.py\', \'lib/python3.6/site-packages/matplotlib/delaunay/testfuncs.py\', \'lib/python3.6/site-packages/matplotlib/delaunay/triangulate.py\', \'lib/python3.6/site-packages/matplotlib/docstring.py\', \'lib/python3.6/site-packages/matplotlib/dviread.py\', \'lib/python3.6/site-packages/matplotlib/figure.py\', \'lib/python3.6/site-packages/matplotlib/finance.py\', \'lib/python3.6/site-packages/matplotlib/font_manager.py\', \'lib/python3.6/site-packages/matplotlib/fontconfig_pattern.py\', \'lib/python3.6/site-packages/matplotlib/ft2font.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/gridspec.py\', \'lib/python3.6/site-packages/matplotlib/hatch.py\', \'lib/python3.6/site-packages/matplotlib/image.py\', \'lib/python3.6/site-packages/matplotlib/legend.py\', \'lib/python3.6/site-packages/matplotlib/legend_handler.py\', \'lib/python3.6/site-packages/matplotlib/lines.py\', \'lib/python3.6/site-packages/matplotlib/markers.py\', \'lib/python3.6/site-packages/matplotlib/mathtext.py\', \'lib/python3.6/site-packages/matplotlib/mlab.py\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/cmex10.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/cmmi10.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/cmr10.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/cmsy10.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/cmtt10.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pagd8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pagdo8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pagk8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pagko8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pbkd8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pbkl8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pbkli8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pcrb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pcrr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pcrro8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvb8an.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvbo8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvbo8an.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvl8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvlo8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvr8an.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvro8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/phvro8an.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pncb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pncbi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pncr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pncri8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pplb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pplbi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pplr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pplri8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/psyr.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/ptmb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/ptmr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/ptmri8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/putb8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/putbi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/putr8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/putri8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/afm/pzdr.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmb10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmex10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmr10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmss10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/back_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/filesave_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/forward_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/hand.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/hand.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/hand.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/hand.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/hand_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/home_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/matplotlib.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/matplotlib.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/matplotlib.ppm\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/matplotlib.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/matplotlib_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/move_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/qt4_editor_options.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/qt4_editor_options.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/qt4_editor_options.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/qt4_editor_options_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/subplots_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect.pdf\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect.svg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect_large.gif\', \'lib/python3.6/site-packages/matplotlib/mpl-data/images/zoom_to_rect_large.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/matplotlibrc\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/AAPL.dat.gz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/INTC.dat.gz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/None_vs_nearest-pdf.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/README.txt\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/aapl.csv\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/aapl.npy.gz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/ada.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/ct.raw.gz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/demodata.csv\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/eeg.dat\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/goog.npy\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/grace_hopper.jpg\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/grace_hopper.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/logo2.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/membrane.dat\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/msft.csv\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/necked_tensile_specimen.png\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/percent_bachelors_degrees_women_usa.csv\', \'lib/python3.6/site-packages/matplotlib/mpl-data/sample_data/s1045.ima.gz\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/bmh.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/classic.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/dark_background.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/ggplot.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/grayscale.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-ticks.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-white.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn-whitegrid.mplstyle\', \'lib/python3.6/site-packages/matplotlib/mpl-data/stylelib/seaborn.mplstyle\', \'lib/python3.6/site-packages/matplotlib/offsetbox.py\', \'lib/python3.6/site-packages/matplotlib/patches.py\', \'lib/python3.6/site-packages/matplotlib/path.py\', \'lib/python3.6/site-packages/matplotlib/patheffects.py\', \'lib/python3.6/site-packages/matplotlib/projections/__init__.py\', \'lib/python3.6/site-packages/matplotlib/projections/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/projections/__pycache__/geo.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/projections/__pycache__/polar.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/projections/geo.py\', \'lib/python3.6/site-packages/matplotlib/projections/polar.py\', \'lib/python3.6/site-packages/matplotlib/pylab.py\', \'lib/python3.6/site-packages/matplotlib/pyplot.py\', \'lib/python3.6/site-packages/matplotlib/quiver.py\', \'lib/python3.6/site-packages/matplotlib/rcsetup.py\', \'lib/python3.6/site-packages/matplotlib/sankey.py\', \'lib/python3.6/site-packages/matplotlib/scale.py\', \'lib/python3.6/site-packages/matplotlib/sphinxext/__init__.py\', \'lib/python3.6/site-packages/matplotlib/sphinxext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/sphinxext/__pycache__/mathmpl.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/sphinxext/__pycache__/only_directives.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/sphinxext/__pycache__/plot_directive.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/sphinxext/mathmpl.py\', \'lib/python3.6/site-packages/matplotlib/sphinxext/only_directives.py\', \'lib/python3.6/site-packages/matplotlib/sphinxext/plot_directive.py\', \'lib/python3.6/site-packages/matplotlib/spines.py\', \'lib/python3.6/site-packages/matplotlib/stackplot.py\', \'lib/python3.6/site-packages/matplotlib/streamplot.py\', \'lib/python3.6/site-packages/matplotlib/style/__init__.py\', \'lib/python3.6/site-packages/matplotlib/style/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/style/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/style/core.py\', \'lib/python3.6/site-packages/matplotlib/table.py\', \'lib/python3.6/site-packages/matplotlib/testing/__init__.py\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/compare.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/disable_internet.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/__pycache__/noseclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/compare.py\', \'lib/python3.6/site-packages/matplotlib/testing/decorators.py\', \'lib/python3.6/site-packages/matplotlib/testing/disable_internet.py\', \'lib/python3.6/site-packages/matplotlib/testing/exceptions.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/Duration.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/Epoch.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/EpochConverter.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/StrConverter.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/UnitDbl.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/UnitDblConverter.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/UnitDblFormatter.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__init__.py\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/Duration.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/Epoch.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/EpochConverter.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/StrConverter.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/UnitDbl.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/UnitDblConverter.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/UnitDblFormatter.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/jpl_units/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/testing/noseclasses.py\', \'lib/python3.6/site-packages/matplotlib/texmanager.py\', \'lib/python3.6/site-packages/matplotlib/text.py\', \'lib/python3.6/site-packages/matplotlib/textpath.py\', \'lib/python3.6/site-packages/matplotlib/ticker.py\', \'lib/python3.6/site-packages/matplotlib/tight_bbox.py\', \'lib/python3.6/site-packages/matplotlib/tight_layout.py\', \'lib/python3.6/site-packages/matplotlib/transforms.py\', \'lib/python3.6/site-packages/matplotlib/tri/__init__.py\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/triangulation.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/tricontour.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/trifinder.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/triinterpolate.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/tripcolor.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/triplot.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/trirefine.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/__pycache__/tritools.cpython-36.pyc\', \'lib/python3.6/site-packages/matplotlib/tri/triangulation.py\', \'lib/python3.6/site-packages/matplotlib/tri/tricontour.py\', \'lib/python3.6/site-packages/matplotlib/tri/trifinder.py\', \'lib/python3.6/site-packages/matplotlib/tri/triinterpolate.py\', \'lib/python3.6/site-packages/matplotlib/tri/tripcolor.py\', \'lib/python3.6/site-packages/matplotlib/tri/triplot.py\', \'lib/python3.6/site-packages/matplotlib/tri/trirefine.py\', \'lib/python3.6/site-packages/matplotlib/tri/tritools.py\', \'lib/python3.6/site-packages/matplotlib/ttconv.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/matplotlib/type1font.py\', \'lib/python3.6/site-packages/matplotlib/units.py\', \'lib/python3.6/site-packages/matplotlib/widgets.py\', \'lib/python3.6/site-packages/mpl_toolkits/__init__.py\', \'lib/python3.6/site-packages/mpl_toolkits/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/__pycache__/exceltools.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/__pycache__/gtktools.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__init__.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/anchored_artists.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/angle_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axes_divider.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axes_grid.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axes_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axes_size.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axis_artist.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axisline_style.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/axislines.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/clip_path.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/colorbar.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/floating_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/grid_finder.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/grid_helper_curvelinear.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/inset_locator.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/__pycache__/parasite_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/anchored_artists.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/angle_helper.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axes_divider.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axes_grid.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axes_rgb.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axes_size.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axis_artist.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axisline_style.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/axislines.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/clip_path.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/colorbar.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/floating_axes.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/grid_finder.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/grid_helper_curvelinear.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/inset_locator.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid/parasite_axes.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__init__.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/anchored_artists.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/axes_divider.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/axes_grid.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/axes_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/axes_size.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/colorbar.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/inset_locator.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/mpl_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/__pycache__/parasite_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/anchored_artists.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/axes_divider.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/axes_grid.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/axes_rgb.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/axes_size.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/colorbar.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/inset_locator.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/mpl_axes.py\', \'lib/python3.6/site-packages/mpl_toolkits/axes_grid1/parasite_axes.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__init__.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/angle_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/axis_artist.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/axisline_style.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/axislines.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/clip_path.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/floating_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/grid_finder.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/__pycache__/grid_helper_curvelinear.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/angle_helper.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/axis_artist.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/axisline_style.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/axislines.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/clip_path.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/floating_axes.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/grid_finder.py\', \'lib/python3.6/site-packages/mpl_toolkits/axisartist/grid_helper_curvelinear.py\', \'lib/python3.6/site-packages/mpl_toolkits/exceltools.py\', \'lib/python3.6/site-packages/mpl_toolkits/gtktools.py\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__init__.py\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__pycache__/art3d.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__pycache__/axes3d.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__pycache__/axis3d.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/__pycache__/proj3d.cpython-36.pyc\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/art3d.py\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/axes3d.py\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/axis3d.py\', \'lib/python3.6/site-packages/mpl_toolkits/mplot3d/proj3d.py\', \'lib/python3.6/site-packages/pylab.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/matplotlib-2.0.0-np111py36_0\', type=1))", "defaults::mistune-0.7.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'3901b6a1cd66ae0b330c426d658785ec\', name=\'mistune\', platform=\'linux\', subdir=\'linux-64\', version=\'0.7.3\', fn=\'mistune-0.7.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/mistune-0.7.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/mistune-0.7.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/mistune-0.7.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/mistune-0.7.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/mistune-0.7.3-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/mistune-0.7.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/mistune.cpython-36m-x86_64-linux-gnu.so\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/mistune-0.7.3-py36_0\', type=1))", "defaults::mkl-2017.0.1-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'proprietary - Intel\', license_family=\'Proprietary\', md5=\'c53e854d9ab86c912f56bba5284aa5a1\', name=\'mkl\', platform=\'linux\', subdir=\'linux-64\', version=\'2017.0.1\', fn=\'mkl-2017.0.1-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/mkl-2017.0.1-0.tar.bz2\', files=(\'lib/libiomp5.so\', \'lib/libmkl_avx.so\', \'lib/libmkl_avx2.so\', \'lib/libmkl_avx512.so\', \'lib/libmkl_avx512_mic.so\', \'lib/libmkl_core.so\', \'lib/libmkl_def.so\', \'lib/libmkl_intel_ilp64.so\', \'lib/libmkl_intel_lp64.so\', \'lib/libmkl_intel_thread.so\', \'lib/libmkl_mc.so\', \'lib/libmkl_mc3.so\', \'lib/libmkl_rt.so\', \'lib/libmkl_sequential.so\', \'lib/libmkl_vml_avx.so\', \'lib/libmkl_vml_avx2.so\', \'lib/libmkl_vml_avx512.so\', \'lib/libmkl_vml_avx512_mic.so\', \'lib/libmkl_vml_cmpt.so\', \'lib/libmkl_vml_def.so\', \'lib/libmkl_vml_mc.so\', \'lib/libmkl_vml_mc2.so\', \'lib/libmkl_vml_mc3.so\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/mkl-2017.0.1-0\', type=1))", "defaults::mkl-service-1.1.2-py36_3": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_3\', build_number=3, depends=(\'mkl >=11.0\', \'python 3.6*\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'27a1bab34a1d5214290d8ced7133dedc\', name=\'mkl-service\', platform=\'linux\', subdir=\'linux-64\', version=\'1.1.2\', fn=\'mkl-service-1.1.2-py36_3.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/mkl-service-1.1.2-py36_3.tar.bz2\', files=(\'lib/python3.6/site-packages/mkl/__init__.py\', \'lib/python3.6/site-packages/mkl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mkl/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/mkl/service.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/mkl/test.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/mkl-service-1.1.2-py36_3\', type=1))", "defaults::mpmath-0.19-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'5d4f7bce570d6caea64a4053ebd2d22c\', name=\'mpmath\', platform=\'linux\', subdir=\'linux-64\', version=\'0.19\', fn=\'mpmath-0.19-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/mpmath-0.19-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/mpmath-0.19-py3.6.egg-info\', \'lib/python3.6/site-packages/mpmath/__init__.py\', \'lib/python3.6/site-packages/mpmath/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/ctx_base.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/ctx_fp.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/ctx_iv.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/ctx_mp.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/ctx_mp_python.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/function_docs.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/identification.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/math2.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/rational.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/usertools.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/__pycache__/visualization.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__init__.py\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/approximation.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/calculus.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/differentiation.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/extrapolation.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/odes.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/optimization.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/polynomials.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/__pycache__/quadrature.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/calculus/approximation.py\', \'lib/python3.6/site-packages/mpmath/calculus/calculus.py\', \'lib/python3.6/site-packages/mpmath/calculus/differentiation.py\', \'lib/python3.6/site-packages/mpmath/calculus/extrapolation.py\', \'lib/python3.6/site-packages/mpmath/calculus/odes.py\', \'lib/python3.6/site-packages/mpmath/calculus/optimization.py\', \'lib/python3.6/site-packages/mpmath/calculus/polynomials.py\', \'lib/python3.6/site-packages/mpmath/calculus/quadrature.py\', \'lib/python3.6/site-packages/mpmath/conftest.py\', \'lib/python3.6/site-packages/mpmath/ctx_base.py\', \'lib/python3.6/site-packages/mpmath/ctx_fp.py\', \'lib/python3.6/site-packages/mpmath/ctx_iv.py\', \'lib/python3.6/site-packages/mpmath/ctx_mp.py\', \'lib/python3.6/site-packages/mpmath/ctx_mp_python.py\', \'lib/python3.6/site-packages/mpmath/function_docs.py\', \'lib/python3.6/site-packages/mpmath/functions/__init__.py\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/elliptic.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/expintegrals.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/factorials.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/hypergeometric.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/orthogonal.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/qfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/rszeta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/theta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/zeta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/__pycache__/zetazeros.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/functions/bessel.py\', \'lib/python3.6/site-packages/mpmath/functions/elliptic.py\', \'lib/python3.6/site-packages/mpmath/functions/expintegrals.py\', \'lib/python3.6/site-packages/mpmath/functions/factorials.py\', \'lib/python3.6/site-packages/mpmath/functions/functions.py\', \'lib/python3.6/site-packages/mpmath/functions/hypergeometric.py\', \'lib/python3.6/site-packages/mpmath/functions/orthogonal.py\', \'lib/python3.6/site-packages/mpmath/functions/qfunctions.py\', \'lib/python3.6/site-packages/mpmath/functions/rszeta.py\', \'lib/python3.6/site-packages/mpmath/functions/theta.py\', \'lib/python3.6/site-packages/mpmath/functions/zeta.py\', \'lib/python3.6/site-packages/mpmath/functions/zetazeros.py\', \'lib/python3.6/site-packages/mpmath/identification.py\', \'lib/python3.6/site-packages/mpmath/libmp/__init__.py\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/backend.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/gammazeta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libelefun.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libhyper.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libintmath.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libmpc.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libmpf.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/libmpi.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/libmp/backend.py\', \'lib/python3.6/site-packages/mpmath/libmp/gammazeta.py\', \'lib/python3.6/site-packages/mpmath/libmp/libelefun.py\', \'lib/python3.6/site-packages/mpmath/libmp/libhyper.py\', \'lib/python3.6/site-packages/mpmath/libmp/libintmath.py\', \'lib/python3.6/site-packages/mpmath/libmp/libmpc.py\', \'lib/python3.6/site-packages/mpmath/libmp/libmpf.py\', \'lib/python3.6/site-packages/mpmath/libmp/libmpi.py\', \'lib/python3.6/site-packages/mpmath/libmp/six.py\', \'lib/python3.6/site-packages/mpmath/math2.py\', \'lib/python3.6/site-packages/mpmath/matrices/__init__.py\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/calculus.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/eigen.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/eigen_symmetric.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/__pycache__/matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/matrices/calculus.py\', \'lib/python3.6/site-packages/mpmath/matrices/eigen.py\', \'lib/python3.6/site-packages/mpmath/matrices/eigen_symmetric.py\', \'lib/python3.6/site-packages/mpmath/matrices/linalg.py\', \'lib/python3.6/site-packages/mpmath/matrices/matrices.py\', \'lib/python3.6/site-packages/mpmath/rational.py\', \'lib/python3.6/site-packages/mpmath/tests/__init__.py\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/extratest_bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/extratest_gamma.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/extratest_zeta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_basic_ops.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_bitwise.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_calculus.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_convert.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_division.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_eigen.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_eigen_symmetric.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_elliptic.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_fp.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_functions2.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_gammazeta.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_hp.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_identify.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_interval.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_levin.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_mpmath.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_ode.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_power.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_quad.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_rootfinding.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_special.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_str.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_summation.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_trig.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/test_visualization.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/__pycache__/torture.cpython-36.pyc\', \'lib/python3.6/site-packages/mpmath/tests/extratest_bessel.py\', \'lib/python3.6/site-packages/mpmath/tests/extratest_gamma.py\', \'lib/python3.6/site-packages/mpmath/tests/extratest_zeta.py\', \'lib/python3.6/site-packages/mpmath/tests/runtests.py\', \'lib/python3.6/site-packages/mpmath/tests/test_basic_ops.py\', \'lib/python3.6/site-packages/mpmath/tests/test_bitwise.py\', \'lib/python3.6/site-packages/mpmath/tests/test_calculus.py\', \'lib/python3.6/site-packages/mpmath/tests/test_compatibility.py\', \'lib/python3.6/site-packages/mpmath/tests/test_convert.py\', \'lib/python3.6/site-packages/mpmath/tests/test_diff.py\', \'lib/python3.6/site-packages/mpmath/tests/test_division.py\', \'lib/python3.6/site-packages/mpmath/tests/test_eigen.py\', \'lib/python3.6/site-packages/mpmath/tests/test_eigen_symmetric.py\', \'lib/python3.6/site-packages/mpmath/tests/test_elliptic.py\', \'lib/python3.6/site-packages/mpmath/tests/test_fp.py\', \'lib/python3.6/site-packages/mpmath/tests/test_functions.py\', \'lib/python3.6/site-packages/mpmath/tests/test_functions2.py\', \'lib/python3.6/site-packages/mpmath/tests/test_gammazeta.py\', \'lib/python3.6/site-packages/mpmath/tests/test_hp.py\', \'lib/python3.6/site-packages/mpmath/tests/test_identify.py\', \'lib/python3.6/site-packages/mpmath/tests/test_interval.py\', \'lib/python3.6/site-packages/mpmath/tests/test_levin.py\', \'lib/python3.6/site-packages/mpmath/tests/test_linalg.py\', \'lib/python3.6/site-packages/mpmath/tests/test_matrices.py\', \'lib/python3.6/site-packages/mpmath/tests/test_mpmath.py\', \'lib/python3.6/site-packages/mpmath/tests/test_ode.py\', \'lib/python3.6/site-packages/mpmath/tests/test_pickle.py\', \'lib/python3.6/site-packages/mpmath/tests/test_power.py\', \'lib/python3.6/site-packages/mpmath/tests/test_quad.py\', \'lib/python3.6/site-packages/mpmath/tests/test_rootfinding.py\', \'lib/python3.6/site-packages/mpmath/tests/test_special.py\', \'lib/python3.6/site-packages/mpmath/tests/test_str.py\', \'lib/python3.6/site-packages/mpmath/tests/test_summation.py\', \'lib/python3.6/site-packages/mpmath/tests/test_trig.py\', \'lib/python3.6/site-packages/mpmath/tests/test_visualization.py\', \'lib/python3.6/site-packages/mpmath/tests/torture.py\', \'lib/python3.6/site-packages/mpmath/usertools.py\', \'lib/python3.6/site-packages/mpmath/visualization.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/mpmath-0.19-py36_1\', type=1))", "defaults::multipledispatch-0.4.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'9ea301a1b111a508338c2718f5b0b6ae\', name=\'multipledispatch\', platform=\'linux\', subdir=\'linux-64\', version=\'0.4.9\', fn=\'multipledispatch-0.4.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/multipledispatch-0.4.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/multipledispatch-0.4.9-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/multipledispatch-0.4.9-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/multipledispatch-0.4.9-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/multipledispatch-0.4.9-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/multipledispatch-0.4.9-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/multipledispatch/__init__.py\', \'lib/python3.6/site-packages/multipledispatch/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/multipledispatch/__pycache__/conflict.cpython-36.pyc\', \'lib/python3.6/site-packages/multipledispatch/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/multipledispatch/__pycache__/dispatcher.cpython-36.pyc\', \'lib/python3.6/site-packages/multipledispatch/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/multipledispatch/conflict.py\', \'lib/python3.6/site-packages/multipledispatch/core.py\', \'lib/python3.6/site-packages/multipledispatch/dispatcher.py\', \'lib/python3.6/site-packages/multipledispatch/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/multipledispatch-0.4.9-py36_0\', type=1))", "defaults::nbconvert-4.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, date=\'2016-12-20\', depends=(\'entrypoints\', \'jinja2\', \'jupyter_core\', \'mistune\', \'nbformat\', \'pygments\', \'python 3.6*\', \'traitlets\'), license=\'BSD\', md5=\'bacc11fc2b4b8ad63c4d89bb5d066e5b\', name=\'nbconvert\', noarch=None, platform=\'linux\', size=334029, subdir=\'linux-64\', version=\'4.2.0\', fn=\'nbconvert-4.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', priority=1, url=\'https://repo.continuum.io/pkgs/free/linux-64/nbconvert-4.2.0-py36_0.tar.bz2\', auth=None, files=(\'bin/jupyter-nbconvert\', \'lib/python3.6/site-packages/nbconvert-4.2.0-py3.6.egg-info\', \'lib/python3.6/site-packages/nbconvert/__init__.py\', \'lib/python3.6/site-packages/nbconvert/__main__.py\', \'lib/python3.6/site-packages/nbconvert/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/__pycache__/nbconvertapp.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/_version.py\', \'lib/python3.6/site-packages/nbconvert/exporters/__init__.py\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/export.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/exporter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/markdown.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/pdf.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/rst.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/script.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/slides.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/__pycache__/templateexporter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/export.py\', \'lib/python3.6/site-packages/nbconvert/exporters/exporter.py\', \'lib/python3.6/site-packages/nbconvert/exporters/html.py\', \'lib/python3.6/site-packages/nbconvert/exporters/latex.py\', \'lib/python3.6/site-packages/nbconvert/exporters/markdown.py\', \'lib/python3.6/site-packages/nbconvert/exporters/notebook.py\', \'lib/python3.6/site-packages/nbconvert/exporters/pdf.py\', \'lib/python3.6/site-packages/nbconvert/exporters/python.py\', \'lib/python3.6/site-packages/nbconvert/exporters/rst.py\', \'lib/python3.6/site-packages/nbconvert/exporters/script.py\', \'lib/python3.6/site-packages/nbconvert/exporters/slides.py\', \'lib/python3.6/site-packages/nbconvert/exporters/templateexporter.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/cheese.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_export.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_exporter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_html.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_markdown.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_pdf.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_python.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_rst.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_script.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_slides.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/__pycache__/test_templateexporter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/base.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/cheese.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/files/notebook2.ipynb\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/files/pngmetadata.ipynb\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/files/prompt_numbers.ipynb\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/files/rawtest.ipynb\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_export.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_exporter.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_html.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_latex.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_markdown.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_notebook.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_pdf.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_python.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_rst.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_script.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_slides.py\', \'lib/python3.6/site-packages/nbconvert/exporters/tests/test_templateexporter.py\', \'lib/python3.6/site-packages/nbconvert/filters/__init__.py\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/ansi.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/citation.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/datatypefilter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/highlight.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/markdown.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/markdown_mistune.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/ansi.py\', \'lib/python3.6/site-packages/nbconvert/filters/citation.py\', \'lib/python3.6/site-packages/nbconvert/filters/datatypefilter.py\', \'lib/python3.6/site-packages/nbconvert/filters/highlight.py\', \'lib/python3.6/site-packages/nbconvert/filters/latex.py\', \'lib/python3.6/site-packages/nbconvert/filters/markdown.py\', \'lib/python3.6/site-packages/nbconvert/filters/markdown_mistune.py\', \'lib/python3.6/site-packages/nbconvert/filters/metadata.py\', \'lib/python3.6/site-packages/nbconvert/filters/strings.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_ansi.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_citation.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_datatypefilter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_highlight.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_markdown.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/__pycache__/test_strings.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_ansi.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_citation.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_datatypefilter.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_highlight.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_latex.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_markdown.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_metadata.py\', \'lib/python3.6/site-packages/nbconvert/filters/tests/test_strings.py\', \'lib/python3.6/site-packages/nbconvert/nbconvertapp.py\', \'lib/python3.6/site-packages/nbconvert/postprocessors/__init__.py\', \'lib/python3.6/site-packages/nbconvert/postprocessors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/postprocessors/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/postprocessors/__pycache__/serve.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/postprocessors/base.py\', \'lib/python3.6/site-packages/nbconvert/postprocessors/serve.py\', \'lib/python3.6/site-packages/nbconvert/postprocessors/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/postprocessors/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/postprocessors/tests/__pycache__/test_serve.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/postprocessors/tests/test_serve.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__init__.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/clearoutput.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/coalescestreams.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/convertfigures.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/csshtmlheader.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/execute.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/extractoutput.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/highlightmagics.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/__pycache__/svg2pdf.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/base.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/clearoutput.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/coalescestreams.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/convertfigures.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/csshtmlheader.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/execute.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/extractoutput.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/highlightmagics.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/latex.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/svg2pdf.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_clearoutput.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_coalescestreams.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_csshtmlheader.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_execute.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_extractoutput.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_highlightmagics.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_latex.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/__pycache__/test_svg2pdf.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/base.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Clear Output.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Disable Stdin.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Factorials.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/HelloWorld.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Inline Image.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Interrupt.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/SVG.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Skip Exceptions.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/Unicode.ipynb\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/files/python.png\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_clearoutput.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_coalescestreams.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_csshtmlheader.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_execute.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_extractoutput.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_highlightmagics.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_latex.py\', \'lib/python3.6/site-packages/nbconvert/preprocessors/tests/test_svg2pdf.py\', \'lib/python3.6/site-packages/nbconvert/resources/__init__.py\', \'lib/python3.6/site-packages/nbconvert/resources/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/resources/style.min.css\', \'lib/python3.6/site-packages/nbconvert/templates/README.md\', \'lib/python3.6/site-packages/nbconvert/templates/html/basic.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/html/full.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/html/mathjax.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/html/slides_reveal.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/latex/article.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/base.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/report.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/skeleton/display_priority.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/skeleton/null.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/style_bw_ipython.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/style_bw_python.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/style_ipython.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/latex/style_python.tplx\', \'lib/python3.6/site-packages/nbconvert/templates/markdown.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/python.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/rst.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/script.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/skeleton/README.md\', \'lib/python3.6/site-packages/nbconvert/templates/skeleton/display_priority.tpl\', \'lib/python3.6/site-packages/nbconvert/templates/skeleton/null.tpl\', \'lib/python3.6/site-packages/nbconvert/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/__pycache__/fake_exporters.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/__pycache__/test_nbconvertapp.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/base.py\', \'lib/python3.6/site-packages/nbconvert/tests/exporter_entrypoint/__pycache__/eptest.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/exporter_entrypoint/eptest-0.1.dist-info/entry_points.txt\', \'lib/python3.6/site-packages/nbconvert/tests/exporter_entrypoint/eptest.py\', \'lib/python3.6/site-packages/nbconvert/tests/fake_exporters.py\', \'lib/python3.6/site-packages/nbconvert/tests/files/__pycache__/hello.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/files/__pycache__/jupyter_nbconvert_config.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/files/__pycache__/override.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/tests/files/containerized_deployments.jpeg\', \'lib/python3.6/site-packages/nbconvert/tests/files/hello.py\', \'lib/python3.6/site-packages/nbconvert/tests/files/jupyter_nbconvert_config.py\', \'lib/python3.6/site-packages/nbconvert/tests/files/latex-linked-image.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/notebook1.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/notebook2.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/notebook3_with_errors.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/notebook4_jpeg.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/notebook_jl.ipynb\', \'lib/python3.6/site-packages/nbconvert/tests/files/override.py\', \'lib/python3.6/site-packages/nbconvert/tests/files/testimage.png\', \'lib/python3.6/site-packages/nbconvert/tests/test_nbconvertapp.py\', \'lib/python3.6/site-packages/nbconvert/utils/__init__.py\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/lexers.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/pandoc.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/base.py\', \'lib/python3.6/site-packages/nbconvert/utils/exceptions.py\', \'lib/python3.6/site-packages/nbconvert/utils/io.py\', \'lib/python3.6/site-packages/nbconvert/utils/lexers.py\', \'lib/python3.6/site-packages/nbconvert/utils/pandoc.py\', \'lib/python3.6/site-packages/nbconvert/utils/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/utils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/tests/__pycache__/test_pandoc.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/utils/tests/test_io.py\', \'lib/python3.6/site-packages/nbconvert/utils/tests/test_pandoc.py\', \'lib/python3.6/site-packages/nbconvert/utils/version.py\', \'lib/python3.6/site-packages/nbconvert/writers/__init__.py\', \'lib/python3.6/site-packages/nbconvert/writers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/__pycache__/files.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/__pycache__/stdout.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/base.py\', \'lib/python3.6/site-packages/nbconvert/writers/debug.py\', \'lib/python3.6/site-packages/nbconvert/writers/files.py\', \'lib/python3.6/site-packages/nbconvert/writers/stdout.py\', \'lib/python3.6/site-packages/nbconvert/writers/tests/__init__.py\', \'lib/python3.6/site-packages/nbconvert/writers/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/tests/__pycache__/test_debug.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/tests/__pycache__/test_files.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/tests/__pycache__/test_stdout.cpython-36.pyc\', \'lib/python3.6/site-packages/nbconvert/writers/tests/test_debug.py\', \'lib/python3.6/site-packages/nbconvert/writers/tests/test_files.py\', \'lib/python3.6/site-packages/nbconvert/writers/tests/test_stdout.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/nbconvert-4.2.0-py36_0\', type=1), with_features_depends=frozendict(), preferred_env=None)", "defaults::nbformat-4.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ipython_genutils\', \'jsonschema >=2.4,!=2.5.0\', \'jupyter_core\', \'python 3.6*\', \'traitlets >=4.1\'), license=\'BSD\', md5=\'fc9e2c691ea4c26348054de4cc2b0ca0\', name=\'nbformat\', platform=\'linux\', subdir=\'linux-64\', version=\'4.2.0\', fn=\'nbformat-4.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/nbformat-4.2.0-py36_0.tar.bz2\', files=(\'bin/jupyter-trust\', \'lib/python3.6/site-packages/nbformat-4.2.0-py3.6.egg-info\', \'lib/python3.6/site-packages/nbformat/__init__.py\', \'lib/python3.6/site-packages/nbformat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/converter.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/current.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/notebooknode.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/reader.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/sentinel.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/sign.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/__pycache__/validator.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/_version.py\', \'lib/python3.6/site-packages/nbformat/converter.py\', \'lib/python3.6/site-packages/nbformat/current.py\', \'lib/python3.6/site-packages/nbformat/notebooknode.py\', \'lib/python3.6/site-packages/nbformat/reader.py\', \'lib/python3.6/site-packages/nbformat/sentinel.py\', \'lib/python3.6/site-packages/nbformat/sign.py\', \'lib/python3.6/site-packages/nbformat/tests/__init__.py\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/test_api.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/test_convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/test_reader.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/test_sign.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/__pycache__/test_validator.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/tests/base.py\', \'lib/python3.6/site-packages/nbformat/tests/invalid.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test2.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test3.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test4.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test4custom.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test4docinfo.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test4plus.ipynb\', \'lib/python3.6/site-packages/nbformat/tests/test_api.py\', \'lib/python3.6/site-packages/nbformat/tests/test_convert.py\', \'lib/python3.6/site-packages/nbformat/tests/test_reader.py\', \'lib/python3.6/site-packages/nbformat/tests/test_sign.py\', \'lib/python3.6/site-packages/nbformat/tests/test_validator.py\', \'lib/python3.6/site-packages/nbformat/v1/__init__.py\', \'lib/python3.6/site-packages/nbformat/v1/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/__pycache__/nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/__pycache__/nbjson.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/__pycache__/rwbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/convert.py\', \'lib/python3.6/site-packages/nbformat/v1/nbbase.py\', \'lib/python3.6/site-packages/nbformat/v1/nbjson.py\', \'lib/python3.6/site-packages/nbformat/v1/rwbase.py\', \'lib/python3.6/site-packages/nbformat/v1/tests/__init__.py\', \'lib/python3.6/site-packages/nbformat/v1/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/tests/__pycache__/nbexamples.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/tests/__pycache__/test_nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v1/tests/nbexamples.py\', \'lib/python3.6/site-packages/nbformat/v1/tests/test_json.py\', \'lib/python3.6/site-packages/nbformat/v1/tests/test_nbbase.py\', \'lib/python3.6/site-packages/nbformat/v2/__init__.py\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/nbjson.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/nbpy.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/nbxml.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/__pycache__/rwbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/convert.py\', \'lib/python3.6/site-packages/nbformat/v2/nbbase.py\', \'lib/python3.6/site-packages/nbformat/v2/nbjson.py\', \'lib/python3.6/site-packages/nbformat/v2/nbpy.py\', \'lib/python3.6/site-packages/nbformat/v2/nbxml.py\', \'lib/python3.6/site-packages/nbformat/v2/rwbase.py\', \'lib/python3.6/site-packages/nbformat/v2/tests/__init__.py\', \'lib/python3.6/site-packages/nbformat/v2/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/tests/__pycache__/nbexamples.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/tests/__pycache__/test_nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/tests/__pycache__/test_nbpy.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v2/tests/nbexamples.py\', \'lib/python3.6/site-packages/nbformat/v2/tests/test_json.py\', \'lib/python3.6/site-packages/nbformat/v2/tests/test_nbbase.py\', \'lib/python3.6/site-packages/nbformat/v2/tests/test_nbpy.py\', \'lib/python3.6/site-packages/nbformat/v3/__init__.py\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/nbjson.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/nbpy.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/__pycache__/rwbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/convert.py\', \'lib/python3.6/site-packages/nbformat/v3/nbbase.py\', \'lib/python3.6/site-packages/nbformat/v3/nbformat.v3.schema.json\', \'lib/python3.6/site-packages/nbformat/v3/nbjson.py\', \'lib/python3.6/site-packages/nbformat/v3/nbpy.py\', \'lib/python3.6/site-packages/nbformat/v3/rwbase.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/__init__.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/formattest.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/nbexamples.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/test_nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/__pycache__/test_nbpy.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v3/tests/formattest.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/nbexamples.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/test_json.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/test_misc.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/test_nbbase.py\', \'lib/python3.6/site-packages/nbformat/v3/tests/test_nbpy.py\', \'lib/python3.6/site-packages/nbformat/v4/__init__.py\', \'lib/python3.6/site-packages/nbformat/v4/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/__pycache__/nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/__pycache__/nbjson.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/__pycache__/rwbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/convert.py\', \'lib/python3.6/site-packages/nbformat/v4/nbbase.py\', \'lib/python3.6/site-packages/nbformat/v4/nbformat.v4.schema.json\', \'lib/python3.6/site-packages/nbformat/v4/nbjson.py\', \'lib/python3.6/site-packages/nbformat/v4/rwbase.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/__init__.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/formattest.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/nbexamples.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/test_convert.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/test_nbbase.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/__pycache__/test_validate.cpython-36.pyc\', \'lib/python3.6/site-packages/nbformat/v4/tests/formattest.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/nbexamples.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/test_convert.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/test_json.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/test_nbbase.py\', \'lib/python3.6/site-packages/nbformat/v4/tests/test_validate.py\', \'lib/python3.6/site-packages/nbformat/validator.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/nbformat-4.2.0-py36_0\', type=1))", "defaults::networkx-1.11-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'decorator >=3.4\', \'python 3.6*\'), license=\'BSD\', md5=\'e4dd50f1ce00f2f7a57f32a341b174e6\', name=\'networkx\', platform=\'linux\', subdir=\'linux-64\', version=\'1.11\', fn=\'networkx-1.11-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/networkx-1.11-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/networkx-1.11-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/networkx/__init__.py\', \'lib/python3.6/site-packages/networkx/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/convert_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/exception.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/relabel.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/release.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/block.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/boundary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/clique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/cycles.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/dag.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/distance_measures.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/distance_regular.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/dominance.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/dominating.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/euler.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/graphical.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/hierarchy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/hybrid.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/isolate.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/link_prediction.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/minors.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/mis.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/mst.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/richclub.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/simple_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/smetric.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/swap.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/triads.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/__pycache__/vitality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/clique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/clustering_coefficient.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/dominating_set.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/independent_set.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/kcomponents.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/ramsey.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/__pycache__/vertex_cover.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/clique.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/clustering_coefficient.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/dominating_set.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/independent_set.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/kcomponents.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/ramsey.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_approx_clust_coeff.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_clique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_dominating_set.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_independent_set.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_kcomponents.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_ramsey.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/__pycache__/test_vertex_cover.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_approx_clust_coeff.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_clique.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_dominating_set.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_independent_set.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_kcomponents.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_ramsey.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/tests/test_vertex_cover.py\', \'lib/python3.6/site-packages/networkx/algorithms/approximation/vertex_cover.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/correlation.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/mixing.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/neighbor_degree.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/__pycache__/pairs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/correlation.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/mixing.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/neighbor_degree.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/pairs.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/base_test.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/test_connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/test_correlation.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/test_mixing.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/test_neighbor_degree.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/__pycache__/test_pairs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/base_test.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/test_connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/test_correlation.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/test_mixing.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/test_neighbor_degree.py\', \'lib/python3.6/site-packages/networkx/algorithms/assortativity/tests/test_pairs.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/edgelist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/generators.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/projection.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/redundancy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/__pycache__/spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/basic.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/cluster.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/edgelist.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/generators.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/matrix.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/projection.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/redundancy.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/spectral.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_edgelist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_generators.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_project.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_redundancy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/__pycache__/test_spectral_bipartivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_basic.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_cluster.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_edgelist.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_generators.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_matrix.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_project.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_redundancy.py\', \'lib/python3.6/site-packages/networkx/algorithms/bipartite/tests/test_spectral_bipartivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/block.py\', \'lib/python3.6/site-packages/networkx/algorithms/boundary.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/betweenness.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/betweenness_subset.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/closeness.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/communicability_alg.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/current_flow_betweenness.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/current_flow_betweenness_subset.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/current_flow_closeness.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/degree_alg.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/dispersion.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/eigenvector.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/flow_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/harmonic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/katz.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/__pycache__/load.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/betweenness.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/betweenness_subset.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/closeness.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/communicability_alg.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/current_flow_betweenness.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/current_flow_betweenness_subset.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/current_flow_closeness.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/degree_alg.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/dispersion.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/eigenvector.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/flow_matrix.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/harmonic.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/katz.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/load.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_betweenness_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_betweenness_centrality_subset.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_closeness_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_communicability.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_current_flow_betweenness_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_current_flow_betweenness_centrality_subset.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_current_flow_closeness.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_degree_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_dispersion.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_eigenvector_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_harmonic_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_katz_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/__pycache__/test_load_centrality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_betweenness_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_betweenness_centrality_subset.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_closeness_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_communicability.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_current_flow_betweenness_centrality_subset.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_current_flow_closeness.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_degree_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_dispersion.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_eigenvector_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_harmonic_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_katz_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/centrality/tests/test_load_centrality.py\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/__pycache__/chordal_alg.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/chordal_alg.py\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/tests/__pycache__/test_chordal.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/chordal/tests/test_chordal.py\', \'lib/python3.6/site-packages/networkx/algorithms/clique.py\', \'lib/python3.6/site-packages/networkx/algorithms/cluster.py\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/__pycache__/greedy_coloring.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/__pycache__/greedy_coloring_with_interchange.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/greedy_coloring.py\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/greedy_coloring_with_interchange.py\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/tests/__pycache__/test_coloring.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/coloring/tests/test_coloring.py\', \'lib/python3.6/site-packages/networkx/algorithms/community/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/community/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/community/__pycache__/kclique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/community/kclique.py\', \'lib/python3.6/site-packages/networkx/algorithms/community/tests/__pycache__/test_kclique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/community/tests/test_kclique.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/attracting.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/biconnected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/semiconnected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/strongly_connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/__pycache__/weakly_connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/attracting.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/biconnected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/semiconnected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/strongly_connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_attracting.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_biconnected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_semiconnected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_strongly_connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_subgraph_copies.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/__pycache__/test_weakly_connected.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_attracting.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_biconnected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_semiconnected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_strongly_connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_subgraph_copies.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/tests/test_weakly_connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/components/weakly_connected.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/cuts.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/kcomponents.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/kcutsets.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/stoerwagner.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/cuts.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/kcomponents.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/kcutsets.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/stoerwagner.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/__pycache__/test_connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/__pycache__/test_cuts.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/__pycache__/test_kcomponents.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/__pycache__/test_kcutsets.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/__pycache__/test_stoer_wagner.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/test_connectivity.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/test_cuts.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/test_kcomponents.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/test_kcutsets.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/tests/test_stoer_wagner.py\', \'lib/python3.6/site-packages/networkx/algorithms/connectivity/utils.py\', \'lib/python3.6/site-packages/networkx/algorithms/core.py\', \'lib/python3.6/site-packages/networkx/algorithms/cycles.py\', \'lib/python3.6/site-packages/networkx/algorithms/dag.py\', \'lib/python3.6/site-packages/networkx/algorithms/distance_measures.py\', \'lib/python3.6/site-packages/networkx/algorithms/distance_regular.py\', \'lib/python3.6/site-packages/networkx/algorithms/dominance.py\', \'lib/python3.6/site-packages/networkx/algorithms/dominating.py\', \'lib/python3.6/site-packages/networkx/algorithms/euler.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/capacityscaling.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/edmondskarp.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/maxflow.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/mincost.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/networksimplex.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/preflowpush.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/shortestaugmentingpath.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/capacityscaling.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/edmondskarp.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/maxflow.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/mincost.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/networksimplex.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/preflowpush.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/shortestaugmentingpath.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/__pycache__/test_maxflow.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/__pycache__/test_maxflow_large_graph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/__pycache__/test_mincost.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/gl1.gpickle.bz2\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/gw1.gpickle.bz2\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/netgen-2.gpickle.bz2\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/test_maxflow.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/test_maxflow_large_graph.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/test_mincost.py\', \'lib/python3.6/site-packages/networkx/algorithms/flow/tests/wlm3.gpickle.bz2\', \'lib/python3.6/site-packages/networkx/algorithms/flow/utils.py\', \'lib/python3.6/site-packages/networkx/algorithms/graphical.py\', \'lib/python3.6/site-packages/networkx/algorithms/hierarchy.py\', \'lib/python3.6/site-packages/networkx/algorithms/hybrid.py\', \'lib/python3.6/site-packages/networkx/algorithms/isolate.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__pycache__/isomorph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__pycache__/isomorphvf2.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__pycache__/matchhelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/__pycache__/vf2userfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/isomorph.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/isomorphvf2.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/matchhelpers.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/__pycache__/test_isomorphism.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/__pycache__/test_isomorphvf2.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/__pycache__/test_vf2userfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/iso_r01_s80.A99\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/iso_r01_s80.B99\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/si2_b06_m200.A99\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/si2_b06_m200.B99\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/test_isomorphism.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/test_isomorphvf2.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/tests/test_vf2userfunc.py\', \'lib/python3.6/site-packages/networkx/algorithms/isomorphism/vf2userfunc.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/__pycache__/hits_alg.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/__pycache__/pagerank_alg.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/hits_alg.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/pagerank_alg.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/tests/__pycache__/test_hits.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/tests/__pycache__/test_pagerank.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/tests/test_hits.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_analysis/tests/test_pagerank.py\', \'lib/python3.6/site-packages/networkx/algorithms/link_prediction.py\', \'lib/python3.6/site-packages/networkx/algorithms/matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/minors.py\', \'lib/python3.6/site-packages/networkx/algorithms/mis.py\', \'lib/python3.6/site-packages/networkx/algorithms/mst.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__pycache__/all.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__pycache__/binary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__pycache__/product.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/__pycache__/unary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/all.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/binary.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/product.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/__pycache__/test_all.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/__pycache__/test_binary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/__pycache__/test_product.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/__pycache__/test_unary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/test_all.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/test_binary.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/test_product.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/tests/test_unary.py\', \'lib/python3.6/site-packages/networkx/algorithms/operators/unary.py\', \'lib/python3.6/site-packages/networkx/algorithms/richclub.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/astar.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/dense.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/generic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/unweighted.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/__pycache__/weighted.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/astar.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/dense.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/generic.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_astar.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_dense.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_dense_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_generic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_unweighted.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/__pycache__/test_weighted.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_astar.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_dense.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_dense_numpy.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_generic.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_unweighted.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/tests/test_weighted.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/unweighted.py\', \'lib/python3.6/site-packages/networkx/algorithms/shortest_paths/weighted.py\', \'lib/python3.6/site-packages/networkx/algorithms/simple_paths.py\', \'lib/python3.6/site-packages/networkx/algorithms/smetric.py\', \'lib/python3.6/site-packages/networkx/algorithms/swap.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_block.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_boundary.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_clique.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_cycles.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_dag.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_distance_measures.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_distance_regular.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_dominance.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_dominating.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_euler.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_graphical.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_hierarchy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_hybrid.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_link_prediction.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_matching.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_minors.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_mis.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_mst.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_richclub.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_simple_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_smetric.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_swap.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_triads.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/__pycache__/test_vitality.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_block.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_boundary.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_clique.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_cluster.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_core.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_cycles.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_dag.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_distance_measures.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_distance_regular.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_dominance.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_dominating.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_euler.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_graphical.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_hierarchy.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_hybrid.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_link_prediction.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_matching.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_minors.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_mis.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_mst.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_richclub.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_simple_paths.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_smetric.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_swap.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_triads.py\', \'lib/python3.6/site-packages/networkx/algorithms/tests/test_vitality.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/__pycache__/breadth_first_search.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/__pycache__/depth_first_search.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/__pycache__/edgedfs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/breadth_first_search.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/depth_first_search.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/edgedfs.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/__pycache__/test_bfs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/__pycache__/test_dfs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/__pycache__/test_edgedfs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/test_bfs.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/test_dfs.py\', \'lib/python3.6/site-packages/networkx/algorithms/traversal/tests/test_edgedfs.py\', \'lib/python3.6/site-packages/networkx/algorithms/tree/__init__.py\', \'lib/python3.6/site-packages/networkx/algorithms/tree/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tree/__pycache__/branchings.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tree/__pycache__/recognition.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tree/branchings.py\', \'lib/python3.6/site-packages/networkx/algorithms/tree/recognition.py\', \'lib/python3.6/site-packages/networkx/algorithms/tree/tests/__pycache__/test_branchings.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tree/tests/__pycache__/test_recognition.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/algorithms/tree/tests/test_branchings.py\', \'lib/python3.6/site-packages/networkx/algorithms/tree/tests/test_recognition.py\', \'lib/python3.6/site-packages/networkx/algorithms/triads.py\', \'lib/python3.6/site-packages/networkx/algorithms/vitality.py\', \'lib/python3.6/site-packages/networkx/classes/__init__.py\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/digraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/function.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/graph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/multidigraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/multigraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/__pycache__/ordered.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/digraph.py\', \'lib/python3.6/site-packages/networkx/classes/function.py\', \'lib/python3.6/site-packages/networkx/classes/graph.py\', \'lib/python3.6/site-packages/networkx/classes/multidigraph.py\', \'lib/python3.6/site-packages/networkx/classes/multigraph.py\', \'lib/python3.6/site-packages/networkx/classes/ordered.py\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/historical_tests.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_digraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_digraph_historical.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_function.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_graph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_graph_historical.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_multidigraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_multigraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_ordered.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_special.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/test_timing.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/__pycache__/timingclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/classes/tests/historical_tests.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_digraph.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_digraph_historical.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_function.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_graph.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_graph_historical.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_multidigraph.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_multigraph.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_ordered.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_special.py\', \'lib/python3.6/site-packages/networkx/classes/tests/test_timing.py\', \'lib/python3.6/site-packages/networkx/classes/tests/timingclasses.py\', \'lib/python3.6/site-packages/networkx/convert.py\', \'lib/python3.6/site-packages/networkx/convert_matrix.py\', \'lib/python3.6/site-packages/networkx/drawing/__init__.py\', \'lib/python3.6/site-packages/networkx/drawing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/__pycache__/layout.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/__pycache__/nx_agraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/__pycache__/nx_pydot.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/__pycache__/nx_pylab.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/layout.py\', \'lib/python3.6/site-packages/networkx/drawing/nx_agraph.py\', \'lib/python3.6/site-packages/networkx/drawing/nx_pydot.py\', \'lib/python3.6/site-packages/networkx/drawing/nx_pylab.py\', \'lib/python3.6/site-packages/networkx/drawing/tests/__pycache__/test_agraph.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/tests/__pycache__/test_layout.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/tests/__pycache__/test_pydot.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/tests/__pycache__/test_pylab.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/drawing/tests/test_agraph.py\', \'lib/python3.6/site-packages/networkx/drawing/tests/test_layout.py\', \'lib/python3.6/site-packages/networkx/drawing/tests/test_pydot.py\', \'lib/python3.6/site-packages/networkx/drawing/tests/test_pylab.py\', \'lib/python3.6/site-packages/networkx/exception.py\', \'lib/python3.6/site-packages/networkx/external/__init__.py\', \'lib/python3.6/site-packages/networkx/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__init__.py\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/atlas.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/classic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/community.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/degree_seq.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/directed.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/ego.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/expanders.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/geometric.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/intersection.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/line.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/nonisomorphic_trees.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/random_clustered.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/random_graphs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/small.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/social.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/stochastic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/__pycache__/threshold.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/atlas.py\', \'lib/python3.6/site-packages/networkx/generators/classic.py\', \'lib/python3.6/site-packages/networkx/generators/community.py\', \'lib/python3.6/site-packages/networkx/generators/degree_seq.py\', \'lib/python3.6/site-packages/networkx/generators/directed.py\', \'lib/python3.6/site-packages/networkx/generators/ego.py\', \'lib/python3.6/site-packages/networkx/generators/expanders.py\', \'lib/python3.6/site-packages/networkx/generators/geometric.py\', \'lib/python3.6/site-packages/networkx/generators/intersection.py\', \'lib/python3.6/site-packages/networkx/generators/line.py\', \'lib/python3.6/site-packages/networkx/generators/nonisomorphic_trees.py\', \'lib/python3.6/site-packages/networkx/generators/random_clustered.py\', \'lib/python3.6/site-packages/networkx/generators/random_graphs.py\', \'lib/python3.6/site-packages/networkx/generators/small.py\', \'lib/python3.6/site-packages/networkx/generators/social.py\', \'lib/python3.6/site-packages/networkx/generators/stochastic.py\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_atlas.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_classic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_community.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_degree_seq.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_directed.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_ego.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_expanders.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_geometric.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_intersection.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_line.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_nonisomorphic_trees.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_random_clustered.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_random_graphs.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_small.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_stochastic.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/__pycache__/test_threshold.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/generators/tests/test_atlas.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_classic.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_community.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_degree_seq.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_directed.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_ego.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_expanders.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_geometric.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_intersection.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_line.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_nonisomorphic_trees.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_random_clustered.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_random_graphs.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_small.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_stochastic.py\', \'lib/python3.6/site-packages/networkx/generators/tests/test_threshold.py\', \'lib/python3.6/site-packages/networkx/generators/threshold.py\', \'lib/python3.6/site-packages/networkx/linalg/__init__.py\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/algebraicconnectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/attrmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/graphmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/laplacianmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/modularitymatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/__pycache__/spectrum.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/algebraicconnectivity.py\', \'lib/python3.6/site-packages/networkx/linalg/attrmatrix.py\', \'lib/python3.6/site-packages/networkx/linalg/graphmatrix.py\', \'lib/python3.6/site-packages/networkx/linalg/laplacianmatrix.py\', \'lib/python3.6/site-packages/networkx/linalg/modularitymatrix.py\', \'lib/python3.6/site-packages/networkx/linalg/spectrum.py\', \'lib/python3.6/site-packages/networkx/linalg/tests/__pycache__/test_algebraic_connectivity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/tests/__pycache__/test_graphmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/tests/__pycache__/test_laplacian.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/tests/__pycache__/test_modularity.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/tests/__pycache__/test_spectrum.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/linalg/tests/test_algebraic_connectivity.py\', \'lib/python3.6/site-packages/networkx/linalg/tests/test_graphmatrix.py\', \'lib/python3.6/site-packages/networkx/linalg/tests/test_laplacian.py\', \'lib/python3.6/site-packages/networkx/linalg/tests/test_modularity.py\', \'lib/python3.6/site-packages/networkx/linalg/tests/test_spectrum.py\', \'lib/python3.6/site-packages/networkx/readwrite/__init__.py\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/adjlist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/edgelist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/gexf.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/gml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/gpickle.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/graph6.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/graphml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/leda.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/multiline_adjlist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/nx_shp.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/nx_yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/p2g.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/pajek.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/__pycache__/sparse6.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/adjlist.py\', \'lib/python3.6/site-packages/networkx/readwrite/edgelist.py\', \'lib/python3.6/site-packages/networkx/readwrite/gexf.py\', \'lib/python3.6/site-packages/networkx/readwrite/gml.py\', \'lib/python3.6/site-packages/networkx/readwrite/gpickle.py\', \'lib/python3.6/site-packages/networkx/readwrite/graph6.py\', \'lib/python3.6/site-packages/networkx/readwrite/graphml.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/__init__.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/__pycache__/adjacency.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/__pycache__/node_link.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/adjacency.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/node_link.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/__pycache__/test_adjacency.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/__pycache__/test_node_link.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/test_adjacency.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/test_node_link.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tests/test_tree.py\', \'lib/python3.6/site-packages/networkx/readwrite/json_graph/tree.py\', \'lib/python3.6/site-packages/networkx/readwrite/leda.py\', \'lib/python3.6/site-packages/networkx/readwrite/multiline_adjlist.py\', \'lib/python3.6/site-packages/networkx/readwrite/nx_shp.py\', \'lib/python3.6/site-packages/networkx/readwrite/nx_yaml.py\', \'lib/python3.6/site-packages/networkx/readwrite/p2g.py\', \'lib/python3.6/site-packages/networkx/readwrite/pajek.py\', \'lib/python3.6/site-packages/networkx/readwrite/sparse6.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_adjlist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_edgelist.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_gexf.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_gml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_gpickle.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_graph6.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_graphml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_leda.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_p2g.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_pajek.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_shp.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_sparse6.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/__pycache__/test_yaml.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_adjlist.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_edgelist.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_gexf.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_gml.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_gpickle.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_graph6.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_graphml.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_leda.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_p2g.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_pajek.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_shp.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_sparse6.py\', \'lib/python3.6/site-packages/networkx/readwrite/tests/test_yaml.py\', \'lib/python3.6/site-packages/networkx/relabel.py\', \'lib/python3.6/site-packages/networkx/release.py\', \'lib/python3.6/site-packages/networkx/testing/__init__.py\', \'lib/python3.6/site-packages/networkx/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/testing/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/testing/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/testing/tests/test_utils.py\', \'lib/python3.6/site-packages/networkx/testing/utils.py\', \'lib/python3.6/site-packages/networkx/tests/__init__.py\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/benchmark.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_convert.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_convert_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_convert_pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_convert_scipy.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/__pycache__/test_relabel.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/tests/benchmark.py\', \'lib/python3.6/site-packages/networkx/tests/test.py\', \'lib/python3.6/site-packages/networkx/tests/test_convert.py\', \'lib/python3.6/site-packages/networkx/tests/test_convert_numpy.py\', \'lib/python3.6/site-packages/networkx/tests/test_convert_pandas.py\', \'lib/python3.6/site-packages/networkx/tests/test_convert_scipy.py\', \'lib/python3.6/site-packages/networkx/tests/test_exceptions.py\', \'lib/python3.6/site-packages/networkx/tests/test_relabel.py\', \'lib/python3.6/site-packages/networkx/utils/__init__.py\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/contextmanagers.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/heaps.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/random_sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/rcm.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/__pycache__/union_find.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/contextmanagers.py\', \'lib/python3.6/site-packages/networkx/utils/decorators.py\', \'lib/python3.6/site-packages/networkx/utils/heaps.py\', \'lib/python3.6/site-packages/networkx/utils/misc.py\', \'lib/python3.6/site-packages/networkx/utils/random_sequence.py\', \'lib/python3.6/site-packages/networkx/utils/rcm.py\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_contextmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_heaps.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_random_sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_rcm.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/__pycache__/test_unionfind.cpython-36.pyc\', \'lib/python3.6/site-packages/networkx/utils/tests/test_contextmanager.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_decorators.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_heaps.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_misc.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_random_sequence.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_rcm.py\', \'lib/python3.6/site-packages/networkx/utils/tests/test_unionfind.py\', \'lib/python3.6/site-packages/networkx/utils/union_find.py\', \'lib/python3.6/site-packages/networkx/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/networkx-1.11-py36_0\', type=1))", "defaults::nltk-3.2.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'Apache\', md5=\'761253223545393d904edd1a27251a25\', name=\'nltk\', platform=\'linux\', subdir=\'linux-64\', version=\'3.2.2\', fn=\'nltk-3.2.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/nltk-3.2.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/nltk-3.2.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/nltk/VERSION\', \'lib/python3.6/site-packages/nltk/__init__.py\', \'lib/python3.6/site-packages/nltk/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/book.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/collocations.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/downloader.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/featstruct.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/grammar.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/internals.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/jsontags.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/lazyimport.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/probability.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/tgrep.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/toolbox.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/treeprettyprinter.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/treetransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/__pycache__/wsd.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__init__.py\', \'lib/python3.6/site-packages/nltk/app/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/chartparser_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/chunkparser_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/collocations_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/concordance_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/nemo_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/rdparser_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/srparser_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/wordfreq_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/__pycache__/wordnet_app.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/app/chartparser_app.py\', \'lib/python3.6/site-packages/nltk/app/chunkparser_app.py\', \'lib/python3.6/site-packages/nltk/app/collocations_app.py\', \'lib/python3.6/site-packages/nltk/app/concordance_app.py\', \'lib/python3.6/site-packages/nltk/app/nemo_app.py\', \'lib/python3.6/site-packages/nltk/app/rdparser_app.py\', \'lib/python3.6/site-packages/nltk/app/srparser_app.py\', \'lib/python3.6/site-packages/nltk/app/wordfreq_app.py\', \'lib/python3.6/site-packages/nltk/app/wordnet_app.py\', \'lib/python3.6/site-packages/nltk/book.py\', \'lib/python3.6/site-packages/nltk/ccg/__init__.py\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/chart.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/combinator.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/lexicon.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/__pycache__/logic.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/ccg/api.py\', \'lib/python3.6/site-packages/nltk/ccg/chart.py\', \'lib/python3.6/site-packages/nltk/ccg/combinator.py\', \'lib/python3.6/site-packages/nltk/ccg/lexicon.py\', \'lib/python3.6/site-packages/nltk/ccg/logic.py\', \'lib/python3.6/site-packages/nltk/chat/__init__.py\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/eliza.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/iesha.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/rude.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/suntsu.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/__pycache__/zen.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chat/eliza.py\', \'lib/python3.6/site-packages/nltk/chat/iesha.py\', \'lib/python3.6/site-packages/nltk/chat/rude.py\', \'lib/python3.6/site-packages/nltk/chat/suntsu.py\', \'lib/python3.6/site-packages/nltk/chat/util.py\', \'lib/python3.6/site-packages/nltk/chat/zen.py\', \'lib/python3.6/site-packages/nltk/chunk/__init__.py\', \'lib/python3.6/site-packages/nltk/chunk/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chunk/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chunk/__pycache__/named_entity.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chunk/__pycache__/regexp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chunk/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/chunk/api.py\', \'lib/python3.6/site-packages/nltk/chunk/named_entity.py\', \'lib/python3.6/site-packages/nltk/chunk/regexp.py\', \'lib/python3.6/site-packages/nltk/chunk/util.py\', \'lib/python3.6/site-packages/nltk/classify/__init__.py\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/decisiontree.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/maxent.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/megam.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/naivebayes.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/positivenaivebayes.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/rte_classify.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/scikitlearn.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/senna.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/svm.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/tadm.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/textcat.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/__pycache__/weka.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/classify/api.py\', \'lib/python3.6/site-packages/nltk/classify/decisiontree.py\', \'lib/python3.6/site-packages/nltk/classify/maxent.py\', \'lib/python3.6/site-packages/nltk/classify/megam.py\', \'lib/python3.6/site-packages/nltk/classify/naivebayes.py\', \'lib/python3.6/site-packages/nltk/classify/positivenaivebayes.py\', \'lib/python3.6/site-packages/nltk/classify/rte_classify.py\', \'lib/python3.6/site-packages/nltk/classify/scikitlearn.py\', \'lib/python3.6/site-packages/nltk/classify/senna.py\', \'lib/python3.6/site-packages/nltk/classify/svm.py\', \'lib/python3.6/site-packages/nltk/classify/tadm.py\', \'lib/python3.6/site-packages/nltk/classify/textcat.py\', \'lib/python3.6/site-packages/nltk/classify/util.py\', \'lib/python3.6/site-packages/nltk/classify/weka.py\', \'lib/python3.6/site-packages/nltk/cluster/__init__.py\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/em.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/gaac.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/kmeans.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/cluster/api.py\', \'lib/python3.6/site-packages/nltk/cluster/em.py\', \'lib/python3.6/site-packages/nltk/cluster/gaac.py\', \'lib/python3.6/site-packages/nltk/cluster/kmeans.py\', \'lib/python3.6/site-packages/nltk/cluster/util.py\', \'lib/python3.6/site-packages/nltk/collections.py\', \'lib/python3.6/site-packages/nltk/collocations.py\', \'lib/python3.6/site-packages/nltk/compat.py\', \'lib/python3.6/site-packages/nltk/corpus/__init__.py\', \'lib/python3.6/site-packages/nltk/corpus/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/__pycache__/europarl_raw.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/europarl_raw.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/__init__.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/aligned.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/bnc.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/bracket_parse.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/categorized_sents.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/chasen.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/childes.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/chunked.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/cmudict.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/comparative_sents.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/conll.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/crubadan.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/dependency.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/framenet.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/ieer.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/indian.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/ipipan.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/knbc.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/lin.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/mte.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/nkjp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/nombank.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/nps_chat.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/opinion_lexicon.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/panlex_lite.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/pl196x.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/plaintext.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/ppattach.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/propbank.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/pros_cons.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/reviews.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/rte.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/semcor.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/senseval.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/sentiwordnet.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/sinica_treebank.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/string_category.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/switchboard.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/tagged.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/timit.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/toolbox.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/twitter.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/udhr.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/verbnet.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/wordlist.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/wordnet.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/xmldocs.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/__pycache__/ycoe.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/corpus/reader/aligned.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/api.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/bnc.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/bracket_parse.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/categorized_sents.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/chasen.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/childes.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/chunked.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/cmudict.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/comparative_sents.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/conll.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/crubadan.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/dependency.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/framenet.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/ieer.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/indian.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/ipipan.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/knbc.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/lin.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/mte.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/nkjp.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/nombank.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/nps_chat.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/opinion_lexicon.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/panlex_lite.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/pl196x.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/plaintext.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/ppattach.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/propbank.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/pros_cons.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/reviews.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/rte.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/semcor.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/senseval.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/sentiwordnet.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/sinica_treebank.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/string_category.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/switchboard.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/tagged.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/timit.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/toolbox.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/twitter.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/udhr.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/util.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/verbnet.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/wordlist.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/wordnet.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/xmldocs.py\', \'lib/python3.6/site-packages/nltk/corpus/reader/ycoe.py\', \'lib/python3.6/site-packages/nltk/corpus/util.py\', \'lib/python3.6/site-packages/nltk/data.py\', \'lib/python3.6/site-packages/nltk/decorators.py\', \'lib/python3.6/site-packages/nltk/downloader.py\', \'lib/python3.6/site-packages/nltk/draw/__init__.py\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/cfg.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/dispersion.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/draw/cfg.py\', \'lib/python3.6/site-packages/nltk/draw/dispersion.py\', \'lib/python3.6/site-packages/nltk/draw/table.py\', \'lib/python3.6/site-packages/nltk/draw/tree.py\', \'lib/python3.6/site-packages/nltk/draw/util.py\', \'lib/python3.6/site-packages/nltk/featstruct.py\', \'lib/python3.6/site-packages/nltk/grammar.py\', \'lib/python3.6/site-packages/nltk/help.py\', \'lib/python3.6/site-packages/nltk/inference/__init__.py\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/discourse.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/mace.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/nonmonotonic.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/prover9.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/resolution.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/__pycache__/tableau.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/inference/api.py\', \'lib/python3.6/site-packages/nltk/inference/discourse.py\', \'lib/python3.6/site-packages/nltk/inference/mace.py\', \'lib/python3.6/site-packages/nltk/inference/nonmonotonic.py\', \'lib/python3.6/site-packages/nltk/inference/prover9.py\', \'lib/python3.6/site-packages/nltk/inference/resolution.py\', \'lib/python3.6/site-packages/nltk/inference/tableau.py\', \'lib/python3.6/site-packages/nltk/internals.py\', \'lib/python3.6/site-packages/nltk/jsontags.py\', \'lib/python3.6/site-packages/nltk/lazyimport.py\', \'lib/python3.6/site-packages/nltk/metrics/__init__.py\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/agreement.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/aline.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/association.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/confusionmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/distance.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/paice.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/scores.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/segmentation.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/__pycache__/spearman.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/metrics/agreement.py\', \'lib/python3.6/site-packages/nltk/metrics/aline.py\', \'lib/python3.6/site-packages/nltk/metrics/association.py\', \'lib/python3.6/site-packages/nltk/metrics/confusionmatrix.py\', \'lib/python3.6/site-packages/nltk/metrics/distance.py\', \'lib/python3.6/site-packages/nltk/metrics/paice.py\', \'lib/python3.6/site-packages/nltk/metrics/scores.py\', \'lib/python3.6/site-packages/nltk/metrics/segmentation.py\', \'lib/python3.6/site-packages/nltk/metrics/spearman.py\', \'lib/python3.6/site-packages/nltk/misc/__init__.py\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/babelfish.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/chomsky.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/minimalset.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/sort.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/__pycache__/wordfinder.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/misc/babelfish.py\', \'lib/python3.6/site-packages/nltk/misc/chomsky.py\', \'lib/python3.6/site-packages/nltk/misc/minimalset.py\', \'lib/python3.6/site-packages/nltk/misc/sort.py\', \'lib/python3.6/site-packages/nltk/misc/wordfinder.py\', \'lib/python3.6/site-packages/nltk/parse/__init__.py\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/bllip.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/chart.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/dependencygraph.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/earleychart.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/evaluate.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/featurechart.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/generate.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/malt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/nonprojectivedependencyparser.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/pchart.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/projectivedependencyparser.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/recursivedescent.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/shiftreduce.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/stanford.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/transitionparser.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/__pycache__/viterbi.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/parse/api.py\', \'lib/python3.6/site-packages/nltk/parse/bllip.py\', \'lib/python3.6/site-packages/nltk/parse/chart.py\', \'lib/python3.6/site-packages/nltk/parse/dependencygraph.py\', \'lib/python3.6/site-packages/nltk/parse/earleychart.py\', \'lib/python3.6/site-packages/nltk/parse/evaluate.py\', \'lib/python3.6/site-packages/nltk/parse/featurechart.py\', \'lib/python3.6/site-packages/nltk/parse/generate.py\', \'lib/python3.6/site-packages/nltk/parse/malt.py\', \'lib/python3.6/site-packages/nltk/parse/nonprojectivedependencyparser.py\', \'lib/python3.6/site-packages/nltk/parse/pchart.py\', \'lib/python3.6/site-packages/nltk/parse/projectivedependencyparser.py\', \'lib/python3.6/site-packages/nltk/parse/recursivedescent.py\', \'lib/python3.6/site-packages/nltk/parse/shiftreduce.py\', \'lib/python3.6/site-packages/nltk/parse/stanford.py\', \'lib/python3.6/site-packages/nltk/parse/transitionparser.py\', \'lib/python3.6/site-packages/nltk/parse/util.py\', \'lib/python3.6/site-packages/nltk/parse/viterbi.py\', \'lib/python3.6/site-packages/nltk/probability.py\', \'lib/python3.6/site-packages/nltk/sem/__init__.py\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/boxer.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/chat80.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/cooper_storage.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/drt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/drt_glue_demo.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/evaluate.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/glue.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/hole.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/lfg.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/linearlogic.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/logic.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/relextract.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/skolemize.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sem/boxer.py\', \'lib/python3.6/site-packages/nltk/sem/chat80.py\', \'lib/python3.6/site-packages/nltk/sem/cooper_storage.py\', \'lib/python3.6/site-packages/nltk/sem/drt.py\', \'lib/python3.6/site-packages/nltk/sem/drt_glue_demo.py\', \'lib/python3.6/site-packages/nltk/sem/evaluate.py\', \'lib/python3.6/site-packages/nltk/sem/glue.py\', \'lib/python3.6/site-packages/nltk/sem/hole.py\', \'lib/python3.6/site-packages/nltk/sem/lfg.py\', \'lib/python3.6/site-packages/nltk/sem/linearlogic.py\', \'lib/python3.6/site-packages/nltk/sem/logic.py\', \'lib/python3.6/site-packages/nltk/sem/relextract.py\', \'lib/python3.6/site-packages/nltk/sem/skolemize.py\', \'lib/python3.6/site-packages/nltk/sem/util.py\', \'lib/python3.6/site-packages/nltk/sentiment/__init__.py\', \'lib/python3.6/site-packages/nltk/sentiment/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sentiment/__pycache__/sentiment_analyzer.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sentiment/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sentiment/__pycache__/vader.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/sentiment/sentiment_analyzer.py\', \'lib/python3.6/site-packages/nltk/sentiment/util.py\', \'lib/python3.6/site-packages/nltk/sentiment/vader.py\', \'lib/python3.6/site-packages/nltk/stem/__init__.py\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/isri.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/lancaster.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/porter.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/regexp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/rslp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/snowball.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/__pycache__/wordnet.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/stem/api.py\', \'lib/python3.6/site-packages/nltk/stem/isri.py\', \'lib/python3.6/site-packages/nltk/stem/lancaster.py\', \'lib/python3.6/site-packages/nltk/stem/porter.py\', \'lib/python3.6/site-packages/nltk/stem/regexp.py\', \'lib/python3.6/site-packages/nltk/stem/rslp.py\', \'lib/python3.6/site-packages/nltk/stem/snowball.py\', \'lib/python3.6/site-packages/nltk/stem/util.py\', \'lib/python3.6/site-packages/nltk/stem/wordnet.py\', \'lib/python3.6/site-packages/nltk/tag/__init__.py\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/brill.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/brill_trainer.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/crf.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/hmm.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/hunpos.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/mapping.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/perceptron.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/senna.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/sequential.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/stanford.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/tnt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tag/api.py\', \'lib/python3.6/site-packages/nltk/tag/brill.py\', \'lib/python3.6/site-packages/nltk/tag/brill_trainer.py\', \'lib/python3.6/site-packages/nltk/tag/crf.py\', \'lib/python3.6/site-packages/nltk/tag/hmm.py\', \'lib/python3.6/site-packages/nltk/tag/hunpos.py\', \'lib/python3.6/site-packages/nltk/tag/mapping.py\', \'lib/python3.6/site-packages/nltk/tag/perceptron.py\', \'lib/python3.6/site-packages/nltk/tag/senna.py\', \'lib/python3.6/site-packages/nltk/tag/sequential.py\', \'lib/python3.6/site-packages/nltk/tag/stanford.py\', \'lib/python3.6/site-packages/nltk/tag/tnt.py\', \'lib/python3.6/site-packages/nltk/tag/util.py\', \'lib/python3.6/site-packages/nltk/tbl/__init__.py\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/demo.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/erroranalysis.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/feature.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/rule.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tbl/api.py\', \'lib/python3.6/site-packages/nltk/tbl/demo.py\', \'lib/python3.6/site-packages/nltk/tbl/erroranalysis.py\', \'lib/python3.6/site-packages/nltk/tbl/feature.py\', \'lib/python3.6/site-packages/nltk/tbl/rule.py\', \'lib/python3.6/site-packages/nltk/tbl/template.py\', \'lib/python3.6/site-packages/nltk/test/__init__.py\', \'lib/python3.6/site-packages/nltk/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/all.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/childes_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/classify_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/compat_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/corpus_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/discourse_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/doctest_nose_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/gensim_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/gluesemantics_malt_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/inference_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/nonmonotonic_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/portuguese_en_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/probability_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/segmentation_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/semantics_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/translate_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/__pycache__/wordnet_fixt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/all.py\', \'lib/python3.6/site-packages/nltk/test/bleu.doctest\', \'lib/python3.6/site-packages/nltk/test/bnc.doctest\', \'lib/python3.6/site-packages/nltk/test/ccg.doctest\', \'lib/python3.6/site-packages/nltk/test/ccg_semantics.doctest\', \'lib/python3.6/site-packages/nltk/test/chat80.doctest\', \'lib/python3.6/site-packages/nltk/test/childes.doctest\', \'lib/python3.6/site-packages/nltk/test/childes_fixt.py\', \'lib/python3.6/site-packages/nltk/test/chunk.doctest\', \'lib/python3.6/site-packages/nltk/test/classify.doctest\', \'lib/python3.6/site-packages/nltk/test/classify_fixt.py\', \'lib/python3.6/site-packages/nltk/test/collocations.doctest\', \'lib/python3.6/site-packages/nltk/test/compat.doctest\', \'lib/python3.6/site-packages/nltk/test/compat_fixt.py\', \'lib/python3.6/site-packages/nltk/test/corpus.doctest\', \'lib/python3.6/site-packages/nltk/test/corpus_fixt.py\', \'lib/python3.6/site-packages/nltk/test/crubadan.doctest\', \'lib/python3.6/site-packages/nltk/test/data.doctest\', \'lib/python3.6/site-packages/nltk/test/dependency.doctest\', \'lib/python3.6/site-packages/nltk/test/discourse.doctest\', \'lib/python3.6/site-packages/nltk/test/discourse_fixt.py\', \'lib/python3.6/site-packages/nltk/test/doctest_nose_plugin.py\', \'lib/python3.6/site-packages/nltk/test/drt.doctest\', \'lib/python3.6/site-packages/nltk/test/featgram.doctest\', \'lib/python3.6/site-packages/nltk/test/featstruct.doctest\', \'lib/python3.6/site-packages/nltk/test/framenet.doctest\', \'lib/python3.6/site-packages/nltk/test/generate.doctest\', \'lib/python3.6/site-packages/nltk/test/gensim.doctest\', \'lib/python3.6/site-packages/nltk/test/gensim_fixt.py\', \'lib/python3.6/site-packages/nltk/test/gluesemantics.doctest\', \'lib/python3.6/site-packages/nltk/test/gluesemantics_malt.doctest\', \'lib/python3.6/site-packages/nltk/test/gluesemantics_malt_fixt.py\', \'lib/python3.6/site-packages/nltk/test/grammar.doctest\', \'lib/python3.6/site-packages/nltk/test/grammartestsuites.doctest\', \'lib/python3.6/site-packages/nltk/test/index.doctest\', \'lib/python3.6/site-packages/nltk/test/inference.doctest\', \'lib/python3.6/site-packages/nltk/test/inference_fixt.py\', \'lib/python3.6/site-packages/nltk/test/internals.doctest\', \'lib/python3.6/site-packages/nltk/test/japanese.doctest\', \'lib/python3.6/site-packages/nltk/test/logic.doctest\', \'lib/python3.6/site-packages/nltk/test/metrics.doctest\', \'lib/python3.6/site-packages/nltk/test/misc.doctest\', \'lib/python3.6/site-packages/nltk/test/nonmonotonic.doctest\', \'lib/python3.6/site-packages/nltk/test/nonmonotonic_fixt.py\', \'lib/python3.6/site-packages/nltk/test/paice.doctest\', \'lib/python3.6/site-packages/nltk/test/parse.doctest\', \'lib/python3.6/site-packages/nltk/test/portuguese_en.doctest\', \'lib/python3.6/site-packages/nltk/test/portuguese_en_fixt.py\', \'lib/python3.6/site-packages/nltk/test/probability.doctest\', \'lib/python3.6/site-packages/nltk/test/probability_fixt.py\', \'lib/python3.6/site-packages/nltk/test/propbank.doctest\', \'lib/python3.6/site-packages/nltk/test/relextract.doctest\', \'lib/python3.6/site-packages/nltk/test/resolution.doctest\', \'lib/python3.6/site-packages/nltk/test/runtests.py\', \'lib/python3.6/site-packages/nltk/test/segmentation_fixt.py\', \'lib/python3.6/site-packages/nltk/test/semantics.doctest\', \'lib/python3.6/site-packages/nltk/test/semantics_fixt.py\', \'lib/python3.6/site-packages/nltk/test/sentiment.doctest\', \'lib/python3.6/site-packages/nltk/test/sentiwordnet.doctest\', \'lib/python3.6/site-packages/nltk/test/simple.doctest\', \'lib/python3.6/site-packages/nltk/test/stem.doctest\', \'lib/python3.6/site-packages/nltk/test/tag.doctest\', \'lib/python3.6/site-packages/nltk/test/tokenize.doctest\', \'lib/python3.6/site-packages/nltk/test/toolbox.doctest\', \'lib/python3.6/site-packages/nltk/test/translate.doctest\', \'lib/python3.6/site-packages/nltk/test/translate_fixt.py\', \'lib/python3.6/site-packages/nltk/test/tree.doctest\', \'lib/python3.6/site-packages/nltk/test/treeprettyprinter.doctest\', \'lib/python3.6/site-packages/nltk/test/treetransforms.doctest\', \'lib/python3.6/site-packages/nltk/test/unit/__init__.py\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_2x_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_aline.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_classify.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_collocations.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_corpora.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_corpus_views.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_hmm.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_json2csv_corpus.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_naivebayes.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_seekable_unicode_stream_reader.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_senna.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_stem.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_tag.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_tgrep.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_tokenize.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/test_twitter_auth.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/test_2x_compat.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_aline.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_classify.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_collocations.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_corpora.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_corpus_views.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_hmm.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_json2csv_corpus.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_naivebayes.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_seekable_unicode_stream_reader.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_senna.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_stem.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_tag.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_tgrep.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_tokenize.py\', \'lib/python3.6/site-packages/nltk/test/unit/test_twitter_auth.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__init__.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_bleu.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm1.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm2.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm3.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm4.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm5.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_ibm_model.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/__pycache__/test_stack_decoder.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_bleu.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm1.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm2.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm3.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm4.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm5.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_ibm_model.py\', \'lib/python3.6/site-packages/nltk/test/unit/translate/test_stack_decoder.py\', \'lib/python3.6/site-packages/nltk/test/unit/utils.py\', \'lib/python3.6/site-packages/nltk/test/util.doctest\', \'lib/python3.6/site-packages/nltk/test/wordnet.doctest\', \'lib/python3.6/site-packages/nltk/test/wordnet_fixt.py\', \'lib/python3.6/site-packages/nltk/test/wordnet_lch.doctest\', \'lib/python3.6/site-packages/nltk/test/wsd.doctest\', \'lib/python3.6/site-packages/nltk/text.py\', \'lib/python3.6/site-packages/nltk/tgrep.py\', \'lib/python3.6/site-packages/nltk/tokenize/__init__.py\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/casual.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/moses.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/mwe.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/punkt.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/regexp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/repp.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/sexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/simple.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/stanford.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/stanford_segmenter.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/texttiling.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/toktok.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/treebank.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/tokenize/api.py\', \'lib/python3.6/site-packages/nltk/tokenize/casual.py\', \'lib/python3.6/site-packages/nltk/tokenize/moses.py\', \'lib/python3.6/site-packages/nltk/tokenize/mwe.py\', \'lib/python3.6/site-packages/nltk/tokenize/punkt.py\', \'lib/python3.6/site-packages/nltk/tokenize/regexp.py\', \'lib/python3.6/site-packages/nltk/tokenize/repp.py\', \'lib/python3.6/site-packages/nltk/tokenize/sexpr.py\', \'lib/python3.6/site-packages/nltk/tokenize/simple.py\', \'lib/python3.6/site-packages/nltk/tokenize/stanford.py\', \'lib/python3.6/site-packages/nltk/tokenize/stanford_segmenter.py\', \'lib/python3.6/site-packages/nltk/tokenize/texttiling.py\', \'lib/python3.6/site-packages/nltk/tokenize/toktok.py\', \'lib/python3.6/site-packages/nltk/tokenize/treebank.py\', \'lib/python3.6/site-packages/nltk/tokenize/util.py\', \'lib/python3.6/site-packages/nltk/toolbox.py\', \'lib/python3.6/site-packages/nltk/translate/__init__.py\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/bleu_score.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/chrf_score.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/gale_church.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/gdfa.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/gleu_score.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm1.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm2.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm3.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm4.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm5.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ibm_model.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/metrics.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/phrase_based.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/ribes_score.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/__pycache__/stack_decoder.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/translate/api.py\', \'lib/python3.6/site-packages/nltk/translate/bleu_score.py\', \'lib/python3.6/site-packages/nltk/translate/chrf_score.py\', \'lib/python3.6/site-packages/nltk/translate/gale_church.py\', \'lib/python3.6/site-packages/nltk/translate/gdfa.py\', \'lib/python3.6/site-packages/nltk/translate/gleu_score.py\', \'lib/python3.6/site-packages/nltk/translate/ibm1.py\', \'lib/python3.6/site-packages/nltk/translate/ibm2.py\', \'lib/python3.6/site-packages/nltk/translate/ibm3.py\', \'lib/python3.6/site-packages/nltk/translate/ibm4.py\', \'lib/python3.6/site-packages/nltk/translate/ibm5.py\', \'lib/python3.6/site-packages/nltk/translate/ibm_model.py\', \'lib/python3.6/site-packages/nltk/translate/metrics.py\', \'lib/python3.6/site-packages/nltk/translate/phrase_based.py\', \'lib/python3.6/site-packages/nltk/translate/ribes_score.py\', \'lib/python3.6/site-packages/nltk/translate/stack_decoder.py\', \'lib/python3.6/site-packages/nltk/tree.py\', \'lib/python3.6/site-packages/nltk/treeprettyprinter.py\', \'lib/python3.6/site-packages/nltk/treetransforms.py\', \'lib/python3.6/site-packages/nltk/twitter/__init__.py\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/twitter_demo.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/twitterclient.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nltk/twitter/api.py\', \'lib/python3.6/site-packages/nltk/twitter/common.py\', \'lib/python3.6/site-packages/nltk/twitter/twitter_demo.py\', \'lib/python3.6/site-packages/nltk/twitter/twitterclient.py\', \'lib/python3.6/site-packages/nltk/twitter/util.py\', \'lib/python3.6/site-packages/nltk/util.py\', \'lib/python3.6/site-packages/nltk/wsd.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/nltk-3.2.2-py36_0\', type=1))", "defaults::nose-1.3.7-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'LGPL\', md5=\'f4f697f5ad4df9c8fe35357d269718a5\', name=\'nose\', platform=\'linux\', subdir=\'linux-64\', version=\'1.3.7\', fn=\'nose-1.3.7-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/nose-1.3.7-py36_1.tar.bz2\', files=(\'bin/nosetests\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/nose-1.3.7-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/nose/__init__.py\', \'lib/python3.6/site-packages/nose/__main__.py\', \'lib/python3.6/site-packages/nose/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/case.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/commands.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/exc.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/failure.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/importer.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/inspector.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/proxy.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/pyversion.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/result.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/selector.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/suite.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/twistedtools.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/case.py\', \'lib/python3.6/site-packages/nose/commands.py\', \'lib/python3.6/site-packages/nose/config.py\', \'lib/python3.6/site-packages/nose/core.py\', \'lib/python3.6/site-packages/nose/exc.py\', \'lib/python3.6/site-packages/nose/ext/__init__.py\', \'lib/python3.6/site-packages/nose/ext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/ext/__pycache__/dtcompat.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/ext/dtcompat.py\', \'lib/python3.6/site-packages/nose/failure.py\', \'lib/python3.6/site-packages/nose/importer.py\', \'lib/python3.6/site-packages/nose/inspector.py\', \'lib/python3.6/site-packages/nose/loader.py\', \'lib/python3.6/site-packages/nose/plugins/__init__.py\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/allmodules.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/attrib.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/builtin.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/capture.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/collect.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/cover.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/deprecated.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/doctests.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/errorclass.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/failuredetail.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/isolate.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/logcapture.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/multiprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/plugintest.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/prof.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/skip.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/testid.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/__pycache__/xunit.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/plugins/allmodules.py\', \'lib/python3.6/site-packages/nose/plugins/attrib.py\', \'lib/python3.6/site-packages/nose/plugins/base.py\', \'lib/python3.6/site-packages/nose/plugins/builtin.py\', \'lib/python3.6/site-packages/nose/plugins/capture.py\', \'lib/python3.6/site-packages/nose/plugins/collect.py\', \'lib/python3.6/site-packages/nose/plugins/cover.py\', \'lib/python3.6/site-packages/nose/plugins/debug.py\', \'lib/python3.6/site-packages/nose/plugins/deprecated.py\', \'lib/python3.6/site-packages/nose/plugins/doctests.py\', \'lib/python3.6/site-packages/nose/plugins/errorclass.py\', \'lib/python3.6/site-packages/nose/plugins/failuredetail.py\', \'lib/python3.6/site-packages/nose/plugins/isolate.py\', \'lib/python3.6/site-packages/nose/plugins/logcapture.py\', \'lib/python3.6/site-packages/nose/plugins/manager.py\', \'lib/python3.6/site-packages/nose/plugins/multiprocess.py\', \'lib/python3.6/site-packages/nose/plugins/plugintest.py\', \'lib/python3.6/site-packages/nose/plugins/prof.py\', \'lib/python3.6/site-packages/nose/plugins/skip.py\', \'lib/python3.6/site-packages/nose/plugins/testid.py\', \'lib/python3.6/site-packages/nose/plugins/xunit.py\', \'lib/python3.6/site-packages/nose/proxy.py\', \'lib/python3.6/site-packages/nose/pyversion.py\', \'lib/python3.6/site-packages/nose/result.py\', \'lib/python3.6/site-packages/nose/selector.py\', \'lib/python3.6/site-packages/nose/sphinx/__init__.py\', \'lib/python3.6/site-packages/nose/sphinx/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/sphinx/__pycache__/pluginopts.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/sphinx/pluginopts.py\', \'lib/python3.6/site-packages/nose/suite.py\', \'lib/python3.6/site-packages/nose/tools/__init__.py\', \'lib/python3.6/site-packages/nose/tools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/tools/__pycache__/nontrivial.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/tools/__pycache__/trivial.cpython-36.pyc\', \'lib/python3.6/site-packages/nose/tools/nontrivial.py\', \'lib/python3.6/site-packages/nose/tools/trivial.py\', \'lib/python3.6/site-packages/nose/twistedtools.py\', \'lib/python3.6/site-packages/nose/usage.txt\', \'lib/python3.6/site-packages/nose/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/nose-1.3.7-py36_1\', type=1))", "defaults::notebook-4.3.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ipykernel\', \'ipython_genutils\', \'jinja2\', \'jupyter_client\', \'jupyter_core\', \'nbconvert\', \'nbformat\', \'python 3.6*\', \'terminado >=0.3.3\', \'tornado >=4.0\', \'traitlets\'), license=\'BSD\', md5=\'fa84d4fab23e3b4a4dcc138bce128d05\', name=\'notebook\', platform=\'linux\', subdir=\'linux-64\', version=\'4.3.1\', fn=\'notebook-4.3.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/notebook-4.3.1-py36_0.tar.bz2\', files=(\'bin/jupyter-nbextension\', \'bin/jupyter-notebook\', \'bin/jupyter-serverextension\', \'lib/python3.6/site-packages/notebook-4.3.1-py3.6.egg-info\', \'lib/python3.6/site-packages/notebook/__init__.py\', \'lib/python3.6/site-packages/notebook/__main__.py\', \'lib/python3.6/site-packages/notebook/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/_sysinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/allow76.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/jstest.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/nbextensions.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/notebookapp.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/serverextensions.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/_sysinfo.py\', \'lib/python3.6/site-packages/notebook/_version.py\', \'lib/python3.6/site-packages/notebook/allow76.py\', \'lib/python3.6/site-packages/notebook/auth/__init__.py\', \'lib/python3.6/site-packages/notebook/auth/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/__pycache__/login.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/__pycache__/logout.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/__pycache__/security.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/login.py\', \'lib/python3.6/site-packages/notebook/auth/logout.py\', \'lib/python3.6/site-packages/notebook/auth/security.py\', \'lib/python3.6/site-packages/notebook/auth/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/auth/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/tests/__pycache__/test_security.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/auth/tests/test_security.py\', \'lib/python3.6/site-packages/notebook/base/__init__.py\', \'lib/python3.6/site-packages/notebook/base/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/base/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/base/__pycache__/zmqhandlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/base/handlers.py\', \'lib/python3.6/site-packages/notebook/base/zmqhandlers.py\', \'lib/python3.6/site-packages/notebook/edit/__init__.py\', \'lib/python3.6/site-packages/notebook/edit/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/edit/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/edit/handlers.py\', \'lib/python3.6/site-packages/notebook/files/__init__.py\', \'lib/python3.6/site-packages/notebook/files/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/files/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/files/handlers.py\', \'lib/python3.6/site-packages/notebook/jstest.py\', \'lib/python3.6/site-packages/notebook/kernelspecs/__init__.py\', \'lib/python3.6/site-packages/notebook/kernelspecs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/kernelspecs/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/kernelspecs/handlers.py\', \'lib/python3.6/site-packages/notebook/log.py\', \'lib/python3.6/site-packages/notebook/nbconvert/__init__.py\', \'lib/python3.6/site-packages/notebook/nbconvert/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/nbconvert/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/nbconvert/handlers.py\', \'lib/python3.6/site-packages/notebook/nbconvert/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/nbconvert/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/nbconvert/tests/__pycache__/test_nbconvert_handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/nbconvert/tests/test_nbconvert_handlers.py\', \'lib/python3.6/site-packages/notebook/nbextensions.py\', \'lib/python3.6/site-packages/notebook/notebook/__init__.py\', \'lib/python3.6/site-packages/notebook/notebook/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/notebook/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/notebook/handlers.py\', \'lib/python3.6/site-packages/notebook/notebookapp.py\', \'lib/python3.6/site-packages/notebook/serverextensions.py\', \'lib/python3.6/site-packages/notebook/services/__init__.py\', \'lib/python3.6/site-packages/notebook/services/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/api/__init__.py\', \'lib/python3.6/site-packages/notebook/services/api/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/api/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/api/handlers.py\', \'lib/python3.6/site-packages/notebook/services/config/__init__.py\', \'lib/python3.6/site-packages/notebook/services/config/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/config/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/config/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/config/handlers.py\', \'lib/python3.6/site-packages/notebook/services/config/manager.py\', \'lib/python3.6/site-packages/notebook/services/config/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/config/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/config/tests/__pycache__/test_config_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/config/tests/test_config_api.py\', \'lib/python3.6/site-packages/notebook/services/contents/__init__.py\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/checkpoints.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/filecheckpoints.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/fileio.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/filemanager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/__pycache__/tz.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/checkpoints.py\', \'lib/python3.6/site-packages/notebook/services/contents/filecheckpoints.py\', \'lib/python3.6/site-packages/notebook/services/contents/fileio.py\', \'lib/python3.6/site-packages/notebook/services/contents/filemanager.py\', \'lib/python3.6/site-packages/notebook/services/contents/handlers.py\', \'lib/python3.6/site-packages/notebook/services/contents/manager.py\', \'lib/python3.6/site-packages/notebook/services/contents/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/contents/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/tests/__pycache__/test_contents_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/tests/__pycache__/test_fileio.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/tests/__pycache__/test_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/contents/tests/test_contents_api.py\', \'lib/python3.6/site-packages/notebook/services/contents/tests/test_fileio.py\', \'lib/python3.6/site-packages/notebook/services/contents/tests/test_manager.py\', \'lib/python3.6/site-packages/notebook/services/contents/tz.py\', \'lib/python3.6/site-packages/notebook/services/kernels/__init__.py\', \'lib/python3.6/site-packages/notebook/services/kernels/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernels/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernels/__pycache__/kernelmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernels/handlers.py\', \'lib/python3.6/site-packages/notebook/services/kernels/kernelmanager.py\', \'lib/python3.6/site-packages/notebook/services/kernels/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/kernels/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernels/tests/__pycache__/test_kernels_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernels/tests/test_kernels_api.py\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/__init__.py\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/handlers.py\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/tests/__pycache__/test_kernelspecs_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/kernelspecs/tests/test_kernelspecs_api.py\', \'lib/python3.6/site-packages/notebook/services/nbconvert/__init__.py\', \'lib/python3.6/site-packages/notebook/services/nbconvert/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/nbconvert/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/nbconvert/handlers.py\', \'lib/python3.6/site-packages/notebook/services/nbconvert/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/nbconvert/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/nbconvert/tests/__pycache__/test_nbconvert_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/nbconvert/tests/test_nbconvert_api.py\', \'lib/python3.6/site-packages/notebook/services/security/__init__.py\', \'lib/python3.6/site-packages/notebook/services/security/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/security/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/security/handlers.py\', \'lib/python3.6/site-packages/notebook/services/sessions/__init__.py\', \'lib/python3.6/site-packages/notebook/services/sessions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/__pycache__/sessionmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/handlers.py\', \'lib/python3.6/site-packages/notebook/services/sessions/sessionmanager.py\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/__pycache__/test_sessionmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/__pycache__/test_sessions_api.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/test_sessionmanager.py\', \'lib/python3.6/site-packages/notebook/services/sessions/tests/test_sessions_api.py\', \'lib/python3.6/site-packages/notebook/static/auth/css/override.css\', \'lib/python3.6/site-packages/notebook/static/auth/js/loginmain.js\', \'lib/python3.6/site-packages/notebook/static/auth/js/loginwidget.js\', \'lib/python3.6/site-packages/notebook/static/auth/js/logoutmain.js\', \'lib/python3.6/site-packages/notebook/static/auth/js/main.js\', \'lib/python3.6/site-packages/notebook/static/auth/js/main.min.js\', \'lib/python3.6/site-packages/notebook/static/auth/js/main.min.js.map\', \'lib/python3.6/site-packages/notebook/static/base/images/favicon.ico\', \'lib/python3.6/site-packages/notebook/static/base/images/logo.png\', \'lib/python3.6/site-packages/notebook/static/base/js/dialog.js\', \'lib/python3.6/site-packages/notebook/static/base/js/events.js\', \'lib/python3.6/site-packages/notebook/static/base/js/keyboard.js\', \'lib/python3.6/site-packages/notebook/static/base/js/namespace.js\', \'lib/python3.6/site-packages/notebook/static/base/js/notificationarea.js\', \'lib/python3.6/site-packages/notebook/static/base/js/notificationwidget.js\', \'lib/python3.6/site-packages/notebook/static/base/js/page.js\', \'lib/python3.6/site-packages/notebook/static/base/js/security.js\', \'lib/python3.6/site-packages/notebook/static/base/js/utils.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/MathJax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/config/Safe.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/config/TeX-AMS_HTML-full.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/AssistiveMML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/CHTML-preview.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/HTML-CSS/handle-floats.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MatchWebFonts.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MathEvents.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MathML/content-mathml.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MathML/mml3.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/MathZoom.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/Safe.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/AMScd.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/AMSmath.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/AMSsymbols.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/HTML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/action.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/autobold.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/autoload-all.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/bbox.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/begingroup.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/boldsymbol.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/cancel.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/color.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/enclose.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/extpfeil.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/mathchoice.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/mediawiki-texvc.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/mhchem.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/newcommand.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/noErrors.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/noUndefined.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/unicode.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/TeX/verb.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/asciimath2jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/fast-preview.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/jsMath2jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/mml2jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/tex2jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/extensions/toMathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Alphabets-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Arrows-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Arrows-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_DoubleStruck-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Fraktur-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Fraktur-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Latin-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Main-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Marks-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Misc-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Monospace-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Normal-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Operators-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Operators-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_SansSerif-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Script-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Shapes-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size1-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size2-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size3-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size4-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Size5-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Symbols-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Symbols-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Bold.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-BoldItalic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Italic.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/fonts/HTML-CSS/STIX-Web/woff/STIXMathJax_Variants-Regular.woff\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/input/TeX/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/input/TeX/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/annotation-xml.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/maction.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/menclose.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mglyph.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mmultiscripts.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/ms.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/mtable.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/autoload/multiline.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/CommonHTML/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/annotation-xml.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/maction.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/menclose.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mglyph.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mmultiscripts.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/ms.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/mtable.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/autoload/multiline.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Alphabets/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Arrows/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/DoubleStruck/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Fraktur/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Latin/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Main/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Marks/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Misc/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Monospace/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Normal/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Operators/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/SansSerif/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Script/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Shapes/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size1/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size2/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size3/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size4/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Size5/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Symbols/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/Variants/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata-extra.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/fonts/STIX-Web/fontdata.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/imageFonts.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/HTML-CSS/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/NativeMML/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/NativeMML/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/PlainSource/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/PlainSource/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/PreviewHTML/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/PreviewHTML/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/annotation-xml.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/maction.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/menclose.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/mglyph.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/mmultiscripts.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/ms.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/mtable.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/autoload/multiline.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/config.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Alphabets/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Arrows/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/DoubleStruck/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Fraktur/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Latin/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Main/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Marks/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Misc/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Monospace/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Normal/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Operators/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/SansSerif/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Script/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Shapes/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size1/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size2/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size3/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size4/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Size5/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Symbols/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Bold/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/BoldItalic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Italic/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/Variants/Regular/Main.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata-extra.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/fonts/STIX-Web/fontdata.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/jax/output/SVG/jax.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ast/ast.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bcc/bcc.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/bg/bg.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/br/br.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ca/ca.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cdo/cdo.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ce/ce.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cs/cs.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/cy/cy.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/da/da.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/de/de.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/en/en.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/eo/eo.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/es/es.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fa/fa.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fi/fi.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/fr/fr.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/gl/gl.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/he/he.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ia/ia.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/it/it.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ja/ja.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/kn/kn.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ko/ko.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lb/lb.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lki/lki.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/lt/lt.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/mk/mk.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/nl/nl.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/oc/oc.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pl/pl.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt-br/pt-br.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/pt/pt.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/qqq/qqq.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/ru/ru.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/scn/scn.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sco/sco.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sl/sl.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/sv/sv.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/tr/tr.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/uk/uk.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/vi/vi.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/FontWarnings.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/HTML-CSS.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/HelpDialog.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/MathML.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/MathMenu.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/TeX.js\', \'lib/python3.6/site-packages/notebook/static/components/MathJax/localization/zh-hans/zh-hans.js\', \'lib/python3.6/site-packages/notebook/static/components/backbone/backbone-min.js\', \'lib/python3.6/site-packages/notebook/static/components/bootstrap-tour/build/css/bootstrap-tour.min.css\', \'lib/python3.6/site-packages/notebook/static/components/bootstrap-tour/build/js/bootstrap-tour.min.js\', \'lib/python3.6/site-packages/notebook/static/components/bootstrap/js/bootstrap.min.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/comment/comment.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/comment/continuecomment.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/dialog/dialog.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/dialog/dialog.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/autorefresh.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/fullscreen.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/fullscreen.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/panel.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/placeholder.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/display/rulers.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/closebrackets.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/closetag.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/continuelist.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/matchbrackets.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/matchtags.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/edit/trailingspace.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/brace-fold.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/comment-fold.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/foldcode.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/foldgutter.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/foldgutter.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/indent-fold.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/markdown-fold.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/fold/xml-fold.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/anyword-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/css-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/html-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/javascript-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/show-hint.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/show-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/sql-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/hint/xml-hint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/coffeescript-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/css-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/html-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/javascript-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/json-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/lint.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/lint/yaml-lint.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/merge/merge.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/merge/merge.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/mode/loadmode.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/mode/multiplex.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/mode/multiplex_test.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/mode/overlay.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/mode/simple.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/runmode/colorize.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/runmode/runmode-standalone.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/runmode/runmode.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/runmode/runmode.node.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/scroll/annotatescrollbar.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/scroll/scrollpastend.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/scroll/simplescrollbars.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/scroll/simplescrollbars.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/jump-to-line.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/match-highlighter.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/matchesonscrollbar.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/matchesonscrollbar.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/search.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/search/searchcursor.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/selection/active-line.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/selection/mark-selection.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/selection/selection-pointer.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/tern/tern.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/tern/tern.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/tern/worker.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/addon/wrap/hardwrap.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/keymap/emacs.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/keymap/sublime.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/keymap/vim.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/lib/codemirror.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/lib/codemirror.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/apl/apl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/asciiarmor/asciiarmor.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/asn.1/asn.1.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/asterisk/asterisk.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/brainfuck/brainfuck.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/clike/clike.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/clojure/clojure.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/cmake/cmake.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/cobol/cobol.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/coffeescript/coffeescript.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/commonlisp/commonlisp.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/crystal/crystal.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/css/css.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/cypher/cypher.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/d/d.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/dart/dart.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/diff/diff.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/django/django.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/dockerfile/dockerfile.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/dtd/dtd.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/dylan/dylan.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ebnf/ebnf.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ecl/ecl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/eiffel/eiffel.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/elm/elm.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/erlang/erlang.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/factor/factor.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/fcl/fcl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/forth/forth.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/fortran/fortran.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/gas/gas.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/gfm/gfm.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/gherkin/gherkin.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/go/go.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/groovy/groovy.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/haml/haml.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/handlebars/handlebars.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/haskell-literate/haskell-literate.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/haskell/haskell.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/haxe/haxe.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/htmlembedded/htmlembedded.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/htmlmixed/htmlmixed.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/http/http.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/idl/idl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/jade/jade.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/javascript/javascript.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/jinja2/jinja2.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/jsx/jsx.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/julia/julia.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/livescript/livescript.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/lua/lua.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/markdown/markdown.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mathematica/mathematica.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mbox/mbox.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/meta.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mirc/mirc.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mllike/mllike.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/modelica/modelica.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mscgen/mscgen.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/mumps/mumps.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/nginx/nginx.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/nsis/nsis.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ntriples/ntriples.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/octave/octave.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/oz/oz.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/pascal/pascal.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/pegjs/pegjs.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/perl/perl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/php/php.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/pig/pig.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/powershell/powershell.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/properties/properties.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/protobuf/protobuf.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/puppet/puppet.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/python/python.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/q/q.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/r/r.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/rpm/rpm.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/rst/rst.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ruby/ruby.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/rust/rust.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/sas/sas.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/sass/sass.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/scheme/scheme.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/shell/shell.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/sieve/sieve.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/slim/slim.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/smalltalk/smalltalk.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/smarty/smarty.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/solr/solr.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/soy/soy.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/sparql/sparql.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/spreadsheet/spreadsheet.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/sql/sql.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/stex/stex.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/stylus/stylus.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/swift/swift.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tcl/tcl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/textile/textile.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tiddlywiki/tiddlywiki.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tiddlywiki/tiddlywiki.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tiki/tiki.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tiki/tiki.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/toml/toml.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/tornado/tornado.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/troff/troff.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ttcn-cfg/ttcn-cfg.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/ttcn/ttcn.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/turtle/turtle.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/twig/twig.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/vb/vb.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/vbscript/vbscript.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/velocity/velocity.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/verilog/verilog.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/vhdl/vhdl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/vue/vue.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/webidl/webidl.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/xml/xml.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/xquery/xquery.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/yacas/yacas.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/yaml/yaml.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/mode/z80/z80.js\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/3024-day.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/3024-night.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/abcdef.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/ambiance-mobile.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/ambiance.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/base16-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/base16-light.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/bespin.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/blackboard.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/cobalt.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/colorforth.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/dracula.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/eclipse.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/elegant.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/erlang-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/hopscotch.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/icecoder.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/isotope.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/lesser-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/liquibyte.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/material.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/mbo.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/mdn-like.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/midnight.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/monokai.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/neat.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/neo.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/night.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/paraiso-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/paraiso-light.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/pastel-on-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/railscasts.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/rubyblue.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/seti.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/solarized.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/the-matrix.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/tomorrow-night-bright.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/tomorrow-night-eighties.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/ttcn.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/twilight.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/vibrant-ink.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/xq-dark.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/xq-light.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/yeti.css\', \'lib/python3.6/site-packages/notebook/static/components/codemirror/theme/zenburn.css\', \'lib/python3.6/site-packages/notebook/static/components/es6-promise/promise.js\', \'lib/python3.6/site-packages/notebook/static/components/es6-promise/promise.min.js\', \'lib/python3.6/site-packages/notebook/static/components/font-awesome/fonts/FontAwesome.otf\', \'lib/python3.6/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.eot\', \'lib/python3.6/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.svg\', \'lib/python3.6/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.ttf\', \'lib/python3.6/site-packages/notebook/static/components/font-awesome/fonts/fontawesome-webfont.woff\', \'lib/python3.6/site-packages/notebook/static/components/google-caja/html-css-sanitizer-minified.js\', \'lib/python3.6/site-packages/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.css\', \'lib/python3.6/site-packages/notebook/static/components/jquery-typeahead/dist/jquery.typeahead.min.js\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/animated-overlay.gif\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_flat_75_ffffff_40x100.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_65_ffffff_1x400.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_dadada_1x400.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_222222_256x240.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_2e83ff_256x240.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_454545_256x240.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_888888_256x240.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/images/ui-icons_cd0a0a_256x240.png\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/themes/smoothness/jquery-ui.min.css\', \'lib/python3.6/site-packages/notebook/static/components/jquery-ui/ui/minified/jquery-ui.min.js\', \'lib/python3.6/site-packages/notebook/static/components/jquery/jquery.min.js\', \'lib/python3.6/site-packages/notebook/static/components/marked/lib/marked.js\', \'lib/python3.6/site-packages/notebook/static/components/moment/min/moment.min.js\', \'lib/python3.6/site-packages/notebook/static/components/moment/moment.js\', \'lib/python3.6/site-packages/notebook/static/components/requirejs/require.js\', \'lib/python3.6/site-packages/notebook/static/components/text-encoding/lib/encoding.js\', \'lib/python3.6/site-packages/notebook/static/components/underscore/underscore-min.js\', \'lib/python3.6/site-packages/notebook/static/components/xterm.js/dist/xterm.css\', \'lib/python3.6/site-packages/notebook/static/components/xterm.js/dist/xterm.js\', \'lib/python3.6/site-packages/notebook/static/custom/custom.css\', \'lib/python3.6/site-packages/notebook/static/custom/custom.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/editor.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/main.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/main.min.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/main.min.js.map\', \'lib/python3.6/site-packages/notebook/static/edit/js/menubar.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/notificationarea.js\', \'lib/python3.6/site-packages/notebook/static/edit/js/savewidget.js\', \'lib/python3.6/site-packages/notebook/static/notebook/css/override.css\', \'lib/python3.6/site-packages/notebook/static/notebook/js/about.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/actions.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/cell.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/celltoolbar.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/celltoolbarpresets/default.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/celltoolbarpresets/example.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/celltoolbarpresets/rawcell.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/celltoolbarpresets/slideshow.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/codecell.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/codemirror-ipython.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/codemirror-ipythongfm.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/commandpalette.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/completer.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/contexthint.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/kernelselector.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/keyboardmanager.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/main.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/main.min.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/main.min.js.map\', \'lib/python3.6/site-packages/notebook/static/notebook/js/maintoolbar.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/mathjaxutils.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/menubar.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/notebook.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/notificationarea.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/outputarea.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/pager.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/quickhelp.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/savewidget.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/scrollmanager.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/searchandreplace.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/textcell.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/toolbar.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/tooltip.js\', \'lib/python3.6/site-packages/notebook/static/notebook/js/tour.js\', \'lib/python3.6/site-packages/notebook/static/services/config.js\', \'lib/python3.6/site-packages/notebook/static/services/contents.js\', \'lib/python3.6/site-packages/notebook/static/services/kernels/comm.js\', \'lib/python3.6/site-packages/notebook/static/services/kernels/kernel.js\', \'lib/python3.6/site-packages/notebook/static/services/kernels/serialize.js\', \'lib/python3.6/site-packages/notebook/static/services/sessions/session.js\', \'lib/python3.6/site-packages/notebook/static/style/ipython.less\', \'lib/python3.6/site-packages/notebook/static/style/ipython.min.css\', \'lib/python3.6/site-packages/notebook/static/style/ipython.min.css.map\', \'lib/python3.6/site-packages/notebook/static/style/style.less\', \'lib/python3.6/site-packages/notebook/static/style/style.min.css\', \'lib/python3.6/site-packages/notebook/static/style/style.min.css.map\', \'lib/python3.6/site-packages/notebook/static/terminal/css/override.css\', \'lib/python3.6/site-packages/notebook/static/terminal/js/main.js\', \'lib/python3.6/site-packages/notebook/static/terminal/js/main.min.js\', \'lib/python3.6/site-packages/notebook/static/terminal/js/main.min.js.map\', \'lib/python3.6/site-packages/notebook/static/terminal/js/terminado.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/kernellist.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/main.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/main.min.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/main.min.js.map\', \'lib/python3.6/site-packages/notebook/static/tree/js/newnotebook.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/notebooklist.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/sessionlist.js\', \'lib/python3.6/site-packages/notebook/static/tree/js/terminallist.js\', \'lib/python3.6/site-packages/notebook/templates/404.html\', \'lib/python3.6/site-packages/notebook/templates/edit.html\', \'lib/python3.6/site-packages/notebook/templates/error.html\', \'lib/python3.6/site-packages/notebook/templates/login.html\', \'lib/python3.6/site-packages/notebook/templates/logout.html\', \'lib/python3.6/site-packages/notebook/templates/notebook.html\', \'lib/python3.6/site-packages/notebook/templates/page.html\', \'lib/python3.6/site-packages/notebook/templates/terminal.html\', \'lib/python3.6/site-packages/notebook/templates/tree.html\', \'lib/python3.6/site-packages/notebook/terminal/__init__.py\', \'lib/python3.6/site-packages/notebook/terminal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/terminal/__pycache__/api_handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/terminal/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/terminal/api_handlers.py\', \'lib/python3.6/site-packages/notebook/terminal/handlers.py\', \'lib/python3.6/site-packages/notebook/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/launchnotebook.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_files.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_nbextensions.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_notebookapp.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_serverextensions.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tests/base/highlight.js\', \'lib/python3.6/site-packages/notebook/tests/base/keyboard.js\', \'lib/python3.6/site-packages/notebook/tests/base/misc.js\', \'lib/python3.6/site-packages/notebook/tests/base/security.js\', \'lib/python3.6/site-packages/notebook/tests/base/utils.js\', \'lib/python3.6/site-packages/notebook/tests/launchnotebook.py\', \'lib/python3.6/site-packages/notebook/tests/mockextension/index.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/buffering.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/clipboard_multiselect.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/deletecell.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/display_image.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_arrows.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_cellinsert.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_cellmode.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_clipboard.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_execute.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_markdown.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/dualmode_merge.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/empty_arrow_keys.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/execute_code.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/execute_selected_cells.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/inject_js.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/interrupt.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/isolated_svg.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/markdown.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/merge_cells_api.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/move_multiselection.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/multiselect.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/multiselect_toggle.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/notifications.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/output.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/prompt_numbers.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/roundtrip.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/safe_append_output.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/save.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/shutdown.js\', \'lib/python3.6/site-packages/notebook/tests/notebook/undelete.js\', \'lib/python3.6/site-packages/notebook/tests/services/kernel.js\', \'lib/python3.6/site-packages/notebook/tests/services/serialize.js\', \'lib/python3.6/site-packages/notebook/tests/services/session.js\', \'lib/python3.6/site-packages/notebook/tests/test_files.py\', \'lib/python3.6/site-packages/notebook/tests/test_nbextensions.py\', \'lib/python3.6/site-packages/notebook/tests/test_notebookapp.py\', \'lib/python3.6/site-packages/notebook/tests/test_paths.py\', \'lib/python3.6/site-packages/notebook/tests/test_serialize.py\', \'lib/python3.6/site-packages/notebook/tests/test_serverextensions.py\', \'lib/python3.6/site-packages/notebook/tests/test_utils.py\', \'lib/python3.6/site-packages/notebook/tests/tree/dashboard_nav.js\', \'lib/python3.6/site-packages/notebook/tests/util.js\', \'lib/python3.6/site-packages/notebook/tree/__init__.py\', \'lib/python3.6/site-packages/notebook/tree/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tree/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tree/handlers.py\', \'lib/python3.6/site-packages/notebook/tree/tests/__init__.py\', \'lib/python3.6/site-packages/notebook/tree/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tree/tests/__pycache__/test_tree_handler.cpython-36.pyc\', \'lib/python3.6/site-packages/notebook/tree/tests/test_tree_handler.py\', \'lib/python3.6/site-packages/notebook/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/notebook-4.3.1-py36_0\', type=1))", "defaults::numba-0.30.1-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'llvmlite 0.15.*\', \'numpy 1.11*\', \'python 3.6*\'), license=\'BSD\', md5=\'995bd09d891d1ff7e9d88160b4f7e769\', name=\'numba\', platform=\'linux\', subdir=\'linux-64\', version=\'0.30.1\', fn=\'numba-0.30.1-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/numba-0.30.1-np111py36_0.tar.bz2\', files=(\'bin/numba\', \'bin/pycc\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/native_libs.txt\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/requires.txt\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/scripts/numba\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/scripts/pycc\', \'lib/python3.6/site-packages/numba-0.30.1-py3.6-linux-x86_64.egg-info/top_level.txt\', \'lib/python3.6/site-packages/numba/__init__.py\', \'lib/python3.6/site-packages/numba/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/_dispatcher.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/_dynfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/_helperlib.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/appdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/bytecode.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/caching.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/callwrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/ccallback.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/cffi_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/cgutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/consts.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/controlflow.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/ctypes_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/dataflow.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/dispatcher.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/dummyarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/extending.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/findlib.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/funcdesc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/generators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/interpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/io_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/ir.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/itanium_mangler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/lowering.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/macro.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/mviewbuf.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/npdatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/numba_entry.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/numpy_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/objmode.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/postproc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/pythonapi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/sigutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/smartarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/special.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/tracing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/typeinfer.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/unittest_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/_arraystruct.h\', \'lib/python3.6/site-packages/numba/_dispatcher.c\', \'lib/python3.6/site-packages/numba/_dispatcher.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/_dispatcher.h\', \'lib/python3.6/site-packages/numba/_dispatcher.py\', \'lib/python3.6/site-packages/numba/_dynfunc.c\', \'lib/python3.6/site-packages/numba/_dynfunc.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/_dynfunc.py\', \'lib/python3.6/site-packages/numba/_dynfuncmod.c\', \'lib/python3.6/site-packages/numba/_hashtable.c\', \'lib/python3.6/site-packages/numba/_hashtable.h\', \'lib/python3.6/site-packages/numba/_helperlib.c\', \'lib/python3.6/site-packages/numba/_helperlib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/_helperlib.py\', \'lib/python3.6/site-packages/numba/_helpermod.c\', \'lib/python3.6/site-packages/numba/_lapack.c\', \'lib/python3.6/site-packages/numba/_math_c99.c\', \'lib/python3.6/site-packages/numba/_math_c99.h\', \'lib/python3.6/site-packages/numba/_npymath_exports.c\', \'lib/python3.6/site-packages/numba/_numba_common.h\', \'lib/python3.6/site-packages/numba/_pymodule.h\', \'lib/python3.6/site-packages/numba/_random.c\', \'lib/python3.6/site-packages/numba/_typeof.c\', \'lib/python3.6/site-packages/numba/_typeof.h\', \'lib/python3.6/site-packages/numba/_version.py\', \'lib/python3.6/site-packages/numba/analysis.py\', \'lib/python3.6/site-packages/numba/annotations/__init__.py\', \'lib/python3.6/site-packages/numba/annotations/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/annotations/__pycache__/type_annotations.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/annotations/template.html\', \'lib/python3.6/site-packages/numba/annotations/type_annotations.py\', \'lib/python3.6/site-packages/numba/appdirs.py\', \'lib/python3.6/site-packages/numba/bytecode.py\', \'lib/python3.6/site-packages/numba/caching.py\', \'lib/python3.6/site-packages/numba/callwrapper.py\', \'lib/python3.6/site-packages/numba/capsulethunk.h\', \'lib/python3.6/site-packages/numba/ccallback.py\', \'lib/python3.6/site-packages/numba/cffi_support.py\', \'lib/python3.6/site-packages/numba/cgutils.py\', \'lib/python3.6/site-packages/numba/compiler.py\', \'lib/python3.6/site-packages/numba/config.py\', \'lib/python3.6/site-packages/numba/consts.py\', \'lib/python3.6/site-packages/numba/controlflow.py\', \'lib/python3.6/site-packages/numba/ctypes_support.py\', \'lib/python3.6/site-packages/numba/cuda/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/cudadecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/cudaimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/cudamath.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/descriptor.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/device_init.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/dispatcher.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/initialize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/libdevice.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/nvvmutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/printimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/simulator_init.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/stubs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/target.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/__pycache__/vectorizers.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/api.py\', \'lib/python3.6/site-packages/numba/cuda/codegen.py\', \'lib/python3.6/site-packages/numba/cuda/compiler.py\', \'lib/python3.6/site-packages/numba/cuda/cudadecl.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/autotune.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/devicearray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/devices.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/drvapi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/libs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/ndarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/__pycache__/nvvm.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/autotune.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/devicearray.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/devices.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/driver.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/drvapi.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/enums.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/error.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/libs.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/ndarray.py\', \'lib/python3.6/site-packages/numba/cuda/cudadrv/nvvm.py\', \'lib/python3.6/site-packages/numba/cuda/cudaimpl.py\', \'lib/python3.6/site-packages/numba/cuda/cudamath.py\', \'lib/python3.6/site-packages/numba/cuda/decorators.py\', \'lib/python3.6/site-packages/numba/cuda/descriptor.py\', \'lib/python3.6/site-packages/numba/cuda/device_init.py\', \'lib/python3.6/site-packages/numba/cuda/dispatcher.py\', \'lib/python3.6/site-packages/numba/cuda/errors.py\', \'lib/python3.6/site-packages/numba/cuda/initialize.py\', \'lib/python3.6/site-packages/numba/cuda/kernels/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/kernels/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/kernels/__pycache__/reduction.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/kernels/__pycache__/transpose.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/kernels/reduction.py\', \'lib/python3.6/site-packages/numba/cuda/kernels/transpose.py\', \'lib/python3.6/site-packages/numba/cuda/libdevice.py\', \'lib/python3.6/site-packages/numba/cuda/nvvmutils.py\', \'lib/python3.6/site-packages/numba/cuda/printimpl.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/array.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/kernelapi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/__pycache__/reduction.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/api.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/array.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/compiler.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/devicearray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/devices.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/drvapi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/__pycache__/nvvm.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/devicearray.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/devices.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/driver.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/drvapi.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/cudadrv/nvvm.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/kernel.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/kernelapi.py\', \'lib/python3.6/site-packages/numba/cuda/simulator/reduction.py\', \'lib/python3.6/site-packages/numba/cuda/simulator_init.py\', \'lib/python3.6/site-packages/numba/cuda/stubs.py\', \'lib/python3.6/site-packages/numba/cuda/target.py\', \'lib/python3.6/site-packages/numba/cuda/testing.py\', \'lib/python3.6/site-packages/numba/cuda/tests/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_array_attr.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_context_stack.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_array_slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_auto_context.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_devicerecord.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_memory.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_cuda_ndarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_deallocations.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_detect.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_events.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_host_alloc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_inline_ptx.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_linker.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_nvvm_driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_pinned.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_profiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_reset_device.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/__pycache__/test_select_device.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/data/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/data/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/data/jitlink.ptx\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_array_attr.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_context_stack.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_array_slicing.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_auto_context.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_devicerecord.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_driver.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_memory.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_cuda_ndarray.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_deallocations.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_detect.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_events.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_host_alloc.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_inline_ptx.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_linker.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_nvvm_driver.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_pinned.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_profiler.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_reset_device.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudadrv/test_select_device.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_alignment.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_array.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_array_args.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_array_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_atomics.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_autojit.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_blackscholes.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_boolean.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_casting.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_complex_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_const_string.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_constmem.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_cuda_autojit.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_debug.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_device_func.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_errors.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_exception.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_fastmath.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_forall.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_freevar.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_globals.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_gufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_gufunc_scalar.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_gufunc_scheduling.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_idiv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_inspect.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_intrinsics.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_lang.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_laplace.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_localmem.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_macro.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_mandel.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_math.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_matmul.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_montecarlo.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_multigpu.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_multiprocessing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_multithreads.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_nondet.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_operator.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_powi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_print.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_py2_div_issue.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_record_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_reduction.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_sm.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_smart_array.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_sync.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_transpose.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_userexc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_vectorize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_vectorize_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_vectorize_decor.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_vectorize_device.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/__pycache__/test_vectorize_scalar_arg.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_alignment.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_array.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_array_args.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_array_methods.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_atomics.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_autojit.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_blackscholes.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_boolean.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_casting.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_complex.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_complex_kernel.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_const_string.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_constmem.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_cuda_autojit.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_debug.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_device_func.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_errors.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_exception.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_fastmath.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_forall.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_freevar.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_globals.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_gufunc.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_gufunc_scalar.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_gufunc_scheduling.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_idiv.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_inspect.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_intrinsics.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_lang.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_laplace.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_localmem.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_macro.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_mandel.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_math.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_matmul.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_montecarlo.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_multigpu.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_multiprocessing.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_multithreads.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_nondet.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_operator.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_powi.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_print.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_py2_div_issue.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_record_dtype.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_reduction.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_serialize.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_slicing.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_sm.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_smart_array.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_sync.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_transpose.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_userexc.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_vectorize.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_vectorize_complex.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_vectorize_decor.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_vectorize_device.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudapy/test_vectorize_scalar_arg.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/__pycache__/test_cudasim_issues.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/support.py\', \'lib/python3.6/site-packages/numba/cuda/tests/cudasim/test_cudasim_issues.py\', \'lib/python3.6/site-packages/numba/cuda/tests/nocuda/__init__.py\', \'lib/python3.6/site-packages/numba/cuda/tests/nocuda/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/nocuda/__pycache__/test_nvvm.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/cuda/tests/nocuda/test_nvvm.py\', \'lib/python3.6/site-packages/numba/cuda/vectorizers.py\', \'lib/python3.6/site-packages/numba/dataflow.py\', \'lib/python3.6/site-packages/numba/datamodel/__init__.py\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/packer.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/datamodel/manager.py\', \'lib/python3.6/site-packages/numba/datamodel/models.py\', \'lib/python3.6/site-packages/numba/datamodel/packer.py\', \'lib/python3.6/site-packages/numba/datamodel/registry.py\', \'lib/python3.6/site-packages/numba/datamodel/testing.py\', \'lib/python3.6/site-packages/numba/decorators.py\', \'lib/python3.6/site-packages/numba/dispatcher.py\', \'lib/python3.6/site-packages/numba/dummyarray.py\', \'lib/python3.6/site-packages/numba/errors.py\', \'lib/python3.6/site-packages/numba/extending.py\', \'lib/python3.6/site-packages/numba/findlib.py\', \'lib/python3.6/site-packages/numba/funcdesc.py\', \'lib/python3.6/site-packages/numba/generators.py\', \'lib/python3.6/site-packages/numba/hsa/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/descriptor.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/dispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/hsadecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/hsaimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/initialize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/mathdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/mathimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/stubs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/target.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/__pycache__/vectorizers.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/api.py\', \'lib/python3.6/site-packages/numba/hsa/codegen.py\', \'lib/python3.6/site-packages/numba/hsa/compiler.py\', \'lib/python3.6/site-packages/numba/hsa/decorators.py\', \'lib/python3.6/site-packages/numba/hsa/descriptor.py\', \'lib/python3.6/site-packages/numba/hsa/dispatch.py\', \'lib/python3.6/site-packages/numba/hsa/enums.py\', \'lib/python3.6/site-packages/numba/hsa/hlc/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/hlc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hlc/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hlc/__pycache__/hlc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hlc/__pycache__/libhlc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hlc/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hlc/config.py\', \'lib/python3.6/site-packages/numba/hsa/hlc/hlc.py\', \'lib/python3.6/site-packages/numba/hsa/hlc/libhlc.py\', \'lib/python3.6/site-packages/numba/hsa/hlc/utils.py\', \'lib/python3.6/site-packages/numba/hsa/hsadecl.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/devices.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/drvapi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/devices.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/driver.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/drvapi.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/enums.py\', \'lib/python3.6/site-packages/numba/hsa/hsadrv/error.py\', \'lib/python3.6/site-packages/numba/hsa/hsaimpl.py\', \'lib/python3.6/site-packages/numba/hsa/initialize.py\', \'lib/python3.6/site-packages/numba/hsa/mathdecl.py\', \'lib/python3.6/site-packages/numba/hsa/mathimpl.py\', \'lib/python3.6/site-packages/numba/hsa/stubs.py\', \'lib/python3.6/site-packages/numba/hsa/target.py\', \'lib/python3.6/site-packages/numba/hsa/tests/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/__pycache__/test_driver.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/__pycache__/test_hlc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/test_driver.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/test_hlc.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsadrv/vector_copy.brig\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__init__.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_atomics.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_autojit.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_barrier.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_gufuncbuilding.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_linkage.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_math.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_matmul.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_positioning.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_reduction.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_scan.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_simple.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/__pycache__/test_ufuncbuilding.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_atomics.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_autojit.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_barrier.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_compiler.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_decorator.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_gufuncbuilding.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_linkage.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_math.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_matmul.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_positioning.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_reduction.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_scan.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_simple.py\', \'lib/python3.6/site-packages/numba/hsa/tests/hsapy/test_ufuncbuilding.py\', \'lib/python3.6/site-packages/numba/hsa/vectorizers.py\', \'lib/python3.6/site-packages/numba/interpreter.py\', \'lib/python3.6/site-packages/numba/io_support.py\', \'lib/python3.6/site-packages/numba/ir.py\', \'lib/python3.6/site-packages/numba/itanium_mangler.py\', \'lib/python3.6/site-packages/numba/jitclass/__init__.py\', \'lib/python3.6/site-packages/numba/jitclass/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/jitclass/__pycache__/_box.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/jitclass/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/jitclass/__pycache__/boxing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/jitclass/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/jitclass/_box.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/jitclass/_box.py\', \'lib/python3.6/site-packages/numba/jitclass/base.py\', \'lib/python3.6/site-packages/numba/jitclass/boxing.py\', \'lib/python3.6/site-packages/numba/jitclass/decorators.py\', \'lib/python3.6/site-packages/numba/lowering.py\', \'lib/python3.6/site-packages/numba/macro.py\', \'lib/python3.6/site-packages/numba/mathnames.h\', \'lib/python3.6/site-packages/numba/mviewbuf.c\', \'lib/python3.6/site-packages/numba/mviewbuf.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/mviewbuf.py\', \'lib/python3.6/site-packages/numba/npdatetime.py\', \'lib/python3.6/site-packages/numba/npyufunc/__init__.py\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/_internal.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/array_exprs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/deviceufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/dufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/sigparse.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/ufuncbuilder.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/workqueue.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/npyufunc/_internal.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/npyufunc/_internal.py\', \'lib/python3.6/site-packages/numba/npyufunc/array_exprs.py\', \'lib/python3.6/site-packages/numba/npyufunc/decorators.py\', \'lib/python3.6/site-packages/numba/npyufunc/deviceufunc.py\', \'lib/python3.6/site-packages/numba/npyufunc/dufunc.py\', \'lib/python3.6/site-packages/numba/npyufunc/parallel.py\', \'lib/python3.6/site-packages/numba/npyufunc/sigparse.py\', \'lib/python3.6/site-packages/numba/npyufunc/ufuncbuilder.py\', \'lib/python3.6/site-packages/numba/npyufunc/workqueue.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/npyufunc/workqueue.py\', \'lib/python3.6/site-packages/numba/npyufunc/wrappers.py\', \'lib/python3.6/site-packages/numba/numba_entry.py\', \'lib/python3.6/site-packages/numba/numpy_support.py\', \'lib/python3.6/site-packages/numba/objmode.py\', \'lib/python3.6/site-packages/numba/postproc.py\', \'lib/python3.6/site-packages/numba/pycc/__init__.py\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/cc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/llvm_types.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/__pycache__/platform.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/pycc/cc.py\', \'lib/python3.6/site-packages/numba/pycc/compiler.py\', \'lib/python3.6/site-packages/numba/pycc/decorators.py\', \'lib/python3.6/site-packages/numba/pycc/llvm_types.py\', \'lib/python3.6/site-packages/numba/pycc/modulemixin.c\', \'lib/python3.6/site-packages/numba/pycc/platform.py\', \'lib/python3.6/site-packages/numba/pythonapi.py\', \'lib/python3.6/site-packages/numba/rewrites/__init__.py\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/ir_print.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/macros.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/static_binop.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/static_getitem.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/__pycache__/static_raise.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/rewrites/ir_print.py\', \'lib/python3.6/site-packages/numba/rewrites/macros.py\', \'lib/python3.6/site-packages/numba/rewrites/registry.py\', \'lib/python3.6/site-packages/numba/rewrites/static_binop.py\', \'lib/python3.6/site-packages/numba/rewrites/static_getitem.py\', \'lib/python3.6/site-packages/numba/rewrites/static_raise.py\', \'lib/python3.6/site-packages/numba/runtests.py\', \'lib/python3.6/site-packages/numba/runtime/__init__.py\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/_nrt_python.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/nrt.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/nrtdynmod.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/__pycache__/nrtopt.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/runtime/_nrt_python.c\', \'lib/python3.6/site-packages/numba/runtime/_nrt_python.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/runtime/_nrt_python.py\', \'lib/python3.6/site-packages/numba/runtime/_nrt_pythonmod.c\', \'lib/python3.6/site-packages/numba/runtime/context.py\', \'lib/python3.6/site-packages/numba/runtime/nrt.c\', \'lib/python3.6/site-packages/numba/runtime/nrt.h\', \'lib/python3.6/site-packages/numba/runtime/nrt.py\', \'lib/python3.6/site-packages/numba/runtime/nrtdynmod.py\', \'lib/python3.6/site-packages/numba/runtime/nrtopt.py\', \'lib/python3.6/site-packages/numba/scripts/__init__.py\', \'lib/python3.6/site-packages/numba/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/scripts/__pycache__/generate_lower_listing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/scripts/generate_lower_listing.py\', \'lib/python3.6/site-packages/numba/serialize.py\', \'lib/python3.6/site-packages/numba/servicelib/__init__.py\', \'lib/python3.6/site-packages/numba/servicelib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/servicelib/__pycache__/service.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/servicelib/__pycache__/threadlocal.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/servicelib/service.py\', \'lib/python3.6/site-packages/numba/servicelib/threadlocal.py\', \'lib/python3.6/site-packages/numba/sigutils.py\', \'lib/python3.6/site-packages/numba/six.py\', \'lib/python3.6/site-packages/numba/smartarray.py\', \'lib/python3.6/site-packages/numba/special.py\', \'lib/python3.6/site-packages/numba/targets/__init__.py\', \'lib/python3.6/site-packages/numba/targets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/arraymath.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/arrayobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/boxing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/callconv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/cffiimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/cmathimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/cpu.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/descriptors.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/enumimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/externals.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/imputils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/intrinsics.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/iterators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/listobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/mathimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/npdatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/npyfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/npyimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/operatorimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/optional.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/options.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/printimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/quicksort.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/randomimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/rangeobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/setobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/slicing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/smartarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/tupleobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/__pycache__/ufunc_db.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/targets/arraymath.py\', \'lib/python3.6/site-packages/numba/targets/arrayobj.py\', \'lib/python3.6/site-packages/numba/targets/base.py\', \'lib/python3.6/site-packages/numba/targets/boxing.py\', \'lib/python3.6/site-packages/numba/targets/builtins.py\', \'lib/python3.6/site-packages/numba/targets/callconv.py\', \'lib/python3.6/site-packages/numba/targets/cffiimpl.py\', \'lib/python3.6/site-packages/numba/targets/cmathimpl.py\', \'lib/python3.6/site-packages/numba/targets/codegen.py\', \'lib/python3.6/site-packages/numba/targets/cpu.py\', \'lib/python3.6/site-packages/numba/targets/descriptors.py\', \'lib/python3.6/site-packages/numba/targets/enumimpl.py\', \'lib/python3.6/site-packages/numba/targets/externals.py\', \'lib/python3.6/site-packages/numba/targets/imputils.py\', \'lib/python3.6/site-packages/numba/targets/intrinsics.py\', \'lib/python3.6/site-packages/numba/targets/iterators.py\', \'lib/python3.6/site-packages/numba/targets/linalg.py\', \'lib/python3.6/site-packages/numba/targets/listobj.py\', \'lib/python3.6/site-packages/numba/targets/mathimpl.py\', \'lib/python3.6/site-packages/numba/targets/npdatetime.py\', \'lib/python3.6/site-packages/numba/targets/npyfuncs.py\', \'lib/python3.6/site-packages/numba/targets/npyimpl.py\', \'lib/python3.6/site-packages/numba/targets/numbers.py\', \'lib/python3.6/site-packages/numba/targets/operatorimpl.py\', \'lib/python3.6/site-packages/numba/targets/optional.py\', \'lib/python3.6/site-packages/numba/targets/options.py\', \'lib/python3.6/site-packages/numba/targets/polynomial.py\', \'lib/python3.6/site-packages/numba/targets/printimpl.py\', \'lib/python3.6/site-packages/numba/targets/quicksort.py\', \'lib/python3.6/site-packages/numba/targets/randomimpl.py\', \'lib/python3.6/site-packages/numba/targets/rangeobj.py\', \'lib/python3.6/site-packages/numba/targets/registry.py\', \'lib/python3.6/site-packages/numba/targets/setobj.py\', \'lib/python3.6/site-packages/numba/targets/slicing.py\', \'lib/python3.6/site-packages/numba/targets/smartarray.py\', \'lib/python3.6/site-packages/numba/targets/tupleobj.py\', \'lib/python3.6/site-packages/numba/targets/ufunc_db.py\', \'lib/python3.6/site-packages/numba/testing/__init__.py\', \'lib/python3.6/site-packages/numba/testing/__main__.py\', \'lib/python3.6/site-packages/numba/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/__pycache__/ddt.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/__pycache__/notebook.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/testing/ddt.py\', \'lib/python3.6/site-packages/numba/testing/loader.py\', \'lib/python3.6/site-packages/numba/testing/main.py\', \'lib/python3.6/site-packages/numba/testing/notebook.py\', \'lib/python3.6/site-packages/numba/tests/__init__.py\', \'lib/python3.6/site-packages/numba/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/annotation_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/cache_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/cffi_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/cfunc_cache_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/compile_with_pycc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/complex_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/ctypes_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/enum_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/matmul_usecase.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/pdlike_usecase.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/recursion_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/serialize_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_alignment.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_annotations.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_api.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_attr.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_exprs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_iterators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_manipulation.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_reductions.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_array_return.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_auto_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_blackscholes.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_buffer_protocol.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_casting.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_cffi.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_cfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_cgutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_chained_assign.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_closure.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_compile_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_conversion.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_ctypes.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dataflow.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_datamodel.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_debug.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_del.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_deprecations.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dicts.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dispatcher.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dummyarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dyn_array.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_dyn_func.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_enums.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_extended_arg.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_extending.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_fancy_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_flow_control.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_func_interface.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_func_lifetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_generators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_gil.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_globals.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_import.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_inlining.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_interproc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_intwidth.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_ir.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_itanium_mangler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_iteration.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_jitclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_jitmethod.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_lists.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_llvm_version_check.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_locals.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_looplifting.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_mandelbrot.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_mangling.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_mathlib.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_maxmin.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_multi3.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_nan.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_nested_calls.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_np_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_npdatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_nrt.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_nrt_refct.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_numberctor.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_numconv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_numpy_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_numpyadapt.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_obj_lifetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_object_mode.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_operators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_optional.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_overlap.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_print.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_profiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_pycc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_python_int.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_random.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_range.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_recarray_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_record_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_recursion.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_return_values.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_sets.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_slices.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_smart_array.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_sort.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_storeslice.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_support.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_target_overloadselector.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_tracing.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_tuples.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_typeconv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_typeinfer.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_typenames.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_typeof.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_types.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_typingerror.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_ufuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_unicode_literals.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_unicode_names.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_unpack_sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_vectorization_type_inference.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/test_wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/timsort.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/true_div_usecase.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/__pycache__/usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/annotation_usecases.py\', \'lib/python3.6/site-packages/numba/tests/cache_usecases.py\', \'lib/python3.6/site-packages/numba/tests/cffi_usecases.py\', \'lib/python3.6/site-packages/numba/tests/cfunc_cache_usecases.py\', \'lib/python3.6/site-packages/numba/tests/compile_with_pycc.py\', \'lib/python3.6/site-packages/numba/tests/complex_usecases.py\', \'lib/python3.6/site-packages/numba/tests/ctypes_usecases.py\', \'lib/python3.6/site-packages/numba/tests/enum_usecases.py\', \'lib/python3.6/site-packages/numba/tests/matmul_usecase.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__init__.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/cache_usecases.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_caching.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_dufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_errors.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_gufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_parallel_env_variable.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_parallel_low_work.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_parallel_ufunc_issues.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_ufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_ufuncbuilding.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/__pycache__/test_vectorize_decor.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/npyufunc/cache_usecases.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_caching.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_dufunc.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_errors.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_gufunc.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_parallel_env_variable.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_parallel_low_work.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_parallel_ufunc_issues.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_ufunc.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_ufuncbuilding.py\', \'lib/python3.6/site-packages/numba/tests/npyufunc/test_vectorize_decor.py\', \'lib/python3.6/site-packages/numba/tests/pdlike_usecase.py\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/__pycache__/setup_distutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/__pycache__/setup_setuptools.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/__pycache__/source_module.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/setup_distutils.py\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/setup_setuptools.py\', \'lib/python3.6/site-packages/numba/tests/pycc_distutils_usecase/source_module.py\', \'lib/python3.6/site-packages/numba/tests/recursion_usecases.py\', \'lib/python3.6/site-packages/numba/tests/serialize_usecases.py\', \'lib/python3.6/site-packages/numba/tests/support.py\', \'lib/python3.6/site-packages/numba/tests/test_alignment.py\', \'lib/python3.6/site-packages/numba/tests/test_annotations.py\', \'lib/python3.6/site-packages/numba/tests/test_api.py\', \'lib/python3.6/site-packages/numba/tests/test_array_attr.py\', \'lib/python3.6/site-packages/numba/tests/test_array_constants.py\', \'lib/python3.6/site-packages/numba/tests/test_array_exprs.py\', \'lib/python3.6/site-packages/numba/tests/test_array_iterators.py\', \'lib/python3.6/site-packages/numba/tests/test_array_manipulation.py\', \'lib/python3.6/site-packages/numba/tests/test_array_methods.py\', \'lib/python3.6/site-packages/numba/tests/test_array_reductions.py\', \'lib/python3.6/site-packages/numba/tests/test_array_return.py\', \'lib/python3.6/site-packages/numba/tests/test_auto_constants.py\', \'lib/python3.6/site-packages/numba/tests/test_blackscholes.py\', \'lib/python3.6/site-packages/numba/tests/test_buffer_protocol.py\', \'lib/python3.6/site-packages/numba/tests/test_builtins.py\', \'lib/python3.6/site-packages/numba/tests/test_casting.py\', \'lib/python3.6/site-packages/numba/tests/test_cffi.py\', \'lib/python3.6/site-packages/numba/tests/test_cfunc.py\', \'lib/python3.6/site-packages/numba/tests/test_cgutils.py\', \'lib/python3.6/site-packages/numba/tests/test_chained_assign.py\', \'lib/python3.6/site-packages/numba/tests/test_closure.py\', \'lib/python3.6/site-packages/numba/tests/test_codegen.py\', \'lib/python3.6/site-packages/numba/tests/test_compile_cache.py\', \'lib/python3.6/site-packages/numba/tests/test_complex.py\', \'lib/python3.6/site-packages/numba/tests/test_conversion.py\', \'lib/python3.6/site-packages/numba/tests/test_ctypes.py\', \'lib/python3.6/site-packages/numba/tests/test_dataflow.py\', \'lib/python3.6/site-packages/numba/tests/test_datamodel.py\', \'lib/python3.6/site-packages/numba/tests/test_debug.py\', \'lib/python3.6/site-packages/numba/tests/test_del.py\', \'lib/python3.6/site-packages/numba/tests/test_deprecations.py\', \'lib/python3.6/site-packages/numba/tests/test_dicts.py\', \'lib/python3.6/site-packages/numba/tests/test_dispatcher.py\', \'lib/python3.6/site-packages/numba/tests/test_dummyarray.py\', \'lib/python3.6/site-packages/numba/tests/test_dyn_array.py\', \'lib/python3.6/site-packages/numba/tests/test_dyn_func.py\', \'lib/python3.6/site-packages/numba/tests/test_enums.py\', \'lib/python3.6/site-packages/numba/tests/test_exceptions.py\', \'lib/python3.6/site-packages/numba/tests/test_extended_arg.py\', \'lib/python3.6/site-packages/numba/tests/test_extending.py\', \'lib/python3.6/site-packages/numba/tests/test_fancy_indexing.py\', \'lib/python3.6/site-packages/numba/tests/test_flow_control.py\', \'lib/python3.6/site-packages/numba/tests/test_func_interface.py\', \'lib/python3.6/site-packages/numba/tests/test_func_lifetime.py\', \'lib/python3.6/site-packages/numba/tests/test_generators.py\', \'lib/python3.6/site-packages/numba/tests/test_gil.py\', \'lib/python3.6/site-packages/numba/tests/test_globals.py\', \'lib/python3.6/site-packages/numba/tests/test_hashing.py\', \'lib/python3.6/site-packages/numba/tests/test_import.py\', \'lib/python3.6/site-packages/numba/tests/test_indexing.py\', \'lib/python3.6/site-packages/numba/tests/test_inlining.py\', \'lib/python3.6/site-packages/numba/tests/test_interproc.py\', \'lib/python3.6/site-packages/numba/tests/test_intwidth.py\', \'lib/python3.6/site-packages/numba/tests/test_ir.py\', \'lib/python3.6/site-packages/numba/tests/test_itanium_mangler.py\', \'lib/python3.6/site-packages/numba/tests/test_iteration.py\', \'lib/python3.6/site-packages/numba/tests/test_jitclasses.py\', \'lib/python3.6/site-packages/numba/tests/test_jitmethod.py\', \'lib/python3.6/site-packages/numba/tests/test_linalg.py\', \'lib/python3.6/site-packages/numba/tests/test_lists.py\', \'lib/python3.6/site-packages/numba/tests/test_llvm_version_check.py\', \'lib/python3.6/site-packages/numba/tests/test_locals.py\', \'lib/python3.6/site-packages/numba/tests/test_looplifting.py\', \'lib/python3.6/site-packages/numba/tests/test_mandelbrot.py\', \'lib/python3.6/site-packages/numba/tests/test_mangling.py\', \'lib/python3.6/site-packages/numba/tests/test_mathlib.py\', \'lib/python3.6/site-packages/numba/tests/test_maxmin.py\', \'lib/python3.6/site-packages/numba/tests/test_multi3.py\', \'lib/python3.6/site-packages/numba/tests/test_nan.py\', \'lib/python3.6/site-packages/numba/tests/test_nested_calls.py\', \'lib/python3.6/site-packages/numba/tests/test_np_functions.py\', \'lib/python3.6/site-packages/numba/tests/test_npdatetime.py\', \'lib/python3.6/site-packages/numba/tests/test_nrt.py\', \'lib/python3.6/site-packages/numba/tests/test_nrt_refct.py\', \'lib/python3.6/site-packages/numba/tests/test_numberctor.py\', \'lib/python3.6/site-packages/numba/tests/test_numconv.py\', \'lib/python3.6/site-packages/numba/tests/test_numpy_support.py\', \'lib/python3.6/site-packages/numba/tests/test_numpyadapt.py\', \'lib/python3.6/site-packages/numba/tests/test_obj_lifetime.py\', \'lib/python3.6/site-packages/numba/tests/test_object_mode.py\', \'lib/python3.6/site-packages/numba/tests/test_objects.py\', \'lib/python3.6/site-packages/numba/tests/test_operators.py\', \'lib/python3.6/site-packages/numba/tests/test_optional.py\', \'lib/python3.6/site-packages/numba/tests/test_overlap.py\', \'lib/python3.6/site-packages/numba/tests/test_polynomial.py\', \'lib/python3.6/site-packages/numba/tests/test_print.py\', \'lib/python3.6/site-packages/numba/tests/test_profiler.py\', \'lib/python3.6/site-packages/numba/tests/test_pycc.py\', \'lib/python3.6/site-packages/numba/tests/test_python_int.py\', \'lib/python3.6/site-packages/numba/tests/test_random.py\', \'lib/python3.6/site-packages/numba/tests/test_range.py\', \'lib/python3.6/site-packages/numba/tests/test_recarray_usecases.py\', \'lib/python3.6/site-packages/numba/tests/test_record_dtype.py\', \'lib/python3.6/site-packages/numba/tests/test_recursion.py\', \'lib/python3.6/site-packages/numba/tests/test_return_values.py\', \'lib/python3.6/site-packages/numba/tests/test_runtests.py\', \'lib/python3.6/site-packages/numba/tests/test_serialize.py\', \'lib/python3.6/site-packages/numba/tests/test_sets.py\', \'lib/python3.6/site-packages/numba/tests/test_slices.py\', \'lib/python3.6/site-packages/numba/tests/test_smart_array.py\', \'lib/python3.6/site-packages/numba/tests/test_sort.py\', \'lib/python3.6/site-packages/numba/tests/test_storeslice.py\', \'lib/python3.6/site-packages/numba/tests/test_support.py\', \'lib/python3.6/site-packages/numba/tests/test_target_overloadselector.py\', \'lib/python3.6/site-packages/numba/tests/test_tracing.py\', \'lib/python3.6/site-packages/numba/tests/test_tuples.py\', \'lib/python3.6/site-packages/numba/tests/test_typeconv.py\', \'lib/python3.6/site-packages/numba/tests/test_typeinfer.py\', \'lib/python3.6/site-packages/numba/tests/test_typenames.py\', \'lib/python3.6/site-packages/numba/tests/test_typeof.py\', \'lib/python3.6/site-packages/numba/tests/test_types.py\', \'lib/python3.6/site-packages/numba/tests/test_typingerror.py\', \'lib/python3.6/site-packages/numba/tests/test_ufuncs.py\', \'lib/python3.6/site-packages/numba/tests/test_unicode_literals.py\', \'lib/python3.6/site-packages/numba/tests/test_unicode_names.py\', \'lib/python3.6/site-packages/numba/tests/test_unpack_sequence.py\', \'lib/python3.6/site-packages/numba/tests/test_usecases.py\', \'lib/python3.6/site-packages/numba/tests/test_utils.py\', \'lib/python3.6/site-packages/numba/tests/test_vectorization_type_inference.py\', \'lib/python3.6/site-packages/numba/tests/test_warnings.py\', \'lib/python3.6/site-packages/numba/tests/test_wrapper.py\', \'lib/python3.6/site-packages/numba/tests/timsort.py\', \'lib/python3.6/site-packages/numba/tests/true_div_usecase.py\', \'lib/python3.6/site-packages/numba/tests/usecases.py\', \'lib/python3.6/site-packages/numba/tracing.py\', \'lib/python3.6/site-packages/numba/transforms.py\', \'lib/python3.6/site-packages/numba/typeconv/__init__.py\', \'lib/python3.6/site-packages/numba/typeconv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typeconv/__pycache__/_typeconv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typeconv/__pycache__/castgraph.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typeconv/__pycache__/rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typeconv/__pycache__/typeconv.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typeconv/_typeconv.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numba/typeconv/_typeconv.py\', \'lib/python3.6/site-packages/numba/typeconv/castgraph.py\', \'lib/python3.6/site-packages/numba/typeconv/rules.py\', \'lib/python3.6/site-packages/numba/typeconv/typeconv.py\', \'lib/python3.6/site-packages/numba/typeinfer.py\', \'lib/python3.6/site-packages/numba/types/__init__.py\', \'lib/python3.6/site-packages/numba/types/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/abstract.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/containers.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/iterators.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/npytypes.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/__pycache__/scalars.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/types/abstract.py\', \'lib/python3.6/site-packages/numba/types/common.py\', \'lib/python3.6/site-packages/numba/types/containers.py\', \'lib/python3.6/site-packages/numba/types/functions.py\', \'lib/python3.6/site-packages/numba/types/iterators.py\', \'lib/python3.6/site-packages/numba/types/misc.py\', \'lib/python3.6/site-packages/numba/types/npytypes.py\', \'lib/python3.6/site-packages/numba/types/scalars.py\', \'lib/python3.6/site-packages/numba/typing/__init__.py\', \'lib/python3.6/site-packages/numba/typing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/arraydecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/bufproto.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/cffi_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/cmathdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/ctypes_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/enumdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/listdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/mathdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/npdatetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/npydecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/operatordecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/randomdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/setdecl.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/templates.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/__pycache__/typeof.cpython-36.pyc\', \'lib/python3.6/site-packages/numba/typing/arraydecl.py\', \'lib/python3.6/site-packages/numba/typing/bufproto.py\', \'lib/python3.6/site-packages/numba/typing/builtins.py\', \'lib/python3.6/site-packages/numba/typing/cffi_utils.py\', \'lib/python3.6/site-packages/numba/typing/cmathdecl.py\', \'lib/python3.6/site-packages/numba/typing/collections.py\', \'lib/python3.6/site-packages/numba/typing/context.py\', \'lib/python3.6/site-packages/numba/typing/ctypes_utils.py\', \'lib/python3.6/site-packages/numba/typing/enumdecl.py\', \'lib/python3.6/site-packages/numba/typing/listdecl.py\', \'lib/python3.6/site-packages/numba/typing/mathdecl.py\', \'lib/python3.6/site-packages/numba/typing/npdatetime.py\', \'lib/python3.6/site-packages/numba/typing/npydecl.py\', \'lib/python3.6/site-packages/numba/typing/operatordecl.py\', \'lib/python3.6/site-packages/numba/typing/randomdecl.py\', \'lib/python3.6/site-packages/numba/typing/setdecl.py\', \'lib/python3.6/site-packages/numba/typing/templates.py\', \'lib/python3.6/site-packages/numba/typing/typeof.py\', \'lib/python3.6/site-packages/numba/unittest_support.py\', \'lib/python3.6/site-packages/numba/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/numba-0.30.1-np111py36_0\', type=1))", "defaults::numexpr-2.6.1-np111py36_2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_2\', build_number=2, depends=(\'mkl 2017.0.1\', \'numpy 1.11*\', \'python 3.6*\'), license=\'MIT\', md5=\'a19a501394a330289f8f9b0d815c2ae3\', name=\'numexpr\', platform=\'linux\', subdir=\'linux-64\', version=\'2.6.1\', fn=\'numexpr-2.6.1-np111py36_2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/numexpr-2.6.1-np111py36_2.tar.bz2\', files=(\'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/native_libs.txt\', \'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/numexpr-2.6.1-py3.6-linux-x86_64.egg-info/top_level.txt\', \'lib/python3.6/site-packages/numexpr/__config__.py\', \'lib/python3.6/site-packages/numexpr/__init__.py\', \'lib/python3.6/site-packages/numexpr/__pycache__/__config__.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/cpuinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/expressions.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/interpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/necompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/cpuinfo.py\', \'lib/python3.6/site-packages/numexpr/expressions.py\', \'lib/python3.6/site-packages/numexpr/interpreter.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numexpr/interpreter.py\', \'lib/python3.6/site-packages/numexpr/necompiler.py\', \'lib/python3.6/site-packages/numexpr/tests/__init__.py\', \'lib/python3.6/site-packages/numexpr/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/tests/__pycache__/test_numexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/numexpr/tests/test_numexpr.py\', \'lib/python3.6/site-packages/numexpr/utils.py\', \'lib/python3.6/site-packages/numexpr/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/numexpr-2.6.1-np111py36_2\', type=1))", "defaults::numpy-1.11.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'mkl 2017.0.1\', \'python 3.6*\'), license=\'BSD\', md5=\'d17f8d1ef626c34c6213b2b7d323f362\', name=\'numpy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.11.3\', fn=\'numpy-1.11.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/numpy-1.11.3-py36_0.tar.bz2\', files=(\'bin/f2py\', \'lib/python3.6/site-packages/numpy-1.11.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/numpy-1.11.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/numpy-1.11.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/numpy-1.11.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/numpy/__config__.py\', \'lib/python3.6/site-packages/numpy/__init__.py\', \'lib/python3.6/site-packages/numpy/__pycache__/__config__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/_globals.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/_import_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/add_newdocs.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/ctypeslib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/dual.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/matlib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/_globals.py\', \'lib/python3.6/site-packages/numpy/_import_tools.py\', \'lib/python3.6/site-packages/numpy/add_newdocs.py\', \'lib/python3.6/site-packages/numpy/compat/__init__.py\', \'lib/python3.6/site-packages/numpy/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/compat/__pycache__/_inspect.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/compat/__pycache__/py3k.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/compat/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/compat/_inspect.py\', \'lib/python3.6/site-packages/numpy/compat/py3k.py\', \'lib/python3.6/site-packages/numpy/compat/setup.py\', \'lib/python3.6/site-packages/numpy/core/__init__.py\', \'lib/python3.6/site-packages/numpy/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/_internal.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/arrayprint.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/cversions.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/defchararray.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/fromnumeric.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/function_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/generate_numpy_api.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/getlimits.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/machar.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/memmap.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/numerictypes.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/records.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/setup_common.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/__pycache__/shape_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/_dummy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/_internal.py\', \'lib/python3.6/site-packages/numpy/core/_methods.py\', \'lib/python3.6/site-packages/numpy/core/arrayprint.py\', \'lib/python3.6/site-packages/numpy/core/cversions.py\', \'lib/python3.6/site-packages/numpy/core/defchararray.py\', \'lib/python3.6/site-packages/numpy/core/fromnumeric.py\', \'lib/python3.6/site-packages/numpy/core/function_base.py\', \'lib/python3.6/site-packages/numpy/core/generate_numpy_api.py\', \'lib/python3.6/site-packages/numpy/core/getlimits.py\', \'lib/python3.6/site-packages/numpy/core/include/numpy/__multiarray_api.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/__ufunc_api.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/_neighborhood_iterator_imp.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/_numpyconfig.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/arrayobject.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/arrayscalars.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/halffloat.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/multiarray_api.txt\', \'lib/python3.6/site-packages/numpy/core/include/numpy/ndarrayobject.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/ndarraytypes.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/noprefix.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_1_7_deprecated_api.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_3kcompat.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_common.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_cpu.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_endian.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_interrupt.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_math.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_no_deprecated_api.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/npy_os.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/numpyconfig.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/old_defines.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/oldnumeric.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/ufunc_api.txt\', \'lib/python3.6/site-packages/numpy/core/include/numpy/ufuncobject.h\', \'lib/python3.6/site-packages/numpy/core/include/numpy/utils.h\', \'lib/python3.6/site-packages/numpy/core/info.py\', \'lib/python3.6/site-packages/numpy/core/lib/libnpymath.a\', \'lib/python3.6/site-packages/numpy/core/lib/npy-pkg-config/mlib.ini\', \'lib/python3.6/site-packages/numpy/core/lib/npy-pkg-config/npymath.ini\', \'lib/python3.6/site-packages/numpy/core/machar.py\', \'lib/python3.6/site-packages/numpy/core/memmap.py\', \'lib/python3.6/site-packages/numpy/core/multiarray.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/multiarray_tests.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/numeric.py\', \'lib/python3.6/site-packages/numpy/core/numerictypes.py\', \'lib/python3.6/site-packages/numpy/core/operand_flag_tests.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/records.py\', \'lib/python3.6/site-packages/numpy/core/setup.py\', \'lib/python3.6/site-packages/numpy/core/setup_common.py\', \'lib/python3.6/site-packages/numpy/core/shape_base.py\', \'lib/python3.6/site-packages/numpy/core/struct_ufunc_test.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/test_rational.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_abc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_api.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_arrayprint.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_datetime.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_defchararray.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_deprecations.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_einsum.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_errstate.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_extint128.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_function_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_getlimits.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_half.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_indexerrors.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_item_selection.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_longdouble.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_machar.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_mem_overlap.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_memmap.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_multiarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_nditer.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_numerictypes.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_print.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_records.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_scalarinherit.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_scalarmath.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_scalarprint.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_shape_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_ufunc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_umath.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_umath_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/__pycache__/test_unicode.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/core/tests/data/astype_copy.pkl\', \'lib/python3.6/site-packages/numpy/core/tests/data/recarray_from_file.fits\', \'lib/python3.6/site-packages/numpy/core/tests/test_abc.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_api.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_arrayprint.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_datetime.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_defchararray.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_deprecations.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_dtype.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_einsum.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_errstate.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_extint128.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_function_base.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_getlimits.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_half.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_indexerrors.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_indexing.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_item_selection.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_longdouble.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_machar.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_mem_overlap.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_memmap.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_multiarray.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_nditer.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_numeric.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_numerictypes.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_print.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_records.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_scalarinherit.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_scalarmath.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_scalarprint.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_shape_base.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_ufunc.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_umath.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_umath_complex.py\', \'lib/python3.6/site-packages/numpy/core/tests/test_unicode.py\', \'lib/python3.6/site-packages/numpy/core/umath.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/core/umath_tests.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/ctypeslib.py\', \'lib/python3.6/site-packages/numpy/distutils/__config__.py\', \'lib/python3.6/site-packages/numpy/distutils/__init__.py\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/__config__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/__version__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/ccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/conv_template.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/cpuinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/environment.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/exec_command.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/extension.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/from_template.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/intelccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/lib2def.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/line_endings.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/mingw32ccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/misc_util.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/msvc9compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/msvccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/npy_pkg_config.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/numpy_distribution.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/pathccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/system_info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__pycache__/unixccompiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/__version__.py\', \'lib/python3.6/site-packages/numpy/distutils/ccompiler.py\', \'lib/python3.6/site-packages/numpy/distutils/command/__init__.py\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/autodist.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/bdist_rpm.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build_clib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build_ext.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build_py.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build_scripts.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/build_src.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/config_compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/develop.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/egg_info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/install_clib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/install_data.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/install_headers.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/__pycache__/sdist.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/command/autodist.py\', \'lib/python3.6/site-packages/numpy/distutils/command/bdist_rpm.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build_clib.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build_ext.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build_py.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build_scripts.py\', \'lib/python3.6/site-packages/numpy/distutils/command/build_src.py\', \'lib/python3.6/site-packages/numpy/distutils/command/config.py\', \'lib/python3.6/site-packages/numpy/distutils/command/config_compiler.py\', \'lib/python3.6/site-packages/numpy/distutils/command/develop.py\', \'lib/python3.6/site-packages/numpy/distutils/command/egg_info.py\', \'lib/python3.6/site-packages/numpy/distutils/command/install.py\', \'lib/python3.6/site-packages/numpy/distutils/command/install_clib.py\', \'lib/python3.6/site-packages/numpy/distutils/command/install_data.py\', \'lib/python3.6/site-packages/numpy/distutils/command/install_headers.py\', \'lib/python3.6/site-packages/numpy/distutils/command/sdist.py\', \'lib/python3.6/site-packages/numpy/distutils/compat.py\', \'lib/python3.6/site-packages/numpy/distutils/conv_template.py\', \'lib/python3.6/site-packages/numpy/distutils/core.py\', \'lib/python3.6/site-packages/numpy/distutils/cpuinfo.py\', \'lib/python3.6/site-packages/numpy/distutils/environment.py\', \'lib/python3.6/site-packages/numpy/distutils/exec_command.py\', \'lib/python3.6/site-packages/numpy/distutils/extension.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__init__.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/absoft.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/compaq.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/g95.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/gnu.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/hpux.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/ibm.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/intel.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/lahey.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/mips.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/nag.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/none.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/pathf95.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/pg.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/sun.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/__pycache__/vast.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/absoft.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/compaq.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/g95.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/gnu.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/hpux.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/ibm.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/intel.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/lahey.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/mips.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/nag.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/none.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/pathf95.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/pg.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/sun.py\', \'lib/python3.6/site-packages/numpy/distutils/fcompiler/vast.py\', \'lib/python3.6/site-packages/numpy/distutils/from_template.py\', \'lib/python3.6/site-packages/numpy/distutils/info.py\', \'lib/python3.6/site-packages/numpy/distutils/intelccompiler.py\', \'lib/python3.6/site-packages/numpy/distutils/lib2def.py\', \'lib/python3.6/site-packages/numpy/distutils/line_endings.py\', \'lib/python3.6/site-packages/numpy/distutils/log.py\', \'lib/python3.6/site-packages/numpy/distutils/mingw/gfortran_vs2003_hack.c\', \'lib/python3.6/site-packages/numpy/distutils/mingw32ccompiler.py\', \'lib/python3.6/site-packages/numpy/distutils/misc_util.py\', \'lib/python3.6/site-packages/numpy/distutils/msvc9compiler.py\', \'lib/python3.6/site-packages/numpy/distutils/msvccompiler.py\', \'lib/python3.6/site-packages/numpy/distutils/npy_pkg_config.py\', \'lib/python3.6/site-packages/numpy/distutils/numpy_distribution.py\', \'lib/python3.6/site-packages/numpy/distutils/pathccompiler.py\', \'lib/python3.6/site-packages/numpy/distutils/setup.py\', \'lib/python3.6/site-packages/numpy/distutils/site.cfg\', \'lib/python3.6/site-packages/numpy/distutils/system_info.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_exec_command.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_fcompiler_gnu.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_fcompiler_intel.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_misc_util.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_npy_pkg_config.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/__pycache__/test_system_info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_exec_command.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_fcompiler_gnu.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_fcompiler_intel.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_misc_util.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_npy_pkg_config.py\', \'lib/python3.6/site-packages/numpy/distutils/tests/test_system_info.py\', \'lib/python3.6/site-packages/numpy/distutils/unixccompiler.py\', \'lib/python3.6/site-packages/numpy/doc/__init__.py\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/basics.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/broadcasting.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/byteswapping.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/creation.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/glossary.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/internals.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/structured_arrays.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/subclassing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/__pycache__/ufuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/doc/basics.py\', \'lib/python3.6/site-packages/numpy/doc/broadcasting.py\', \'lib/python3.6/site-packages/numpy/doc/byteswapping.py\', \'lib/python3.6/site-packages/numpy/doc/constants.py\', \'lib/python3.6/site-packages/numpy/doc/creation.py\', \'lib/python3.6/site-packages/numpy/doc/glossary.py\', \'lib/python3.6/site-packages/numpy/doc/indexing.py\', \'lib/python3.6/site-packages/numpy/doc/internals.py\', \'lib/python3.6/site-packages/numpy/doc/misc.py\', \'lib/python3.6/site-packages/numpy/doc/structured_arrays.py\', \'lib/python3.6/site-packages/numpy/doc/subclassing.py\', \'lib/python3.6/site-packages/numpy/doc/ufuncs.py\', \'lib/python3.6/site-packages/numpy/dual.py\', \'lib/python3.6/site-packages/numpy/f2py/__init__.py\', \'lib/python3.6/site-packages/numpy/f2py/__main__.py\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/__version__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/auxfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/capi_maps.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/cb_rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/cfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/common_rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/crackfortran.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/diagnose.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/f2py2e.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/f2py_testing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/f90mod_rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/func2subr.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__pycache__/use_rules.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/__version__.py\', \'lib/python3.6/site-packages/numpy/f2py/auxfuncs.py\', \'lib/python3.6/site-packages/numpy/f2py/capi_maps.py\', \'lib/python3.6/site-packages/numpy/f2py/cb_rules.py\', \'lib/python3.6/site-packages/numpy/f2py/cfuncs.py\', \'lib/python3.6/site-packages/numpy/f2py/common_rules.py\', \'lib/python3.6/site-packages/numpy/f2py/crackfortran.py\', \'lib/python3.6/site-packages/numpy/f2py/diagnose.py\', \'lib/python3.6/site-packages/numpy/f2py/f2py2e.py\', \'lib/python3.6/site-packages/numpy/f2py/f2py_testing.py\', \'lib/python3.6/site-packages/numpy/f2py/f90mod_rules.py\', \'lib/python3.6/site-packages/numpy/f2py/func2subr.py\', \'lib/python3.6/site-packages/numpy/f2py/info.py\', \'lib/python3.6/site-packages/numpy/f2py/rules.py\', \'lib/python3.6/site-packages/numpy/f2py/setup.py\', \'lib/python3.6/site-packages/numpy/f2py/src/fortranobject.c\', \'lib/python3.6/site-packages/numpy/f2py/src/fortranobject.h\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_array_from_pyobj.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_assumed_shape.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_callback.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_kind.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_mixed.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_return_character.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_return_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_return_integer.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_return_logical.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_return_real.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/test_size.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/assumed_shape/foo_free.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/assumed_shape/foo_mod.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/assumed_shape/foo_use.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/assumed_shape/precision.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/kind/foo.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/mixed/foo.f\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/mixed/foo_fixed.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/mixed/foo_free.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/regression/inout.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/src/size/foo.f90\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_array_from_pyobj.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_assumed_shape.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_callback.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_kind.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_mixed.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_return_character.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_return_complex.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_return_integer.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_return_logical.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_return_real.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/test_size.py\', \'lib/python3.6/site-packages/numpy/f2py/tests/util.py\', \'lib/python3.6/site-packages/numpy/f2py/use_rules.py\', \'lib/python3.6/site-packages/numpy/fft/__init__.py\', \'lib/python3.6/site-packages/numpy/fft/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/__pycache__/fftpack.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/__pycache__/helper.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/fftpack.py\', \'lib/python3.6/site-packages/numpy/fft/fftpack_lite.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/fft/helper.py\', \'lib/python3.6/site-packages/numpy/fft/info.py\', \'lib/python3.6/site-packages/numpy/fft/setup.py\', \'lib/python3.6/site-packages/numpy/fft/tests/__pycache__/test_fftpack.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/tests/__pycache__/test_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/fft/tests/test_fftpack.py\', \'lib/python3.6/site-packages/numpy/fft/tests/test_helper.py\', \'lib/python3.6/site-packages/numpy/lib/__init__.py\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/_datasource.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/_iotools.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/arraypad.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/arraysetops.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/arrayterator.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/financial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/format.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/function_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/index_tricks.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/nanfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/npyio.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/recfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/scimath.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/shape_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/stride_tricks.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/twodim_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/type_check.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/ufunclike.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/user_array.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/_datasource.py\', \'lib/python3.6/site-packages/numpy/lib/_iotools.py\', \'lib/python3.6/site-packages/numpy/lib/_version.py\', \'lib/python3.6/site-packages/numpy/lib/arraypad.py\', \'lib/python3.6/site-packages/numpy/lib/arraysetops.py\', \'lib/python3.6/site-packages/numpy/lib/arrayterator.py\', \'lib/python3.6/site-packages/numpy/lib/financial.py\', \'lib/python3.6/site-packages/numpy/lib/format.py\', \'lib/python3.6/site-packages/numpy/lib/function_base.py\', \'lib/python3.6/site-packages/numpy/lib/index_tricks.py\', \'lib/python3.6/site-packages/numpy/lib/info.py\', \'lib/python3.6/site-packages/numpy/lib/nanfunctions.py\', \'lib/python3.6/site-packages/numpy/lib/npyio.py\', \'lib/python3.6/site-packages/numpy/lib/polynomial.py\', \'lib/python3.6/site-packages/numpy/lib/recfunctions.py\', \'lib/python3.6/site-packages/numpy/lib/scimath.py\', \'lib/python3.6/site-packages/numpy/lib/setup.py\', \'lib/python3.6/site-packages/numpy/lib/shape_base.py\', \'lib/python3.6/site-packages/numpy/lib/stride_tricks.py\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test__datasource.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test__iotools.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test__version.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_arraypad.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_arraysetops.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_arrayterator.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_financial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_function_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_index_tricks.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_nanfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_packbits.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_recfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_shape_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_stride_tricks.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_twodim_base.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_type_check.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_ufunclike.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/lib/tests/data/py2-objarr.npy\', \'lib/python3.6/site-packages/numpy/lib/tests/data/py2-objarr.npz\', \'lib/python3.6/site-packages/numpy/lib/tests/data/py3-objarr.npy\', \'lib/python3.6/site-packages/numpy/lib/tests/data/py3-objarr.npz\', \'lib/python3.6/site-packages/numpy/lib/tests/data/python3.npy\', \'lib/python3.6/site-packages/numpy/lib/tests/data/win64python2.npy\', \'lib/python3.6/site-packages/numpy/lib/tests/test__datasource.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test__iotools.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test__version.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_arraypad.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_arraysetops.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_arrayterator.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_financial.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_format.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_function_base.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_index_tricks.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_io.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_nanfunctions.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_packbits.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_polynomial.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_recfunctions.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_shape_base.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_stride_tricks.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_twodim_base.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_type_check.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_ufunclike.py\', \'lib/python3.6/site-packages/numpy/lib/tests/test_utils.py\', \'lib/python3.6/site-packages/numpy/lib/twodim_base.py\', \'lib/python3.6/site-packages/numpy/lib/type_check.py\', \'lib/python3.6/site-packages/numpy/lib/ufunclike.py\', \'lib/python3.6/site-packages/numpy/lib/user_array.py\', \'lib/python3.6/site-packages/numpy/lib/utils.py\', \'lib/python3.6/site-packages/numpy/linalg/__init__.py\', \'lib/python3.6/site-packages/numpy/linalg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/__pycache__/linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/_umath_linalg.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/linalg/info.py\', \'lib/python3.6/site-packages/numpy/linalg/lapack_lite.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/linalg/linalg.py\', \'lib/python3.6/site-packages/numpy/linalg/setup.py\', \'lib/python3.6/site-packages/numpy/linalg/tests/__pycache__/test_build.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/tests/__pycache__/test_deprecations.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/tests/__pycache__/test_linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/linalg/tests/test_build.py\', \'lib/python3.6/site-packages/numpy/linalg/tests/test_deprecations.py\', \'lib/python3.6/site-packages/numpy/linalg/tests/test_linalg.py\', \'lib/python3.6/site-packages/numpy/linalg/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/ma/__init__.py\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/bench.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/extras.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/mrecords.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/testutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/timer_comparison.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/bench.py\', \'lib/python3.6/site-packages/numpy/ma/core.py\', \'lib/python3.6/site-packages/numpy/ma/extras.py\', \'lib/python3.6/site-packages/numpy/ma/mrecords.py\', \'lib/python3.6/site-packages/numpy/ma/setup.py\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_mrecords.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_old_ma.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/__pycache__/test_subclassing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/ma/tests/test_core.py\', \'lib/python3.6/site-packages/numpy/ma/tests/test_extras.py\', \'lib/python3.6/site-packages/numpy/ma/tests/test_mrecords.py\', \'lib/python3.6/site-packages/numpy/ma/tests/test_old_ma.py\', \'lib/python3.6/site-packages/numpy/ma/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/ma/tests/test_subclassing.py\', \'lib/python3.6/site-packages/numpy/ma/testutils.py\', \'lib/python3.6/site-packages/numpy/ma/timer_comparison.py\', \'lib/python3.6/site-packages/numpy/ma/version.py\', \'lib/python3.6/site-packages/numpy/matlib.py\', \'lib/python3.6/site-packages/numpy/matrixlib/__init__.py\', \'lib/python3.6/site-packages/numpy/matrixlib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/__pycache__/defmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/defmatrix.py\', \'lib/python3.6/site-packages/numpy/matrixlib/setup.py\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/__pycache__/test_defmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/__pycache__/test_multiarray.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/__pycache__/test_numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/test_defmatrix.py\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/test_multiarray.py\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/test_numeric.py\', \'lib/python3.6/site-packages/numpy/matrixlib/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/polynomial/__init__.py\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/_polybase.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/chebyshev.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/hermite.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/hermite_e.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/laguerre.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/legendre.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/polyutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/_polybase.py\', \'lib/python3.6/site-packages/numpy/polynomial/chebyshev.py\', \'lib/python3.6/site-packages/numpy/polynomial/hermite.py\', \'lib/python3.6/site-packages/numpy/polynomial/hermite_e.py\', \'lib/python3.6/site-packages/numpy/polynomial/laguerre.py\', \'lib/python3.6/site-packages/numpy/polynomial/legendre.py\', \'lib/python3.6/site-packages/numpy/polynomial/polynomial.py\', \'lib/python3.6/site-packages/numpy/polynomial/polyutils.py\', \'lib/python3.6/site-packages/numpy/polynomial/setup.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_chebyshev.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_classes.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_hermite.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_hermite_e.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_laguerre.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_legendre.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_polynomial.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_polyutils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/__pycache__/test_printing.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_chebyshev.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_classes.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_hermite.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_hermite_e.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_laguerre.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_legendre.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_polynomial.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_polyutils.py\', \'lib/python3.6/site-packages/numpy/polynomial/tests/test_printing.py\', \'lib/python3.6/site-packages/numpy/random/__init__.py\', \'lib/python3.6/site-packages/numpy/random/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/random/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/random/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/random/info.py\', \'lib/python3.6/site-packages/numpy/random/mtrand.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/numpy/random/randomkit.h\', \'lib/python3.6/site-packages/numpy/random/setup.py\', \'lib/python3.6/site-packages/numpy/random/tests/__pycache__/test_random.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/random/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/random/tests/test_random.py\', \'lib/python3.6/site-packages/numpy/random/tests/test_regression.py\', \'lib/python3.6/site-packages/numpy/setup.py\', \'lib/python3.6/site-packages/numpy/testing/__init__.py\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/noseclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/nosetester.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/print_coercion_tables.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/decorators.py\', \'lib/python3.6/site-packages/numpy/testing/noseclasses.py\', \'lib/python3.6/site-packages/numpy/testing/nosetester.py\', \'lib/python3.6/site-packages/numpy/testing/print_coercion_tables.py\', \'lib/python3.6/site-packages/numpy/testing/setup.py\', \'lib/python3.6/site-packages/numpy/testing/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/tests/__pycache__/test_doctesting.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/testing/tests/test_decorators.py\', \'lib/python3.6/site-packages/numpy/testing/tests/test_doctesting.py\', \'lib/python3.6/site-packages/numpy/testing/tests/test_utils.py\', \'lib/python3.6/site-packages/numpy/testing/utils.py\', \'lib/python3.6/site-packages/numpy/tests/__pycache__/test_ctypeslib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/tests/__pycache__/test_matlib.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/tests/__pycache__/test_numpy_version.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/tests/__pycache__/test_reloading.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/tests/__pycache__/test_scripts.cpython-36.pyc\', \'lib/python3.6/site-packages/numpy/tests/test_ctypeslib.py\', \'lib/python3.6/site-packages/numpy/tests/test_matlib.py\', \'lib/python3.6/site-packages/numpy/tests/test_numpy_version.py\', \'lib/python3.6/site-packages/numpy/tests/test_reloading.py\', \'lib/python3.6/site-packages/numpy/tests/test_scripts.py\', \'lib/python3.6/site-packages/numpy/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/numpy-1.11.3-py36_0\', type=1))", "defaults::numpydoc-0.6.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'sphinx\'), license=\'BSD\', md5=\'12b9b79483df5bcedad45213dd8a6810\', name=\'numpydoc\', platform=\'linux\', subdir=\'linux-64\', version=\'0.6.0\', fn=\'numpydoc-0.6.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/numpydoc-0.6.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/numpydoc-0.6.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/numpydoc-0.6.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/numpydoc-0.6.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/numpydoc-0.6.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/numpydoc/__init__.py\', \'lib/python3.6/site-packages/numpydoc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/comment_eater.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/compiler_unparse.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/docscrape.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/docscrape_sphinx.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/linkcode.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/numpydoc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/phantom_import.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/plot_directive.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/__pycache__/traitsdoc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/comment_eater.py\', \'lib/python3.6/site-packages/numpydoc/compiler_unparse.py\', \'lib/python3.6/site-packages/numpydoc/docscrape.py\', \'lib/python3.6/site-packages/numpydoc/docscrape_sphinx.py\', \'lib/python3.6/site-packages/numpydoc/linkcode.py\', \'lib/python3.6/site-packages/numpydoc/numpydoc.py\', \'lib/python3.6/site-packages/numpydoc/phantom_import.py\', \'lib/python3.6/site-packages/numpydoc/plot_directive.py\', \'lib/python3.6/site-packages/numpydoc/tests/__pycache__/test_docscrape.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/tests/__pycache__/test_linkcode.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/tests/__pycache__/test_phantom_import.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/tests/__pycache__/test_plot_directive.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/tests/__pycache__/test_traitsdoc.cpython-36.pyc\', \'lib/python3.6/site-packages/numpydoc/tests/test_docscrape.py\', \'lib/python3.6/site-packages/numpydoc/tests/test_linkcode.py\', \'lib/python3.6/site-packages/numpydoc/tests/test_phantom_import.py\', \'lib/python3.6/site-packages/numpydoc/tests/test_plot_directive.py\', \'lib/python3.6/site-packages/numpydoc/tests/test_traitsdoc.py\', \'lib/python3.6/site-packages/numpydoc/traitsdoc.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/numpydoc-0.6.0-py36_0\', type=1))", "defaults::odo-0.5.0-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'datashape >=0.5\', \'multipledispatch >=0.4.7\', \'networkx\', \'numpy >=1.7\', \'pandas >=0.15\', \'python 3.6*\', \'toolz >=0.7.3\'), license=\'BSD\', md5=\'04c701fd0e60fb511ce12f60432938cb\', name=\'odo\', platform=\'linux\', subdir=\'linux-64\', version=\'0.5.0\', fn=\'odo-0.5.0-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/odo-0.5.0-py36_1.tar.bz2\', files=(\'bin/odo\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/odo-0.5.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/odo/__init__.py\', \'lib/python3.6/site-packages/odo/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/append.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/chunks.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/convert.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/create.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/directory.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/dot.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/drop.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/into.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/numpy_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/odo.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/regex.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/resource.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/temp.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/_version.py\', \'lib/python3.6/site-packages/odo/append.py\', \'lib/python3.6/site-packages/odo/backends/__init__.py\', \'lib/python3.6/site-packages/odo/backends/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/aws.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/bcolz.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/bokeh.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/csv.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/dask.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/h5py.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/hdfs.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/hdfstore.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/mongo.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/sas.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/spark.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/sparksql.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/sql.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/sql_csv.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/ssh.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/aws.py\', \'lib/python3.6/site-packages/odo/backends/bcolz.py\', \'lib/python3.6/site-packages/odo/backends/bokeh.py\', \'lib/python3.6/site-packages/odo/backends/csv.py\', \'lib/python3.6/site-packages/odo/backends/dask.py\', \'lib/python3.6/site-packages/odo/backends/h5py.py\', \'lib/python3.6/site-packages/odo/backends/hdfs.py\', \'lib/python3.6/site-packages/odo/backends/hdfstore.py\', \'lib/python3.6/site-packages/odo/backends/json.py\', \'lib/python3.6/site-packages/odo/backends/mongo.py\', \'lib/python3.6/site-packages/odo/backends/pandas.py\', \'lib/python3.6/site-packages/odo/backends/pytables.py\', \'lib/python3.6/site-packages/odo/backends/sas.py\', \'lib/python3.6/site-packages/odo/backends/spark.py\', \'lib/python3.6/site-packages/odo/backends/sparksql.py\', \'lib/python3.6/site-packages/odo/backends/sql.py\', \'lib/python3.6/site-packages/odo/backends/sql_csv.py\', \'lib/python3.6/site-packages/odo/backends/ssh.py\', \'lib/python3.6/site-packages/odo/backends/tests/__init__.py\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_bcolz.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_bokeh.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_csv.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_dask_array.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_dask_bag.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_dask_dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_h5py.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_hdfs.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_hdfstore.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_json.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_mongo.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_mysql.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_postgres.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_s3.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_s3_redshift.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_sas.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_spark.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_sparksql.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_sql.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_sqlite.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_ssh.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/__pycache__/test_url.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/backends/tests/airline.sas7bdat\', \'lib/python3.6/site-packages/odo/backends/tests/conftest.py\', \'lib/python3.6/site-packages/odo/backends/tests/dummydata.csv\', \'lib/python3.6/site-packages/odo/backends/tests/encoding.csv\', \'lib/python3.6/site-packages/odo/backends/tests/test_bcolz.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_bokeh.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_csv.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_dask_array.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_dask_bag.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_dask_dataframe.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_h5py.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_hdfs.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_hdfstore.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_json.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_mongo.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_mysql.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_pandas.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_postgres.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_pytables.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_s3.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_s3_redshift.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_sas.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_spark.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_sparksql.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_sql.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_sqlite.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_ssh.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_text.py\', \'lib/python3.6/site-packages/odo/backends/tests/test_url.py\', \'lib/python3.6/site-packages/odo/backends/text.py\', \'lib/python3.6/site-packages/odo/backends/url.py\', \'lib/python3.6/site-packages/odo/chunks.py\', \'lib/python3.6/site-packages/odo/compatibility.py\', \'lib/python3.6/site-packages/odo/convert.py\', \'lib/python3.6/site-packages/odo/core.py\', \'lib/python3.6/site-packages/odo/create.py\', \'lib/python3.6/site-packages/odo/directory.py\', \'lib/python3.6/site-packages/odo/dot.py\', \'lib/python3.6/site-packages/odo/drop.py\', \'lib/python3.6/site-packages/odo/into.py\', \'lib/python3.6/site-packages/odo/numpy_dtype.py\', \'lib/python3.6/site-packages/odo/odo.py\', \'lib/python3.6/site-packages/odo/regex.py\', \'lib/python3.6/site-packages/odo/resource.py\', \'lib/python3.6/site-packages/odo/temp.py\', \'lib/python3.6/site-packages/odo/tests/__init__.py\', \'lib/python3.6/site-packages/odo/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_append.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_chunks.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_convert.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_directory.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_into.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_numpy_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_pydot.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_regex.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_resource.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_temp.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/__pycache__/test_version.cpython-36.pyc\', \'lib/python3.6/site-packages/odo/tests/test_append.py\', \'lib/python3.6/site-packages/odo/tests/test_chunks.py\', \'lib/python3.6/site-packages/odo/tests/test_convert.py\', \'lib/python3.6/site-packages/odo/tests/test_core.py\', \'lib/python3.6/site-packages/odo/tests/test_directory.py\', \'lib/python3.6/site-packages/odo/tests/test_into.py\', \'lib/python3.6/site-packages/odo/tests/test_numpy_dtype.py\', \'lib/python3.6/site-packages/odo/tests/test_pydot.py\', \'lib/python3.6/site-packages/odo/tests/test_regex.py\', \'lib/python3.6/site-packages/odo/tests/test_resource.py\', \'lib/python3.6/site-packages/odo/tests/test_temp.py\', \'lib/python3.6/site-packages/odo/tests/test_utils.py\', \'lib/python3.6/site-packages/odo/tests/test_version.py\', \'lib/python3.6/site-packages/odo/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/odo-0.5.0-py36_1\', type=1))", "defaults::openpyxl-2.4.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'et_xmlfile\', \'jdcal\', \'python 3.6*\'), license=\'MIT\', md5=\'d070c4e527e809e0c2cb0ec724127d5d\', name=\'openpyxl\', platform=\'linux\', subdir=\'linux-64\', version=\'2.4.1\', fn=\'openpyxl-2.4.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/openpyxl-2.4.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/openpyxl-2.4.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/openpyxl-2.4.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/openpyxl-2.4.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/openpyxl-2.4.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/openpyxl-2.4.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/openpyxl/.constants.json\', \'lib/python3.6/site-packages/openpyxl/__init__.py\', \'lib/python3.6/site-packages/openpyxl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/__init__.py\', \'lib/python3.6/site-packages/openpyxl/cell/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/__pycache__/cell.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/__pycache__/read_only.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/cell/cell.py\', \'lib/python3.6/site-packages/openpyxl/cell/interface.py\', \'lib/python3.6/site-packages/openpyxl/cell/read_only.py\', \'lib/python3.6/site-packages/openpyxl/cell/text.py\', \'lib/python3.6/site-packages/openpyxl/chart/_3d.py\', \'lib/python3.6/site-packages/openpyxl/chart/__init__.py\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/_3d.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/area_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/axis.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/bar_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/bubble_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/chartspace.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/data_source.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/descriptors.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/error_bar.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/label.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/layout.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/legend.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/line_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/marker.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/picture.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/pie_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/print_settings.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/radar_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/reader.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/reference.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/scatter_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/series.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/series_factory.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/shapes.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/stock_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/surface_chart.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/title.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/trendline.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/__pycache__/updown_bars.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chart/_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/area_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/axis.py\', \'lib/python3.6/site-packages/openpyxl/chart/bar_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/bubble_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/chartspace.py\', \'lib/python3.6/site-packages/openpyxl/chart/data_source.py\', \'lib/python3.6/site-packages/openpyxl/chart/descriptors.py\', \'lib/python3.6/site-packages/openpyxl/chart/error_bar.py\', \'lib/python3.6/site-packages/openpyxl/chart/label.py\', \'lib/python3.6/site-packages/openpyxl/chart/layout.py\', \'lib/python3.6/site-packages/openpyxl/chart/legend.py\', \'lib/python3.6/site-packages/openpyxl/chart/line_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/marker.py\', \'lib/python3.6/site-packages/openpyxl/chart/picture.py\', \'lib/python3.6/site-packages/openpyxl/chart/pie_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/print_settings.py\', \'lib/python3.6/site-packages/openpyxl/chart/radar_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/reader.py\', \'lib/python3.6/site-packages/openpyxl/chart/reference.py\', \'lib/python3.6/site-packages/openpyxl/chart/scatter_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/series.py\', \'lib/python3.6/site-packages/openpyxl/chart/series_factory.py\', \'lib/python3.6/site-packages/openpyxl/chart/shapes.py\', \'lib/python3.6/site-packages/openpyxl/chart/stock_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/surface_chart.py\', \'lib/python3.6/site-packages/openpyxl/chart/text.py\', \'lib/python3.6/site-packages/openpyxl/chart/title.py\', \'lib/python3.6/site-packages/openpyxl/chart/trendline.py\', \'lib/python3.6/site-packages/openpyxl/chart/updown_bars.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__init__.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/chartsheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/custom.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/protection.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/publish.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/relation.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/__pycache__/views.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/chartsheet/chartsheet.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/custom.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/properties.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/protection.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/publish.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/relation.py\', \'lib/python3.6/site-packages/openpyxl/chartsheet/views.py\', \'lib/python3.6/site-packages/openpyxl/comments/__init__.py\', \'lib/python3.6/site-packages/openpyxl/comments/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/comments/__pycache__/author.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/comments/__pycache__/comment_sheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/comments/__pycache__/comments.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/comments/__pycache__/shape_writer.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/comments/author.py\', \'lib/python3.6/site-packages/openpyxl/comments/comment_sheet.py\', \'lib/python3.6/site-packages/openpyxl/comments/comments.py\', \'lib/python3.6/site-packages/openpyxl/comments/shape_writer.py\', \'lib/python3.6/site-packages/openpyxl/compat/__init__.py\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/abc.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/odict.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/singleton.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/compat/abc.py\', \'lib/python3.6/site-packages/openpyxl/compat/numbers.py\', \'lib/python3.6/site-packages/openpyxl/compat/odict.py\', \'lib/python3.6/site-packages/openpyxl/compat/singleton.py\', \'lib/python3.6/site-packages/openpyxl/compat/strings.py\', \'lib/python3.6/site-packages/openpyxl/conftest.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/__init__.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/excel.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/namespace.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/nested.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/serialisable.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/__pycache__/slots.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/descriptors/base.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/excel.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/namespace.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/nested.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/sequence.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/serialisable.py\', \'lib/python3.6/site-packages/openpyxl/descriptors/slots.py\', \'lib/python3.6/site-packages/openpyxl/drawing/__init__.py\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/colors.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/effect.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/fill.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/graphic.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/line.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/shape.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/shapes.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/spreadsheet_drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/drawing/colors.py\', \'lib/python3.6/site-packages/openpyxl/drawing/drawing.py\', \'lib/python3.6/site-packages/openpyxl/drawing/effect.py\', \'lib/python3.6/site-packages/openpyxl/drawing/fill.py\', \'lib/python3.6/site-packages/openpyxl/drawing/graphic.py\', \'lib/python3.6/site-packages/openpyxl/drawing/image.py\', \'lib/python3.6/site-packages/openpyxl/drawing/line.py\', \'lib/python3.6/site-packages/openpyxl/drawing/shape.py\', \'lib/python3.6/site-packages/openpyxl/drawing/shapes.py\', \'lib/python3.6/site-packages/openpyxl/drawing/spreadsheet_drawing.py\', \'lib/python3.6/site-packages/openpyxl/drawing/text.py\', \'lib/python3.6/site-packages/openpyxl/formatting/__init__.py\', \'lib/python3.6/site-packages/openpyxl/formatting/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formatting/__pycache__/formatting.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formatting/__pycache__/rule.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formatting/formatting.py\', \'lib/python3.6/site-packages/openpyxl/formatting/rule.py\', \'lib/python3.6/site-packages/openpyxl/formula/__init__.py\', \'lib/python3.6/site-packages/openpyxl/formula/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formula/__pycache__/tokenizer.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formula/__pycache__/translate.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/formula/tokenizer.py\', \'lib/python3.6/site-packages/openpyxl/formula/translate.py\', \'lib/python3.6/site-packages/openpyxl/packaging/__init__.py\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/extended.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/manifest.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/relationship.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/__pycache__/workbook.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/packaging/core.py\', \'lib/python3.6/site-packages/openpyxl/packaging/extended.py\', \'lib/python3.6/site-packages/openpyxl/packaging/interface.py\', \'lib/python3.6/site-packages/openpyxl/packaging/manifest.py\', \'lib/python3.6/site-packages/openpyxl/packaging/relationship.py\', \'lib/python3.6/site-packages/openpyxl/packaging/workbook.py\', \'lib/python3.6/site-packages/openpyxl/reader/__init__.py\', \'lib/python3.6/site-packages/openpyxl/reader/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/reader/__pycache__/excel.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/reader/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/reader/__pycache__/worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/reader/excel.py\', \'lib/python3.6/site-packages/openpyxl/reader/strings.py\', \'lib/python3.6/site-packages/openpyxl/reader/worksheet.py\', \'lib/python3.6/site-packages/openpyxl/styles/__init__.py\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/alignment.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/borders.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/cell_style.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/colors.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/differential.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/fills.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/fonts.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/named_styles.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/protection.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/proxy.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/styleable.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/stylesheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/styles/alignment.py\', \'lib/python3.6/site-packages/openpyxl/styles/borders.py\', \'lib/python3.6/site-packages/openpyxl/styles/builtins.py\', \'lib/python3.6/site-packages/openpyxl/styles/cell_style.py\', \'lib/python3.6/site-packages/openpyxl/styles/colors.py\', \'lib/python3.6/site-packages/openpyxl/styles/differential.py\', \'lib/python3.6/site-packages/openpyxl/styles/fills.py\', \'lib/python3.6/site-packages/openpyxl/styles/fonts.py\', \'lib/python3.6/site-packages/openpyxl/styles/named_styles.py\', \'lib/python3.6/site-packages/openpyxl/styles/numbers.py\', \'lib/python3.6/site-packages/openpyxl/styles/protection.py\', \'lib/python3.6/site-packages/openpyxl/styles/proxy.py\', \'lib/python3.6/site-packages/openpyxl/styles/styleable.py\', \'lib/python3.6/site-packages/openpyxl/styles/stylesheet.py\', \'lib/python3.6/site-packages/openpyxl/styles/table.py\', \'lib/python3.6/site-packages/openpyxl/utils/__init__.py\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/bound_dictionary.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/cell.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/dataframe.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/datetime.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/escape.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/formulas.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/indexed_list.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/utils/bound_dictionary.py\', \'lib/python3.6/site-packages/openpyxl/utils/cell.py\', \'lib/python3.6/site-packages/openpyxl/utils/dataframe.py\', \'lib/python3.6/site-packages/openpyxl/utils/datetime.py\', \'lib/python3.6/site-packages/openpyxl/utils/escape.py\', \'lib/python3.6/site-packages/openpyxl/utils/exceptions.py\', \'lib/python3.6/site-packages/openpyxl/utils/formulas.py\', \'lib/python3.6/site-packages/openpyxl/utils/indexed_list.py\', \'lib/python3.6/site-packages/openpyxl/utils/units.py\', \'lib/python3.6/site-packages/openpyxl/workbook/__init__.py\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/child.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/defined_name.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/external_reference.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/function_group.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/pivot.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/protection.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/read_only.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/smart_tags.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/views.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/web.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/__pycache__/workbook.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/child.py\', \'lib/python3.6/site-packages/openpyxl/workbook/defined_name.py\', \'lib/python3.6/site-packages/openpyxl/workbook/external_link/__init__.py\', \'lib/python3.6/site-packages/openpyxl/workbook/external_link/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/external_link/__pycache__/external.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/workbook/external_link/external.py\', \'lib/python3.6/site-packages/openpyxl/workbook/external_reference.py\', \'lib/python3.6/site-packages/openpyxl/workbook/function_group.py\', \'lib/python3.6/site-packages/openpyxl/workbook/interface.py\', \'lib/python3.6/site-packages/openpyxl/workbook/parser.py\', \'lib/python3.6/site-packages/openpyxl/workbook/pivot.py\', \'lib/python3.6/site-packages/openpyxl/workbook/properties.py\', \'lib/python3.6/site-packages/openpyxl/workbook/protection.py\', \'lib/python3.6/site-packages/openpyxl/workbook/read_only.py\', \'lib/python3.6/site-packages/openpyxl/workbook/smart_tags.py\', \'lib/python3.6/site-packages/openpyxl/workbook/views.py\', \'lib/python3.6/site-packages/openpyxl/workbook/web.py\', \'lib/python3.6/site-packages/openpyxl/workbook/workbook.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/__init__.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/copier.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/datavalidation.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/dimensions.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/header_footer.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/hyperlink.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/merge.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/page.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/pagebreak.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/pivot.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/protection.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/read_only.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/related.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/views.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/__pycache__/worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/worksheet/copier.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/datavalidation.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/dimensions.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/drawing.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/filters.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/header_footer.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/hyperlink.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/merge.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/page.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/pagebreak.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/pivot.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/properties.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/protection.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/read_only.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/related.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/table.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/views.py\', \'lib/python3.6/site-packages/openpyxl/worksheet/worksheet.py\', \'lib/python3.6/site-packages/openpyxl/writer/__init__.py\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/dump_worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/etree_worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/excel.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/theme.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/workbook.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/__pycache__/write_only.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/writer/dump_worksheet.py\', \'lib/python3.6/site-packages/openpyxl/writer/etree_worksheet.py\', \'lib/python3.6/site-packages/openpyxl/writer/excel.py\', \'lib/python3.6/site-packages/openpyxl/writer/strings.py\', \'lib/python3.6/site-packages/openpyxl/writer/theme.py\', \'lib/python3.6/site-packages/openpyxl/writer/workbook.py\', \'lib/python3.6/site-packages/openpyxl/writer/worksheet.py\', \'lib/python3.6/site-packages/openpyxl/writer/write_only.py\', \'lib/python3.6/site-packages/openpyxl/xml/__init__.py\', \'lib/python3.6/site-packages/openpyxl/xml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/xml/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/xml/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/xml/__pycache__/namespace.cpython-36.pyc\', \'lib/python3.6/site-packages/openpyxl/xml/constants.py\', \'lib/python3.6/site-packages/openpyxl/xml/functions.py\', \'lib/python3.6/site-packages/openpyxl/xml/namespace.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/openpyxl-2.4.1-py36_0\', type=1))", "defaults::openssl-1.0.2k-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'Apache-style\', license_family=\'Apache\', md5=\'e2a279291ffc456028dffb1f240a7b3e\', name=\'openssl\', platform=\'linux\', requires=(), subdir=\'linux-64\', version=\'1.0.2k\', fn=\'openssl-1.0.2k-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/openssl-1.0.2k-0.tar.bz2\', files=(\'bin/.openssl-libcrypto-fix\', \'bin/.openssl-post-link.sh\', \'bin/c_rehash\', \'bin/openssl\', \'include/openssl/aes.h\', \'include/openssl/asn1.h\', \'include/openssl/asn1_mac.h\', \'include/openssl/asn1t.h\', \'include/openssl/bio.h\', \'include/openssl/blowfish.h\', \'include/openssl/bn.h\', \'include/openssl/buffer.h\', \'include/openssl/camellia.h\', \'include/openssl/cast.h\', \'include/openssl/cmac.h\', \'include/openssl/cms.h\', \'include/openssl/comp.h\', \'include/openssl/conf.h\', \'include/openssl/conf_api.h\', \'include/openssl/crypto.h\', \'include/openssl/des.h\', \'include/openssl/des_old.h\', \'include/openssl/dh.h\', \'include/openssl/dsa.h\', \'include/openssl/dso.h\', \'include/openssl/dtls1.h\', \'include/openssl/e_os2.h\', \'include/openssl/ebcdic.h\', \'include/openssl/ec.h\', \'include/openssl/ecdh.h\', \'include/openssl/ecdsa.h\', \'include/openssl/engine.h\', \'include/openssl/err.h\', \'include/openssl/evp.h\', \'include/openssl/hmac.h\', \'include/openssl/idea.h\', \'include/openssl/krb5_asn.h\', \'include/openssl/kssl.h\', \'include/openssl/lhash.h\', \'include/openssl/md4.h\', \'include/openssl/md5.h\', \'include/openssl/mdc2.h\', \'include/openssl/modes.h\', \'include/openssl/obj_mac.h\', \'include/openssl/objects.h\', \'include/openssl/ocsp.h\', \'include/openssl/opensslconf.h\', \'include/openssl/opensslv.h\', \'include/openssl/ossl_typ.h\', \'include/openssl/pem.h\', \'include/openssl/pem2.h\', \'include/openssl/pkcs12.h\', \'include/openssl/pkcs7.h\', \'include/openssl/pqueue.h\', \'include/openssl/rand.h\', \'include/openssl/rc2.h\', \'include/openssl/rc4.h\', \'include/openssl/ripemd.h\', \'include/openssl/rsa.h\', \'include/openssl/safestack.h\', \'include/openssl/seed.h\', \'include/openssl/sha.h\', \'include/openssl/srp.h\', \'include/openssl/srtp.h\', \'include/openssl/ssl.h\', \'include/openssl/ssl2.h\', \'include/openssl/ssl23.h\', \'include/openssl/ssl3.h\', \'include/openssl/stack.h\', \'include/openssl/symhacks.h\', \'include/openssl/tls1.h\', \'include/openssl/ts.h\', \'include/openssl/txt_db.h\', \'include/openssl/ui.h\', \'include/openssl/ui_compat.h\', \'include/openssl/whrlpool.h\', \'include/openssl/x509.h\', \'include/openssl/x509_vfy.h\', \'include/openssl/x509v3.h\', \'lib/engines/lib4758cca.so\', \'lib/engines/libaep.so\', \'lib/engines/libatalla.so\', \'lib/engines/libcapi.so\', \'lib/engines/libchil.so\', \'lib/engines/libcswift.so\', \'lib/engines/libgmp.so\', \'lib/engines/libgost.so\', \'lib/engines/libnuron.so\', \'lib/engines/libpadlock.so\', \'lib/engines/libsureware.so\', \'lib/engines/libubsec.so\', \'lib/libcrypto.a\', \'lib/libcrypto.so\', \'lib/libcrypto.so.1.0.0\', \'lib/libssl.a\', \'lib/libssl.so\', \'lib/libssl.so.1.0.0\', \'lib/pkgconfig/libcrypto.pc\', \'lib/pkgconfig/libssl.pc\', \'lib/pkgconfig/openssl.pc\', \'ssl/cacert.pem\', \'ssl/cert.pem\', \'ssl/misc/CA.pl\', \'ssl/misc/CA.sh\', \'ssl/misc/c_hash\', \'ssl/misc/c_info\', \'ssl/misc/c_issuer\', \'ssl/misc/c_name\', \'ssl/misc/tsget\', \'ssl/openssl.cnf\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/openssl-1.0.2k-0\', type=1))", "defaults::pandas-0.19.2-np111py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_1\', build_number=1, depends=(\'numpy 1.11*\', \'python 3.6*\', \'python-dateutil\', \'pytz\'), license=\'BSD\', md5=\'8973cf235293af07aac24be569d00103\', name=\'pandas\', platform=\'linux\', subdir=\'linux-64\', version=\'0.19.2\', fn=\'pandas-0.19.2-np111py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pandas-0.19.2-np111py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pandas-0.19.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pandas/__init__.py\', \'lib/python3.6/site-packages/pandas/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/_hash.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/_join.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/_period.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/_sparse.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/_testing.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/_version.py\', \'lib/python3.6/site-packages/pandas/_window.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/algos.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/api/__init__.py\', \'lib/python3.6/site-packages/pandas/api/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/api/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/api/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/api/tests/__pycache__/test_api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/api/tests/test_api.py\', \'lib/python3.6/site-packages/pandas/api/types/__init__.py\', \'lib/python3.6/site-packages/pandas/api/types/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/__init__.py\', \'lib/python3.6/site-packages/pandas/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/__pycache__/chainmap.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/__pycache__/chainmap_impl.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/__pycache__/openpyxl_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/__pycache__/pickle_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/chainmap.py\', \'lib/python3.6/site-packages/pandas/compat/chainmap_impl.py\', \'lib/python3.6/site-packages/pandas/compat/numpy/__init__.py\', \'lib/python3.6/site-packages/pandas/compat/numpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/numpy/__pycache__/function.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/compat/numpy/function.py\', \'lib/python3.6/site-packages/pandas/compat/openpyxl_compat.py\', \'lib/python3.6/site-packages/pandas/compat/pickle_compat.py\', \'lib/python3.6/site-packages/pandas/computation/__init__.py\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/align.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/engines.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/eval.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/expr.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/expressions.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/ops.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/__pycache__/scope.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/align.py\', \'lib/python3.6/site-packages/pandas/computation/api.py\', \'lib/python3.6/site-packages/pandas/computation/common.py\', \'lib/python3.6/site-packages/pandas/computation/engines.py\', \'lib/python3.6/site-packages/pandas/computation/eval.py\', \'lib/python3.6/site-packages/pandas/computation/expr.py\', \'lib/python3.6/site-packages/pandas/computation/expressions.py\', \'lib/python3.6/site-packages/pandas/computation/ops.py\', \'lib/python3.6/site-packages/pandas/computation/pytables.py\', \'lib/python3.6/site-packages/pandas/computation/scope.py\', \'lib/python3.6/site-packages/pandas/computation/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/computation/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/tests/__pycache__/test_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/tests/__pycache__/test_eval.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/computation/tests/test_compat.py\', \'lib/python3.6/site-packages/pandas/computation/tests/test_eval.py\', \'lib/python3.6/site-packages/pandas/core/__init__.py\', \'lib/python3.6/site-packages/pandas/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/algorithms.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/config_init.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/datetools.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/generic.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/internals.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/missing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/nanops.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/ops.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/panel.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/panel4d.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/panelnd.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/reshape.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/series.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/sparse.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/__pycache__/window.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/core/algorithms.py\', \'lib/python3.6/site-packages/pandas/core/api.py\', \'lib/python3.6/site-packages/pandas/core/base.py\', \'lib/python3.6/site-packages/pandas/core/categorical.py\', \'lib/python3.6/site-packages/pandas/core/common.py\', \'lib/python3.6/site-packages/pandas/core/config.py\', \'lib/python3.6/site-packages/pandas/core/config_init.py\', \'lib/python3.6/site-packages/pandas/core/datetools.py\', \'lib/python3.6/site-packages/pandas/core/frame.py\', \'lib/python3.6/site-packages/pandas/core/generic.py\', \'lib/python3.6/site-packages/pandas/core/groupby.py\', \'lib/python3.6/site-packages/pandas/core/index.py\', \'lib/python3.6/site-packages/pandas/core/indexing.py\', \'lib/python3.6/site-packages/pandas/core/internals.py\', \'lib/python3.6/site-packages/pandas/core/missing.py\', \'lib/python3.6/site-packages/pandas/core/nanops.py\', \'lib/python3.6/site-packages/pandas/core/ops.py\', \'lib/python3.6/site-packages/pandas/core/panel.py\', \'lib/python3.6/site-packages/pandas/core/panel4d.py\', \'lib/python3.6/site-packages/pandas/core/panelnd.py\', \'lib/python3.6/site-packages/pandas/core/reshape.py\', \'lib/python3.6/site-packages/pandas/core/series.py\', \'lib/python3.6/site-packages/pandas/core/sparse.py\', \'lib/python3.6/site-packages/pandas/core/strings.py\', \'lib/python3.6/site-packages/pandas/core/window.py\', \'lib/python3.6/site-packages/pandas/formats/__init__.py\', \'lib/python3.6/site-packages/pandas/formats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/formats/__pycache__/format.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/formats/__pycache__/printing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/formats/__pycache__/style.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/formats/format.py\', \'lib/python3.6/site-packages/pandas/formats/printing.py\', \'lib/python3.6/site-packages/pandas/formats/style.py\', \'lib/python3.6/site-packages/pandas/hashtable.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/index.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/indexes/__init__.py\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/category.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/multi.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/__pycache__/range.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/indexes/api.py\', \'lib/python3.6/site-packages/pandas/indexes/base.py\', \'lib/python3.6/site-packages/pandas/indexes/category.py\', \'lib/python3.6/site-packages/pandas/indexes/multi.py\', \'lib/python3.6/site-packages/pandas/indexes/numeric.py\', \'lib/python3.6/site-packages/pandas/indexes/range.py\', \'lib/python3.6/site-packages/pandas/info.py\', \'lib/python3.6/site-packages/pandas/io/__init__.py\', \'lib/python3.6/site-packages/pandas/io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/auth.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/clipboard.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/date_converters.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/excel.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/ga.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/gbq.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/packers.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/parsers.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/s3.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/sql.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/stata.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/__pycache__/wb.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/api.py\', \'lib/python3.6/site-packages/pandas/io/auth.py\', \'lib/python3.6/site-packages/pandas/io/clipboard.py\', \'lib/python3.6/site-packages/pandas/io/common.py\', \'lib/python3.6/site-packages/pandas/io/data.py\', \'lib/python3.6/site-packages/pandas/io/date_converters.py\', \'lib/python3.6/site-packages/pandas/io/excel.py\', \'lib/python3.6/site-packages/pandas/io/ga.py\', \'lib/python3.6/site-packages/pandas/io/gbq.py\', \'lib/python3.6/site-packages/pandas/io/html.py\', \'lib/python3.6/site-packages/pandas/io/json.py\', \'lib/python3.6/site-packages/pandas/io/packers.py\', \'lib/python3.6/site-packages/pandas/io/parsers.py\', \'lib/python3.6/site-packages/pandas/io/pickle.py\', \'lib/python3.6/site-packages/pandas/io/pytables.py\', \'lib/python3.6/site-packages/pandas/io/s3.py\', \'lib/python3.6/site-packages/pandas/io/sas/__init__.py\', \'lib/python3.6/site-packages/pandas/io/sas/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/sas/__pycache__/sas7bdat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/sas/__pycache__/sas_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/sas/__pycache__/sas_xport.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/sas/__pycache__/sasreader.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/sas/sas7bdat.py\', \'lib/python3.6/site-packages/pandas/io/sas/sas_constants.py\', \'lib/python3.6/site-packages/pandas/io/sas/sas_xport.py\', \'lib/python3.6/site-packages/pandas/io/sas/saslib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/io/sas/sasreader.py\', \'lib/python3.6/site-packages/pandas/io/sql.py\', \'lib/python3.6/site-packages/pandas/io/stata.py\', \'lib/python3.6/site-packages/pandas/io/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/generate_legacy_storage_files.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_clipboard.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_date_converters.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_excel.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_ga.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_gbq.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_html.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_packers.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_pytables.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_s3.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_sql.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/__pycache__/test_stata.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/data/S4_EDUC1.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/banklist.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/banklist.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank_with_header.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank_with_header.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/blank_with_header.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/categorical_0_14_1.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/categorical_0_15_2.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/computer_sales_page.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/gbq_fake_job.txt\', \'lib/python3.6/site-packages/pandas/io/tests/data/html_encoding/chinese_utf-16.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/html_encoding/chinese_utf-32.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/html_encoding/chinese_utf-8.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/html_encoding/letz_latin1.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/iris.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/datetimetz_object.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/legacy.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/legacy_0.10.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/legacy_table.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/legacy_table_0.11.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/pytables_native.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_hdf/pytables_native2.h5\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.0/0.16.0_x86_64_darwin_2.7.9.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_2.7.10.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_AMD64_windows_3.4.3.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.10.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_2.7.9.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_darwin_3.4.3.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_2.7.10.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.16.2/0.16.2_x86_64_linux_3.4.3.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_AMD64_windows_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_AMD64_windows_3.4.4.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_x86_64_darwin_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_x86_64_darwin_3.4.4.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_x86_64_linux_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.0_x86_64_linux_3.4.4.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.1_AMD64_windows_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.0/0.17.1_AMD64_windows_3.5.1.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_AMD64_windows_3.5.1.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_darwin_3.5.1.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.17.1/0.17.1_x86_64_linux_3.4.4.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_AMD64_windows_3.5.1.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_2.7.11.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.0/0.18.0_x86_64_darwin_3.5.1.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.1/0.18.1_x86_64_darwin_2.7.12.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_msgpack/0.18.1/0.18.1_x86_64_darwin_3.5.2.msgpack\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.10.1/AMD64_windows_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.10.1/x86_64_linux_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.11.0/0.11.0_x86_64_linux_3.3.0.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.11.0/x86_64_linux_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.11.0/x86_64_linux_3.3.0.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.12.0/0.12.0_AMD64_windows_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.12.0/0.12.0_x86_64_linux_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_AMD64_windows_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.6.5.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_i686_linux_3.2.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.5.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_darwin_2.7.6.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_2.7.8.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.13.0/0.13.0_x86_64_linux_3.3.0.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.14.0/0.14.0_x86_64_darwin_2.7.6.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.14.0/0.14.0_x86_64_linux_2.7.8.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.14.1/0.14.1_x86_64_darwin_2.7.12.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.14.1/0.14.1_x86_64_linux_2.7.8.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.15.0/0.15.0_x86_64_darwin_2.7.12.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.15.0/0.15.0_x86_64_linux_2.7.8.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.15.2/0.15.2_x86_64_darwin_2.7.9.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.0/0.16.0_x86_64_darwin_2.7.9.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_2.7.10.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_AMD64_windows_3.4.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.10.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_2.7.9.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_darwin_3.4.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_2.7.10.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.16.2/0.16.2_x86_64_linux_3.4.3.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_AMD64_windows_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_AMD64_windows_3.4.4.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_x86_64_darwin_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_x86_64_darwin_3.4.4.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_x86_64_linux_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.0_x86_64_linux_3.4.4.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.0/0.17.1_AMD64_windows_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.1/0.17.1_AMD64_windows_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.17.1/0.17.1_x86_64_darwin_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_AMD64_windows_3.5.1.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_2.7.11.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.0/0.18.0_x86_64_darwin_3.5.1.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.1/0.18.1_x86_64_darwin_2.7.12.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/legacy_pickle/0.18.1/0.18.1_x86_64_darwin_3.5.2.pickle\', \'lib/python3.6/site-packages/pandas/io/tests/data/macau.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/nyse_wsj.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/spam.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata10_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata10_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata11_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata11_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata12_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata14_118.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata15.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata1_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata1_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata1_encoding.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata2_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata2_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata2_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata2_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata3.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata3_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata3_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata3_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata3_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata4_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata4_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata4_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata4_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata5.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata5_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata5_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata5_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata5_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata6.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata6_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata6_114.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata6_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata6_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata7_111.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata7_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata7_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata8_113.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata8_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata8_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata9_115.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/stata9_117.dta\', \'lib/python3.6/site-packages/pandas/io/tests/data/test1.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/test1.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test1.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test1.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test2.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test2.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test2.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test3.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test3.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test3.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test4.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test4.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test4.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test5.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test5.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test5.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_converters.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_converters.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_converters.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_index_name_pre17.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_index_name_pre17.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_index_name_pre17.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_mmap.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_multisheet.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_multisheet.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_multisheet.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_squeeze.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_squeeze.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_squeeze.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_types.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_types.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/test_types.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/testdateoverflow.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/testdateoverflow.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/testdateoverflow.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/testmultiindex.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/testmultiindex.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/testmultiindex.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/testskiprows.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/testskiprows.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/testskiprows.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1900.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1900.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1900.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1904.xls\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1904.xlsm\', \'lib/python3.6/site-packages/pandas/io/tests/data/times_1904.xlsx\', \'lib/python3.6/site-packages/pandas/io/tests/data/tips.csv\', \'lib/python3.6/site-packages/pandas/io/tests/data/valid_markup.html\', \'lib/python3.6/site-packages/pandas/io/tests/data/wikipedia_states.html\', \'lib/python3.6/site-packages/pandas/io/tests/generate_legacy_storage_files.py\', \'lib/python3.6/site-packages/pandas/io/tests/json/__init__.py\', \'lib/python3.6/site-packages/pandas/io/tests/json/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/json/__pycache__/test_json_norm.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/json/__pycache__/test_pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/json/__pycache__/test_ujson.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/json/data/tsframe_iso_v012.json\', \'lib/python3.6/site-packages/pandas/io/tests/json/data/tsframe_v012.json\', \'lib/python3.6/site-packages/pandas/io/tests/json/test_json_norm.py\', \'lib/python3.6/site-packages/pandas/io/tests/json/test_pandas.py\', \'lib/python3.6/site-packages/pandas/io/tests/json/test_ujson.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__init__.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/c_parser_only.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/comment.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/compression.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/converters.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/header.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/index_col.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/multithread.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/na_values.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/parse_dates.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/python_parser_only.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/quoting.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/skiprows.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/test_network.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/test_parsers.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/test_read_fwf.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/test_textreader.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/test_unsupported.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/__pycache__/usecols.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/parser/c_parser_only.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/comment.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/common.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/compression.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/converters.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/iris.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/salaries.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/salaries.csv.bz2\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/salaries.csv.gz\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/sauron.SHIFT_JIS.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/test1.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/test1.csv.bz2\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/test1.csv.gz\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/test2.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/test_mmap.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/tips.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/unicode_series.csv\', \'lib/python3.6/site-packages/pandas/io/tests/parser/data/utf16_ex.txt\', \'lib/python3.6/site-packages/pandas/io/tests/parser/header.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/index_col.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/multithread.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/na_values.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/parse_dates.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/python_parser_only.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/quoting.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/skiprows.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/test_network.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/test_parsers.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/test_read_fwf.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/test_textreader.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/test_unsupported.py\', \'lib/python3.6/site-packages/pandas/io/tests/parser/usecols.py\', \'lib/python3.6/site-packages/pandas/io/tests/sas/__pycache__/test_sas7bdat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/sas/__pycache__/test_xport.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/DEMO_G.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/DEMO_G.xpt\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/DRXFCD_G.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/DRXFCD_G.xpt\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/SSHSV1_A.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/SSHSV1_A.xpt\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/airline.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/airline.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/paxraw_d_short.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/paxraw_d_short.xpt\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/productsales.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/productsales.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test1.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test10.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test11.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test12.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test13.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test14.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test15.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test16.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test2.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test3.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test4.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test5.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test6.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test7.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test8.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test9.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test_12659.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test_12659.sas7bdat\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test_sas7bdat_1.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/data/test_sas7bdat_2.csv\', \'lib/python3.6/site-packages/pandas/io/tests/sas/test_sas7bdat.py\', \'lib/python3.6/site-packages/pandas/io/tests/sas/test_xport.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_clipboard.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_common.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_date_converters.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_excel.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_ga.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_gbq.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_html.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_packers.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_pickle.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_pytables.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_s3.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_sql.py\', \'lib/python3.6/site-packages/pandas/io/tests/test_stata.py\', \'lib/python3.6/site-packages/pandas/io/wb.py\', \'lib/python3.6/site-packages/pandas/json.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/lib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/msgpack/__init__.py\', \'lib/python3.6/site-packages/pandas/msgpack/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/msgpack/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/msgpack/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/msgpack/_packer.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/msgpack/_unpacker.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/msgpack/_version.py\', \'lib/python3.6/site-packages/pandas/msgpack/exceptions.py\', \'lib/python3.6/site-packages/pandas/parser.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/rpy/__init__.py\', \'lib/python3.6/site-packages/pandas/rpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/rpy/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/rpy/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/rpy/__pycache__/mass.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/rpy/__pycache__/vars.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/rpy/base.py\', \'lib/python3.6/site-packages/pandas/rpy/common.py\', \'lib/python3.6/site-packages/pandas/rpy/mass.py\', \'lib/python3.6/site-packages/pandas/rpy/vars.py\', \'lib/python3.6/site-packages/pandas/sparse/__init__.py\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/array.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/list.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/scipy_sparse.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/__pycache__/series.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/api.py\', \'lib/python3.6/site-packages/pandas/sparse/array.py\', \'lib/python3.6/site-packages/pandas/sparse/frame.py\', \'lib/python3.6/site-packages/pandas/sparse/list.py\', \'lib/python3.6/site-packages/pandas/sparse/scipy_sparse.py\', \'lib/python3.6/site-packages/pandas/sparse/series.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_arithmetics.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_array.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_combine_concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_frame.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_libsparse.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_list.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_pivot.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/__pycache__/test_series.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_arithmetics.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_array.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_combine_concat.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_format.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_frame.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_groupby.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_indexing.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_libsparse.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_list.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_pivot.py\', \'lib/python3.6/site-packages/pandas/sparse/tests/test_series.py\', \'lib/python3.6/site-packages/pandas/stats/__init__.py\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/fama_macbeth.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/math.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/moments.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/ols.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/plm.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/__pycache__/var.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/api.py\', \'lib/python3.6/site-packages/pandas/stats/common.py\', \'lib/python3.6/site-packages/pandas/stats/fama_macbeth.py\', \'lib/python3.6/site-packages/pandas/stats/interface.py\', \'lib/python3.6/site-packages/pandas/stats/math.py\', \'lib/python3.6/site-packages/pandas/stats/misc.py\', \'lib/python3.6/site-packages/pandas/stats/moments.py\', \'lib/python3.6/site-packages/pandas/stats/ols.py\', \'lib/python3.6/site-packages/pandas/stats/plm.py\', \'lib/python3.6/site-packages/pandas/stats/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/test_fama_macbeth.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/test_math.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/test_ols.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/__pycache__/test_var.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/stats/tests/common.py\', \'lib/python3.6/site-packages/pandas/stats/tests/test_fama_macbeth.py\', \'lib/python3.6/site-packages/pandas/stats/tests/test_math.py\', \'lib/python3.6/site-packages/pandas/stats/tests/test_ols.py\', \'lib/python3.6/site-packages/pandas/stats/tests/test_var.py\', \'lib/python3.6/site-packages/pandas/stats/var.py\', \'lib/python3.6/site-packages/pandas/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_algos.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_config.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_expressions.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_generic.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_internals.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_join.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_lib.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_multilevel.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_nanops.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_panel.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_panel4d.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_panelnd.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_reshape.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_strings.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_take.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_testing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/__pycache__/test_window.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/data/iris.csv\', \'lib/python3.6/site-packages/pandas/tests/data/tips.csv\', \'lib/python3.6/site-packages/pandas/tests/formats/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/formats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/formats/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/formats/__pycache__/test_printing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/formats/__pycache__/test_style.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/formats/data/unicode_series.csv\', \'lib/python3.6/site-packages/pandas/tests/formats/test_format.py\', \'lib/python3.6/site-packages/pandas/tests/formats/test_printing.py\', \'lib/python3.6/site-packages/pandas/tests/formats/test_style.py\', \'lib/python3.6/site-packages/pandas/tests/frame/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_alter_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_analytics.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_apply.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_asof.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_axis_select_reindex.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_block_internals.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_combine_concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_constructors.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_convert_to.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_dtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_misc_api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_missing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_mutate_columns.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_nonunique_indexes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_operators.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_quantile.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_query_eval.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_replace.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_repr_info.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_reshape.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_sorting.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_subclass.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_timeseries.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/__pycache__/test_to_csv.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/frame/common.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_alter_axes.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_analytics.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_apply.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_asof.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_axis_select_reindex.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_block_internals.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_combine_concat.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_constructors.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_convert_to.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_dtypes.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_indexing.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_misc_api.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_missing.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_mutate_columns.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_nonunique_indexes.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_operators.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_quantile.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_query_eval.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_replace.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_repr_info.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_reshape.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_sorting.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_subclass.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_timeseries.py\', \'lib/python3.6/site-packages/pandas/tests/frame/test_to_csv.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_category.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_datetimelike.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_multi.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/__pycache__/test_range.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/indexes/common.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/data/mindex_073.pickle\', \'lib/python3.6/site-packages/pandas/tests/indexes/data/multiindex_v1.pickle\', \'lib/python3.6/site-packages/pandas/tests/indexes/data/s1-0.12.0.pickle\', \'lib/python3.6/site-packages/pandas/tests/indexes/data/s2-0.12.0.pickle\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_base.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_category.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_datetimelike.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_multi.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_numeric.py\', \'lib/python3.6/site-packages/pandas/tests/indexes/test_range.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_boxplot_method.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_datetimelike.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_frame.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_hist_method.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/__pycache__/test_series.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/plotting/common.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_boxplot_method.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_datetimelike.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_frame.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_groupby.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_hist_method.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_misc.py\', \'lib/python3.6/site-packages/pandas/tests/plotting/test_series.py\', \'lib/python3.6/site-packages/pandas/tests/series/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_alter_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_analytics.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_apply.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_asof.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_combine_concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_constructors.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_datetime_values.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_dtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_internals.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_misc_api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_missing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_operators.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_quantile.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_replace.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_repr.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_sorting.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_subclass.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/__pycache__/test_timeseries.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/series/common.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_alter_axes.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_analytics.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_apply.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_asof.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_combine_concat.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_constructors.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_datetime_values.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_dtypes.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_indexing.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_internals.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_io.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_misc_api.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_missing.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_operators.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_quantile.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_replace.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_repr.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_sorting.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_subclass.py\', \'lib/python3.6/site-packages/pandas/tests/series/test_timeseries.py\', \'lib/python3.6/site-packages/pandas/tests/test_algos.py\', \'lib/python3.6/site-packages/pandas/tests/test_base.py\', \'lib/python3.6/site-packages/pandas/tests/test_categorical.py\', \'lib/python3.6/site-packages/pandas/tests/test_common.py\', \'lib/python3.6/site-packages/pandas/tests/test_compat.py\', \'lib/python3.6/site-packages/pandas/tests/test_config.py\', \'lib/python3.6/site-packages/pandas/tests/test_expressions.py\', \'lib/python3.6/site-packages/pandas/tests/test_generic.py\', \'lib/python3.6/site-packages/pandas/tests/test_groupby.py\', \'lib/python3.6/site-packages/pandas/tests/test_internals.py\', \'lib/python3.6/site-packages/pandas/tests/test_join.py\', \'lib/python3.6/site-packages/pandas/tests/test_lib.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_buffer.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_case.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_except.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_extension.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_format.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_limits.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_newspec.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_obj.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_pack.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_read_size.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_seq.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_sequnpack.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_subtype.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_unpack.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/__pycache__/test_unpack_raw.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_buffer.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_case.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_except.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_extension.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_format.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_limits.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_newspec.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_obj.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_pack.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_read_size.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_seq.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_sequnpack.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_subtype.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_unpack.py\', \'lib/python3.6/site-packages/pandas/tests/test_msgpack/test_unpack_raw.py\', \'lib/python3.6/site-packages/pandas/tests/test_multilevel.py\', \'lib/python3.6/site-packages/pandas/tests/test_nanops.py\', \'lib/python3.6/site-packages/pandas/tests/test_panel.py\', \'lib/python3.6/site-packages/pandas/tests/test_panel4d.py\', \'lib/python3.6/site-packages/pandas/tests/test_panelnd.py\', \'lib/python3.6/site-packages/pandas/tests/test_reshape.py\', \'lib/python3.6/site-packages/pandas/tests/test_stats.py\', \'lib/python3.6/site-packages/pandas/tests/test_strings.py\', \'lib/python3.6/site-packages/pandas/tests/test_take.py\', \'lib/python3.6/site-packages/pandas/tests/test_testing.py\', \'lib/python3.6/site-packages/pandas/tests/test_util.py\', \'lib/python3.6/site-packages/pandas/tests/test_window.py\', \'lib/python3.6/site-packages/pandas/tests/types/__init__.py\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_cast.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_dtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_generic.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_inference.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/__pycache__/test_missing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tests/types/test_cast.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_common.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_concat.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_dtypes.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_generic.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_inference.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_io.py\', \'lib/python3.6/site-packages/pandas/tests/types/test_missing.py\', \'lib/python3.6/site-packages/pandas/tools/__init__.py\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/merge.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/pivot.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/plotting.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/tile.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/hashing.py\', \'lib/python3.6/site-packages/pandas/tools/merge.py\', \'lib/python3.6/site-packages/pandas/tools/pivot.py\', \'lib/python3.6/site-packages/pandas/tools/plotting.py\', \'lib/python3.6/site-packages/pandas/tools/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_join.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_merge.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_merge_asof.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_merge_ordered.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_pivot.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_tile.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tools/tests/data/allow_exact_matches.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/allow_exact_matches_and_tolerance.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/asof.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/asof2.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/cut_data.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/quotes.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/quotes2.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/tolerance.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/trades.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/data/trades2.csv\', \'lib/python3.6/site-packages/pandas/tools/tests/test_concat.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_hashing.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_join.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_merge.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_merge_asof.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_merge_ordered.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_pivot.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_tile.py\', \'lib/python3.6/site-packages/pandas/tools/tests/test_util.py\', \'lib/python3.6/site-packages/pandas/tools/tile.py\', \'lib/python3.6/site-packages/pandas/tools/util.py\', \'lib/python3.6/site-packages/pandas/tseries/__init__.py\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/converter.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/frequencies.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/holiday.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/interval.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/offsets.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/period.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/plotting.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/resample.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/tdi.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/timedeltas.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/api.py\', \'lib/python3.6/site-packages/pandas/tseries/base.py\', \'lib/python3.6/site-packages/pandas/tseries/common.py\', \'lib/python3.6/site-packages/pandas/tseries/converter.py\', \'lib/python3.6/site-packages/pandas/tseries/frequencies.py\', \'lib/python3.6/site-packages/pandas/tseries/holiday.py\', \'lib/python3.6/site-packages/pandas/tseries/index.py\', \'lib/python3.6/site-packages/pandas/tseries/interval.py\', \'lib/python3.6/site-packages/pandas/tseries/offsets.py\', \'lib/python3.6/site-packages/pandas/tseries/period.py\', \'lib/python3.6/site-packages/pandas/tseries/plotting.py\', \'lib/python3.6/site-packages/pandas/tseries/resample.py\', \'lib/python3.6/site-packages/pandas/tseries/tdi.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/__init__.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_bin_groupby.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_converter.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_daterange.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_frequencies.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_holiday.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_offsets.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_period.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_resample.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_timedeltas.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_timeseries.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_timeseries_legacy.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_timezones.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_tslib.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/cday-0.14.1.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/dateoffset_0_15_2.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/daterange_073.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/frame.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/series.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/data/series_daterange0.pickle\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_base.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_bin_groupby.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_converter.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_daterange.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_frequencies.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_holiday.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_offsets.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_period.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_resample.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_timedeltas.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_timeseries.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_timeseries_legacy.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_timezones.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_tslib.py\', \'lib/python3.6/site-packages/pandas/tseries/tests/test_util.py\', \'lib/python3.6/site-packages/pandas/tseries/timedeltas.py\', \'lib/python3.6/site-packages/pandas/tseries/tools.py\', \'lib/python3.6/site-packages/pandas/tseries/util.py\', \'lib/python3.6/site-packages/pandas/tslib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/types/__init__.py\', \'lib/python3.6/site-packages/pandas/types/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/cast.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/concat.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/dtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/generic.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/inference.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/__pycache__/missing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/types/api.py\', \'lib/python3.6/site-packages/pandas/types/cast.py\', \'lib/python3.6/site-packages/pandas/types/common.py\', \'lib/python3.6/site-packages/pandas/types/concat.py\', \'lib/python3.6/site-packages/pandas/types/dtypes.py\', \'lib/python3.6/site-packages/pandas/types/generic.py\', \'lib/python3.6/site-packages/pandas/types/inference.py\', \'lib/python3.6/site-packages/pandas/types/missing.py\', \'lib/python3.6/site-packages/pandas/util/__init__.py\', \'lib/python3.6/site-packages/pandas/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/depr_module.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/doctools.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/nosetester.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/print_versions.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/__pycache__/validators.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/_move.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/pandas/util/clipboard/__init__.py\', \'lib/python3.6/site-packages/pandas/util/clipboard/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/clipboard/__pycache__/clipboards.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/clipboard/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/clipboard/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/site-packages/pandas/util/clipboard/clipboards.py\', \'lib/python3.6/site-packages/pandas/util/clipboard/exceptions.py\', \'lib/python3.6/site-packages/pandas/util/clipboard/windows.py\', \'lib/python3.6/site-packages/pandas/util/decorators.py\', \'lib/python3.6/site-packages/pandas/util/depr_module.py\', \'lib/python3.6/site-packages/pandas/util/doctools.py\', \'lib/python3.6/site-packages/pandas/util/nosetester.py\', \'lib/python3.6/site-packages/pandas/util/print_versions.py\', \'lib/python3.6/site-packages/pandas/util/terminal.py\', \'lib/python3.6/site-packages/pandas/util/testing.py\', \'lib/python3.6/site-packages/pandas/util/validators.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pandas-0.19.2-np111py36_1\', type=1))", "defaults::partd-0.3.7-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'locket\', \'python 3.6*\', \'toolz\'), license=\'BSD\', md5=\'dda70a5de6b3557fbfecd99eba381ea9\', name=\'partd\', platform=\'linux\', subdir=\'linux-64\', version=\'0.3.7\', fn=\'partd-0.3.7-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/partd-0.3.7-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/partd-0.3.7-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/partd/__init__.py\', \'lib/python3.6/site-packages/partd/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/buffer.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/compressed.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/dict.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/encode.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/file.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/pandas.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/__pycache__/zmq.cpython-36.pyc\', \'lib/python3.6/site-packages/partd/buffer.py\', \'lib/python3.6/site-packages/partd/compatibility.py\', \'lib/python3.6/site-packages/partd/compressed.py\', \'lib/python3.6/site-packages/partd/core.py\', \'lib/python3.6/site-packages/partd/dict.py\', \'lib/python3.6/site-packages/partd/encode.py\', \'lib/python3.6/site-packages/partd/file.py\', \'lib/python3.6/site-packages/partd/numpy.py\', \'lib/python3.6/site-packages/partd/pandas.py\', \'lib/python3.6/site-packages/partd/pickle.py\', \'lib/python3.6/site-packages/partd/python.py\', \'lib/python3.6/site-packages/partd/utils.py\', \'lib/python3.6/site-packages/partd/zmq.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/partd-0.3.7-py36_0\', type=1))", "defaults::path.py-10.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'574790638cec7f2b0c7930e44412f6e4\', name=\'path.py\', platform=\'linux\', subdir=\'linux-64\', version=\'10.0\', fn=\'path.py-10.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/path.py-10.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/test_path.cpython-36.pyc\', \'lib/python3.6/site-packages/path.py\', \'lib/python3.6/site-packages/test_path.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/path.py-10.0-py36_0\', type=1))", "defaults::pathlib2-2.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'MIT\', md5=\'447db60bbf9f6be218472348684fcfa9\', name=\'pathlib2\', platform=\'linux\', subdir=\'linux-64\', version=\'2.2.0\', fn=\'pathlib2-2.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pathlib2-2.2.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/pathlib2.cpython-36.pyc\', \'lib/python3.6/site-packages/pathlib2-2.2.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pathlib2-2.2.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pathlib2-2.2.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pathlib2-2.2.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pathlib2-2.2.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pathlib2.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pathlib2-2.2.0-py36_0\', type=1))", "defaults::patsy-0.4.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'numpy\', \'python 3.6*\', \'six\'), license=\'BSD\', md5=\'fa4f39c917a28858f253bd8c1e5b32db\', name=\'patsy\', platform=\'linux\', subdir=\'linux-64\', version=\'0.4.1\', fn=\'patsy-0.4.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/patsy-0.4.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/patsy-0.4.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/patsy-0.4.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/patsy-0.4.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/patsy-0.4.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/patsy-0.4.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/patsy/__init__.py\', \'lib/python3.6/site-packages/patsy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/build.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/compat_ordereddict.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/constraint.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/contrasts.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/desc.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/design_info.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/eval.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/highlevel.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/infix_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/mgcv_cubic_splines.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/missing.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/origin.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/parse_formula.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/redundancy.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/splines.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/state.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_build.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_highlevel.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_regressions.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_splines_bs_data.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_splines_crs_data.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/test_state.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/tokens.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/user_util.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/patsy/build.py\', \'lib/python3.6/site-packages/patsy/builtins.py\', \'lib/python3.6/site-packages/patsy/categorical.py\', \'lib/python3.6/site-packages/patsy/compat.py\', \'lib/python3.6/site-packages/patsy/compat_ordereddict.py\', \'lib/python3.6/site-packages/patsy/constraint.py\', \'lib/python3.6/site-packages/patsy/contrasts.py\', \'lib/python3.6/site-packages/patsy/desc.py\', \'lib/python3.6/site-packages/patsy/design_info.py\', \'lib/python3.6/site-packages/patsy/eval.py\', \'lib/python3.6/site-packages/patsy/highlevel.py\', \'lib/python3.6/site-packages/patsy/infix_parser.py\', \'lib/python3.6/site-packages/patsy/mgcv_cubic_splines.py\', \'lib/python3.6/site-packages/patsy/missing.py\', \'lib/python3.6/site-packages/patsy/origin.py\', \'lib/python3.6/site-packages/patsy/parse_formula.py\', \'lib/python3.6/site-packages/patsy/redundancy.py\', \'lib/python3.6/site-packages/patsy/splines.py\', \'lib/python3.6/site-packages/patsy/state.py\', \'lib/python3.6/site-packages/patsy/test_build.py\', \'lib/python3.6/site-packages/patsy/test_highlevel.py\', \'lib/python3.6/site-packages/patsy/test_regressions.py\', \'lib/python3.6/site-packages/patsy/test_splines_bs_data.py\', \'lib/python3.6/site-packages/patsy/test_splines_crs_data.py\', \'lib/python3.6/site-packages/patsy/test_state.py\', \'lib/python3.6/site-packages/patsy/tokens.py\', \'lib/python3.6/site-packages/patsy/user_util.py\', \'lib/python3.6/site-packages/patsy/util.py\', \'lib/python3.6/site-packages/patsy/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/patsy-0.4.1-py36_0\', type=1))", "defaults::pcre-8.39-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(\'zlib 1.2.*\',), license=\'3-clause BSD License\', license_family=\'BSD\', md5=\'62c472936cea126dfb939ae5a1388004\', name=\'pcre\', platform=\'linux\', subdir=\'linux-64\', version=\'8.39\', fn=\'pcre-8.39-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pcre-8.39-1.tar.bz2\', files=(\'bin/pcre-config\', \'bin/pcregrep\', \'bin/pcretest\', \'include/pcre.h\', \'include/pcre_scanner.h\', \'include/pcre_stringpiece.h\', \'include/pcrecpp.h\', \'include/pcrecpparg.h\', \'include/pcreposix.h\', \'lib/libpcre.a\', \'lib/libpcre.la\', \'lib/libpcre.so\', \'lib/libpcre.so.1\', \'lib/libpcre.so.1.2.7\', \'lib/libpcrecpp.a\', \'lib/libpcrecpp.la\', \'lib/libpcrecpp.so\', \'lib/libpcrecpp.so.0\', \'lib/libpcrecpp.so.0.0.1\', \'lib/libpcreposix.a\', \'lib/libpcreposix.la\', \'lib/libpcreposix.so\', \'lib/libpcreposix.so.0\', \'lib/libpcreposix.so.0.0.4\', \'lib/pkgconfig/libpcre.pc\', \'lib/pkgconfig/libpcrecpp.pc\', \'lib/pkgconfig/libpcreposix.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pcre-8.39-1\', type=1))", "defaults::pep8-1.7.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'e8f9bb3e7eebbaaa5d1e2eb85319747c\', name=\'pep8\', platform=\'linux\', subdir=\'linux-64\', version=\'1.7.0\', fn=\'pep8-1.7.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pep8-1.7.0-py36_0.tar.bz2\', files=(\'bin/pep8\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/namespace_packages.txt\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/pep8-1.7.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pep8.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pep8-1.7.0-py36_0\', type=1))", "defaults::pexpect-4.2.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ptyprocess >=0.5\', \'python 3.6*\'), license=\'ISC\', license_family=\'Other\', md5=\'49a36366dc01d042fdba0750cdf13551\', name=\'pexpect\', platform=\'linux\', subdir=\'linux-64\', version=\'4.2.1\', fn=\'pexpect-4.2.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pexpect-4.2.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/pexpect-4.2.1-py3.6.egg-info\', \'lib/python3.6/site-packages/pexpect/ANSI.py\', \'lib/python3.6/site-packages/pexpect/FSM.py\', \'lib/python3.6/site-packages/pexpect/__init__.py\', \'lib/python3.6/site-packages/pexpect/__pycache__/ANSI.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/FSM.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/async.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/expect.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/fdpexpect.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/popen_spawn.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/pty_spawn.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/pxssh.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/replwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/run.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/screen.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/spawnbase.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pexpect/async.py\', \'lib/python3.6/site-packages/pexpect/bashrc.sh\', \'lib/python3.6/site-packages/pexpect/exceptions.py\', \'lib/python3.6/site-packages/pexpect/expect.py\', \'lib/python3.6/site-packages/pexpect/fdpexpect.py\', \'lib/python3.6/site-packages/pexpect/popen_spawn.py\', \'lib/python3.6/site-packages/pexpect/pty_spawn.py\', \'lib/python3.6/site-packages/pexpect/pxssh.py\', \'lib/python3.6/site-packages/pexpect/replwrap.py\', \'lib/python3.6/site-packages/pexpect/run.py\', \'lib/python3.6/site-packages/pexpect/screen.py\', \'lib/python3.6/site-packages/pexpect/spawnbase.py\', \'lib/python3.6/site-packages/pexpect/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pexpect-4.2.1-py36_0\', type=1))", "defaults::pickleshare-0.7.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'path.py\', \'python 3.6*\'), license=\'MIT\', md5=\'281fb174f490527165fe37106d4e46f4\', name=\'pickleshare\', platform=\'linux\', subdir=\'linux-64\', version=\'0.7.4\', fn=\'pickleshare-0.7.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pickleshare-0.7.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/pickleshare.cpython-36.pyc\', \'lib/python3.6/site-packages/pickleshare-0.7.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pickleshare-0.7.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pickleshare-0.7.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pickleshare-0.7.4-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pickleshare-0.7.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pickleshare.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pickleshare-0.7.4-py36_0\', type=1))", "defaults::pillow-4.0.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'freetype 2.5.*\', \'jpeg 9*\', \'libtiff 4.0.*\', \'python 3.6*\', \'zlib 1.2.*\'), license=\'PIL license\', license_family=\'Other\', md5=\'9bb6541e11ed36c3c318edffa388c196\', name=\'pillow\', platform=\'linux\', subdir=\'linux-64\', version=\'4.0.0\', fn=\'pillow-4.0.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pillow-4.0.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/PIL/BdfFontFile.py\', \'lib/python3.6/site-packages/PIL/BmpImagePlugin.py\', \'lib/python3.6/site-packages/PIL/BufrStubImagePlugin.py\', \'lib/python3.6/site-packages/PIL/ContainerIO.py\', \'lib/python3.6/site-packages/PIL/CurImagePlugin.py\', \'lib/python3.6/site-packages/PIL/DcxImagePlugin.py\', \'lib/python3.6/site-packages/PIL/DdsImagePlugin.py\', \'lib/python3.6/site-packages/PIL/EpsImagePlugin.py\', \'lib/python3.6/site-packages/PIL/ExifTags.py\', \'lib/python3.6/site-packages/PIL/FitsStubImagePlugin.py\', \'lib/python3.6/site-packages/PIL/FliImagePlugin.py\', \'lib/python3.6/site-packages/PIL/FontFile.py\', \'lib/python3.6/site-packages/PIL/FpxImagePlugin.py\', \'lib/python3.6/site-packages/PIL/FtexImagePlugin.py\', \'lib/python3.6/site-packages/PIL/GbrImagePlugin.py\', \'lib/python3.6/site-packages/PIL/GdImageFile.py\', \'lib/python3.6/site-packages/PIL/GifImagePlugin.py\', \'lib/python3.6/site-packages/PIL/GimpGradientFile.py\', \'lib/python3.6/site-packages/PIL/GimpPaletteFile.py\', \'lib/python3.6/site-packages/PIL/GribStubImagePlugin.py\', \'lib/python3.6/site-packages/PIL/Hdf5StubImagePlugin.py\', \'lib/python3.6/site-packages/PIL/IcnsImagePlugin.py\', \'lib/python3.6/site-packages/PIL/IcoImagePlugin.py\', \'lib/python3.6/site-packages/PIL/ImImagePlugin.py\', \'lib/python3.6/site-packages/PIL/Image.py\', \'lib/python3.6/site-packages/PIL/ImageChops.py\', \'lib/python3.6/site-packages/PIL/ImageCms.py\', \'lib/python3.6/site-packages/PIL/ImageColor.py\', \'lib/python3.6/site-packages/PIL/ImageDraw.py\', \'lib/python3.6/site-packages/PIL/ImageDraw2.py\', \'lib/python3.6/site-packages/PIL/ImageEnhance.py\', \'lib/python3.6/site-packages/PIL/ImageFile.py\', \'lib/python3.6/site-packages/PIL/ImageFilter.py\', \'lib/python3.6/site-packages/PIL/ImageFont.py\', \'lib/python3.6/site-packages/PIL/ImageGrab.py\', \'lib/python3.6/site-packages/PIL/ImageMath.py\', \'lib/python3.6/site-packages/PIL/ImageMode.py\', \'lib/python3.6/site-packages/PIL/ImageMorph.py\', \'lib/python3.6/site-packages/PIL/ImageOps.py\', \'lib/python3.6/site-packages/PIL/ImagePalette.py\', \'lib/python3.6/site-packages/PIL/ImagePath.py\', \'lib/python3.6/site-packages/PIL/ImageQt.py\', \'lib/python3.6/site-packages/PIL/ImageSequence.py\', \'lib/python3.6/site-packages/PIL/ImageShow.py\', \'lib/python3.6/site-packages/PIL/ImageStat.py\', \'lib/python3.6/site-packages/PIL/ImageTk.py\', \'lib/python3.6/site-packages/PIL/ImageTransform.py\', \'lib/python3.6/site-packages/PIL/ImageWin.py\', \'lib/python3.6/site-packages/PIL/ImtImagePlugin.py\', \'lib/python3.6/site-packages/PIL/IptcImagePlugin.py\', \'lib/python3.6/site-packages/PIL/Jpeg2KImagePlugin.py\', \'lib/python3.6/site-packages/PIL/JpegImagePlugin.py\', \'lib/python3.6/site-packages/PIL/JpegPresets.py\', \'lib/python3.6/site-packages/PIL/McIdasImagePlugin.py\', \'lib/python3.6/site-packages/PIL/MicImagePlugin.py\', \'lib/python3.6/site-packages/PIL/MpegImagePlugin.py\', \'lib/python3.6/site-packages/PIL/MpoImagePlugin.py\', \'lib/python3.6/site-packages/PIL/MspImagePlugin.py\', \'lib/python3.6/site-packages/PIL/OleFileIO.py\', \'lib/python3.6/site-packages/PIL/PSDraw.py\', \'lib/python3.6/site-packages/PIL/PaletteFile.py\', \'lib/python3.6/site-packages/PIL/PalmImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PcdImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PcfFontFile.py\', \'lib/python3.6/site-packages/PIL/PcxImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PdfImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PixarImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PngImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PpmImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PsdImagePlugin.py\', \'lib/python3.6/site-packages/PIL/PyAccess.py\', \'lib/python3.6/site-packages/PIL/SgiImagePlugin.py\', \'lib/python3.6/site-packages/PIL/SpiderImagePlugin.py\', \'lib/python3.6/site-packages/PIL/SunImagePlugin.py\', \'lib/python3.6/site-packages/PIL/TarIO.py\', \'lib/python3.6/site-packages/PIL/TgaImagePlugin.py\', \'lib/python3.6/site-packages/PIL/TiffImagePlugin.py\', \'lib/python3.6/site-packages/PIL/TiffTags.py\', \'lib/python3.6/site-packages/PIL/WalImageFile.py\', \'lib/python3.6/site-packages/PIL/WebPImagePlugin.py\', \'lib/python3.6/site-packages/PIL/WmfImagePlugin.py\', \'lib/python3.6/site-packages/PIL/XVThumbImagePlugin.py\', \'lib/python3.6/site-packages/PIL/XbmImagePlugin.py\', \'lib/python3.6/site-packages/PIL/XpmImagePlugin.py\', \'lib/python3.6/site-packages/PIL/__init__.py\', \'lib/python3.6/site-packages/PIL/__pycache__/BdfFontFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ContainerIO.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/CurImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ExifTags.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/FitsStubImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/FliImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/FontFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GdImageFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GifImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GimpGradientFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/Image.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageChops.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageCms.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageColor.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageDraw.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageDraw2.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageEnhance.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageFilter.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageFont.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageGrab.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageMath.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageMode.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageMorph.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageOps.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImagePalette.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImagePath.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageQt.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageSequence.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageShow.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageStat.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageTk.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageTransform.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImageWin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/JpegPresets.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/MicImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/MspImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/OleFileIO.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PSDraw.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PaletteFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PcfFontFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PngImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/PyAccess.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/SunImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/TarIO.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/TiffTags.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/WalImageFile.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/_binary.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/_tkinter_finder.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/_util.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/__pycache__/features.cpython-36.pyc\', \'lib/python3.6/site-packages/PIL/_binary.py\', \'lib/python3.6/site-packages/PIL/_imaging.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/PIL/_imagingft.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/PIL/_imagingmath.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/PIL/_imagingmorph.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/PIL/_imagingtk.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/PIL/_tkinter_finder.py\', \'lib/python3.6/site-packages/PIL/_util.py\', \'lib/python3.6/site-packages/PIL/features.py\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/Pillow-4.0.0-py3.6.egg-info/zip-safe\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pillow-4.0.0-py36_0\', type=1))", "defaults::pip-9.0.1-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\', \'setuptools\', \'wheel\'), license=\'MIT\', md5=\'4c566eae8f908fee835e91c27d5e0b99\', name=\'pip\', platform=\'linux\', subdir=\'linux-64\', version=\'9.0.1\', fn=\'pip-9.0.1-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pip-9.0.1-py36_1.tar.bz2\', files=(\'bin/pip\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pip-9.0.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pip/__init__.py\', \'lib/python3.6/site-packages/pip/__main__.py\', \'lib/python3.6/site-packages/pip/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/basecommand.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/baseparser.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/cmdoptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/download.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/locations.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/pep425tags.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/status_codes.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/__pycache__/wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/appdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/distro.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/ordereddict.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/re-vendor.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/retrying.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/appdirs.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/_cmd.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/adapter.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/cache.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/compat.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/controller.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/filewrapper.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/heuristics.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/serialize.py\', \'lib/python3.6/site-packages/pip/_vendor/cachecontrol/wrapper.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/colorama/ansi.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/ansitowin32.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/initialise.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/win32.py\', \'lib/python3.6/site-packages/pip/_vendor/colorama/winterm.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/misc.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/shutil.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/sysconfig.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/_backport/tarfile.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/compat.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/database.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/index.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/locators.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/manifest.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/markers.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/metadata.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/resources.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/scripts.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/t32.exe\', \'lib/python3.6/site-packages/pip/_vendor/distlib/t64.exe\', \'lib/python3.6/site-packages/pip/_vendor/distlib/util.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/version.py\', \'lib/python3.6/site-packages/pip/_vendor/distlib/w32.exe\', \'lib/python3.6/site-packages/pip/_vendor/distlib/w64.exe\', \'lib/python3.6/site-packages/pip/_vendor/distlib/wheel.py\', \'lib/python3.6/site-packages/pip/_vendor/distro.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_ihatexml.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_inputstream.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_tokenizer.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/_base.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/datrie.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_trie/py.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/_utils.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/constants.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/base.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/lint.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/optionaltags.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/sanitizer.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/filters/whitespace.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/html5parser.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/serializer.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treeadapters/sax.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/base.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/dom.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/etree.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/base.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/dom.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/etree.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py\', \'lib/python3.6/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py\', \'lib/python3.6/site-packages/pip/_vendor/ipaddress.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/linklockfile.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/mkdirlockfile.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/pidlockfile.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/sqlitelockfile.py\', \'lib/python3.6/site-packages/pip/_vendor/lockfile/symlinklockfile.py\', \'lib/python3.6/site-packages/pip/_vendor/ordereddict.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__about__.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/packaging/_compat.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/_structures.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/markers.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/requirements.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/specifiers.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/utils.py\', \'lib/python3.6/site-packages/pip/_vendor/packaging/version.py\', \'lib/python3.6/site-packages/pip/_vendor/pkg_resources/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/progress/bar.py\', \'lib/python3.6/site-packages/pip/_vendor/progress/counter.py\', \'lib/python3.6/site-packages/pip/_vendor/progress/helpers.py\', \'lib/python3.6/site-packages/pip/_vendor/progress/spinner.py\', \'lib/python3.6/site-packages/pip/_vendor/pyparsing.py\', \'lib/python3.6/site-packages/pip/_vendor/re-vendor.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/adapters.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/api.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/auth.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/cacert.pem\', \'lib/python3.6/site-packages/pip/_vendor/requests/certs.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/compat.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/cookies.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/exceptions.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/hooks.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/models.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/big5freq.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/big5prober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/chardetect.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/chardistribution.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/charsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/cp949prober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/escprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/escsm.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/eucjpprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/euckrfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/euckrprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/euctwfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/euctwprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/gb2312freq.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/gb2312prober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/hebrewprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/jisfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/jpcntx.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/langthaimodel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/latin1prober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/mbcssm.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/sjisprober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/universaldetector.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/__pycache__/utf8prober.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/big5freq.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/big5prober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/chardetect.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/chardistribution.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/charsetgroupprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/charsetprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/codingstatemachine.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/compat.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/constants.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/cp949prober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/escprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/escsm.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/eucjpprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/euckrfreq.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/euckrprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/euctwfreq.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/euctwprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/gb2312freq.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/gb2312prober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/hebrewprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/jisfreq.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/jpcntx.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langbulgarianmodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langcyrillicmodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langgreekmodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langhebrewmodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langhungarianmodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/langthaimodel.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/latin1prober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/mbcharsetprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/mbcsgroupprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/mbcssm.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/sbcharsetprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/sbcsgroupprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/sjisprober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/universaldetector.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/chardet/utf8prober.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/connectionpool.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/fields.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/filepost.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/poolmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/_collections.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/connection.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/connectionpool.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__pycache__/appengine.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__pycache__/socks.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/appengine.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/ntlmpool.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/pyopenssl.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/socks.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/exceptions.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/fields.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/filepost.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/__pycache__/ordered_dict.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/ordered_dict.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/six.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/poolmanager.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/request.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/response.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/retry.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/timeout.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/connection.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/request.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/response.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/retry.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/timeout.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/util/url.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/sessions.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/status_codes.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/structures.py\', \'lib/python3.6/site-packages/pip/_vendor/requests/utils.py\', \'lib/python3.6/site-packages/pip/_vendor/retrying.py\', \'lib/python3.6/site-packages/pip/_vendor/six.py\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__init__.py\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/labels.py\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/mklabels.py\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/tests.py\', \'lib/python3.6/site-packages/pip/_vendor/webencodings/x_user_defined.py\', \'lib/python3.6/site-packages/pip/basecommand.py\', \'lib/python3.6/site-packages/pip/baseparser.py\', \'lib/python3.6/site-packages/pip/cmdoptions.py\', \'lib/python3.6/site-packages/pip/commands/__init__.py\', \'lib/python3.6/site-packages/pip/commands/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/completion.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/download.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/freeze.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/hash.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/list.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/search.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/show.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/uninstall.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/__pycache__/wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/commands/check.py\', \'lib/python3.6/site-packages/pip/commands/completion.py\', \'lib/python3.6/site-packages/pip/commands/download.py\', \'lib/python3.6/site-packages/pip/commands/freeze.py\', \'lib/python3.6/site-packages/pip/commands/hash.py\', \'lib/python3.6/site-packages/pip/commands/help.py\', \'lib/python3.6/site-packages/pip/commands/install.py\', \'lib/python3.6/site-packages/pip/commands/list.py\', \'lib/python3.6/site-packages/pip/commands/search.py\', \'lib/python3.6/site-packages/pip/commands/show.py\', \'lib/python3.6/site-packages/pip/commands/uninstall.py\', \'lib/python3.6/site-packages/pip/commands/wheel.py\', \'lib/python3.6/site-packages/pip/compat/__init__.py\', \'lib/python3.6/site-packages/pip/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/compat/__pycache__/dictconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/compat/dictconfig.py\', \'lib/python3.6/site-packages/pip/download.py\', \'lib/python3.6/site-packages/pip/exceptions.py\', \'lib/python3.6/site-packages/pip/index.py\', \'lib/python3.6/site-packages/pip/locations.py\', \'lib/python3.6/site-packages/pip/models/__init__.py\', \'lib/python3.6/site-packages/pip/models/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/models/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/models/index.py\', \'lib/python3.6/site-packages/pip/operations/__init__.py\', \'lib/python3.6/site-packages/pip/operations/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/operations/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/operations/__pycache__/freeze.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/operations/check.py\', \'lib/python3.6/site-packages/pip/operations/freeze.py\', \'lib/python3.6/site-packages/pip/pep425tags.py\', \'lib/python3.6/site-packages/pip/req/__init__.py\', \'lib/python3.6/site-packages/pip/req/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/req/__pycache__/req_file.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/req/__pycache__/req_install.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/req/__pycache__/req_set.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/req/__pycache__/req_uninstall.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/req/req_file.py\', \'lib/python3.6/site-packages/pip/req/req_install.py\', \'lib/python3.6/site-packages/pip/req/req_set.py\', \'lib/python3.6/site-packages/pip/req/req_uninstall.py\', \'lib/python3.6/site-packages/pip/status_codes.py\', \'lib/python3.6/site-packages/pip/utils/__init__.py\', \'lib/python3.6/site-packages/pip/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/appdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/build.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/encoding.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/filesystem.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/glibc.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/hashes.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/outdated.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/packaging.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/setuptools_build.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/__pycache__/ui.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/utils/appdirs.py\', \'lib/python3.6/site-packages/pip/utils/build.py\', \'lib/python3.6/site-packages/pip/utils/deprecation.py\', \'lib/python3.6/site-packages/pip/utils/encoding.py\', \'lib/python3.6/site-packages/pip/utils/filesystem.py\', \'lib/python3.6/site-packages/pip/utils/glibc.py\', \'lib/python3.6/site-packages/pip/utils/hashes.py\', \'lib/python3.6/site-packages/pip/utils/logging.py\', \'lib/python3.6/site-packages/pip/utils/outdated.py\', \'lib/python3.6/site-packages/pip/utils/packaging.py\', \'lib/python3.6/site-packages/pip/utils/setuptools_build.py\', \'lib/python3.6/site-packages/pip/utils/ui.py\', \'lib/python3.6/site-packages/pip/vcs/__init__.py\', \'lib/python3.6/site-packages/pip/vcs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/vcs/__pycache__/bazaar.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/vcs/__pycache__/git.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/vcs/__pycache__/mercurial.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/vcs/__pycache__/subversion.cpython-36.pyc\', \'lib/python3.6/site-packages/pip/vcs/bazaar.py\', \'lib/python3.6/site-packages/pip/vcs/git.py\', \'lib/python3.6/site-packages/pip/vcs/mercurial.py\', \'lib/python3.6/site-packages/pip/vcs/subversion.py\', \'lib/python3.6/site-packages/pip/wheel.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pip-9.0.1-py36_1\', type=1))", "defaults::pixman-0.34.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'MIT\', license_family=\'MIT\', md5=\'f97f025b386f0f482714261e4d1f66dd\', name=\'pixman\', platform=\'linux\', subdir=\'linux-64\', version=\'0.34.0\', fn=\'pixman-0.34.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pixman-0.34.0-0.tar.bz2\', files=(\'include/pixman-1/pixman-version.h\', \'include/pixman-1/pixman.h\', \'lib/libpixman-1.a\', \'lib/libpixman-1.la\', \'lib/libpixman-1.so\', \'lib/libpixman-1.so.0\', \'lib/libpixman-1.so.0.34.0\', \'lib/pkgconfig/pixman-1.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pixman-0.34.0-0\', type=1))", "defaults::ply-3.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'80fa05f9571d7e458e54c4ffd960685b\', name=\'ply\', platform=\'linux\', subdir=\'linux-64\', version=\'3.9\', fn=\'ply-3.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ply-3.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/ply-3.9-py3.6.egg-info\', \'lib/python3.6/site-packages/ply/__init__.py\', \'lib/python3.6/site-packages/ply/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/__pycache__/cpp.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/__pycache__/ctokens.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/__pycache__/lex.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/__pycache__/yacc.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/__pycache__/ygen.cpython-36.pyc\', \'lib/python3.6/site-packages/ply/cpp.py\', \'lib/python3.6/site-packages/ply/ctokens.py\', \'lib/python3.6/site-packages/ply/lex.py\', \'lib/python3.6/site-packages/ply/yacc.py\', \'lib/python3.6/site-packages/ply/ygen.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ply-3.9-py36_0\', type=1))", "defaults::prompt_toolkit-1.0.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six >=1.9.0\', \'wcwidth\'), license=\'BSD\', md5=\'63e504efa566fa070a4943e7c77dbacf\', name=\'prompt_toolkit\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.9\', fn=\'prompt_toolkit-1.0.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/prompt_toolkit-1.0.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/prompt_toolkit-1.0.9-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/prompt_toolkit-1.0.9-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/prompt_toolkit-1.0.9-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/prompt_toolkit-1.0.9-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/prompt_toolkit-1.0.9-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/prompt_toolkit/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/auto_suggest.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/buffer.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/buffer_mapping.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/completion.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/document.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/enums.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/input.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/keys.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/mouse_events.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/output.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/reactive.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/renderer.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/search_state.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/selection.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/shortcuts.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/validation.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/__pycache__/win32_types.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/application.py\', \'lib/python3.6/site-packages/prompt_toolkit/auto_suggest.py\', \'lib/python3.6/site-packages/prompt_toolkit/buffer.py\', \'lib/python3.6/site-packages/prompt_toolkit/buffer_mapping.py\', \'lib/python3.6/site-packages/prompt_toolkit/cache.py\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/__pycache__/in_memory.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/__pycache__/pyperclip.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/in_memory.py\', \'lib/python3.6/site-packages/prompt_toolkit/clipboard/pyperclip.py\', \'lib/python3.6/site-packages/prompt_toolkit/completion.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/__pycache__/filesystem.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/__pycache__/system.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/filesystem.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/completers/system.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/completion.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/regex_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/__pycache__/validation.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/compiler.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/completion.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/lexer.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/regex_parser.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/regular_languages/validation.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__pycache__/protocol.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/application.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/log.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/protocol.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/telnet/server.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/validators/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/validators/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/validators/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/contrib/validators/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/document.py\', \'lib/python3.6/site-packages/prompt_toolkit/enums.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/asyncio_base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/asyncio_posix.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/asyncio_win32.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/callbacks.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/inputhook.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/posix.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/posix_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/select.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/__pycache__/win32.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/asyncio_base.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/asyncio_posix.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/asyncio_win32.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/callbacks.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/inputhook.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/posix.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/posix_utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/select.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/eventloop/win32.py\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__pycache__/cli.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/filters/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/filters/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/filters/cli.py\', \'lib/python3.6/site-packages/prompt_toolkit/filters/types.py\', \'lib/python3.6/site-packages/prompt_toolkit/filters/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/history.py\', \'lib/python3.6/site-packages/prompt_toolkit/input.py\', \'lib/python3.6/site-packages/prompt_toolkit/interface.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/digraphs.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/input_processor.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/__pycache__/vi_state.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/completion.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/emacs.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/named_commands.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/scroll.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/__pycache__/vi.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/basic.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/completion.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/emacs.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/named_commands.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/scroll.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/bindings/vi.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/digraphs.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/input_processor.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/manager.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/registry.py\', \'lib/python3.6/site-packages/prompt_toolkit/key_binding/vi_state.py\', \'lib/python3.6/site-packages/prompt_toolkit/keys.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/containers.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/controls.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/dimension.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/lexers.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/margins.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/menus.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/mouse_handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/processors.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/prompt.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/screen.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/toolbars.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/layout/containers.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/controls.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/dimension.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/lexers.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/margins.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/menus.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/mouse_handlers.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/processors.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/prompt.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/screen.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/toolbars.py\', \'lib/python3.6/site-packages/prompt_toolkit/layout/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/mouse_events.py\', \'lib/python3.6/site-packages/prompt_toolkit/output.py\', \'lib/python3.6/site-packages/prompt_toolkit/reactive.py\', \'lib/python3.6/site-packages/prompt_toolkit/renderer.py\', \'lib/python3.6/site-packages/prompt_toolkit/search_state.py\', \'lib/python3.6/site-packages/prompt_toolkit/selection.py\', \'lib/python3.6/site-packages/prompt_toolkit/shortcuts.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/defaults.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/from_dict.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/from_pygments.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/styles/base.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/defaults.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/from_dict.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/from_pygments.py\', \'lib/python3.6/site-packages/prompt_toolkit/styles/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__init__.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/conemu_output.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/vt100_input.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/vt100_output.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/win32_input.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/__pycache__/win32_output.cpython-36.pyc\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/conemu_output.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/vt100_input.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/vt100_output.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/win32_input.py\', \'lib/python3.6/site-packages/prompt_toolkit/terminal/win32_output.py\', \'lib/python3.6/site-packages/prompt_toolkit/token.py\', \'lib/python3.6/site-packages/prompt_toolkit/utils.py\', \'lib/python3.6/site-packages/prompt_toolkit/validation.py\', \'lib/python3.6/site-packages/prompt_toolkit/win32_types.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/prompt_toolkit-1.0.9-py36_0\', type=1))", "defaults::psutil-5.0.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'08883a36ad3290a2090bd69688211fbd\', name=\'psutil\', platform=\'linux\', subdir=\'linux-64\', version=\'5.0.1\', fn=\'psutil-5.0.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/psutil-5.0.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/psutil-5.0.1-py3.6.egg-info\', \'lib/python3.6/site-packages/psutil/__init__.py\', \'lib/python3.6/site-packages/psutil/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_common.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_psbsd.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_pslinux.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_psosx.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_psposix.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_pssunos.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/__pycache__/_pswindows.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/_common.py\', \'lib/python3.6/site-packages/psutil/_compat.py\', \'lib/python3.6/site-packages/psutil/_psbsd.py\', \'lib/python3.6/site-packages/psutil/_pslinux.py\', \'lib/python3.6/site-packages/psutil/_psosx.py\', \'lib/python3.6/site-packages/psutil/_psposix.py\', \'lib/python3.6/site-packages/psutil/_pssunos.py\', \'lib/python3.6/site-packages/psutil/_psutil_linux.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/psutil/_psutil_posix.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/psutil/_pswindows.py\', \'lib/python3.6/site-packages/psutil/tests/__init__.py\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_bsd.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_linux.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_memory_leaks.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_osx.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_posix.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_process.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_sunos.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_system.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/__pycache__/test_windows.cpython-36.pyc\', \'lib/python3.6/site-packages/psutil/tests/runner.py\', \'lib/python3.6/site-packages/psutil/tests/test_bsd.py\', \'lib/python3.6/site-packages/psutil/tests/test_linux.py\', \'lib/python3.6/site-packages/psutil/tests/test_memory_leaks.py\', \'lib/python3.6/site-packages/psutil/tests/test_misc.py\', \'lib/python3.6/site-packages/psutil/tests/test_osx.py\', \'lib/python3.6/site-packages/psutil/tests/test_posix.py\', \'lib/python3.6/site-packages/psutil/tests/test_process.py\', \'lib/python3.6/site-packages/psutil/tests/test_sunos.py\', \'lib/python3.6/site-packages/psutil/tests/test_system.py\', \'lib/python3.6/site-packages/psutil/tests/test_windows.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/psutil-5.0.1-py36_0\', type=1))", "defaults::ptyprocess-0.5.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'ISC\', license_family=\'Other\', md5=\'7090243f924bf3c48b5cc194df59cbf3\', name=\'ptyprocess\', platform=\'linux\', subdir=\'linux-64\', version=\'0.5.1\', fn=\'ptyprocess-0.5.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ptyprocess-0.5.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/ptyprocess-0.5.1-py3.6.egg-info\', \'lib/python3.6/site-packages/ptyprocess/__init__.py\', \'lib/python3.6/site-packages/ptyprocess/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ptyprocess/__pycache__/_fork_pty.cpython-36.pyc\', \'lib/python3.6/site-packages/ptyprocess/__pycache__/ptyprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/ptyprocess/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/ptyprocess/_fork_pty.py\', \'lib/python3.6/site-packages/ptyprocess/ptyprocess.py\', \'lib/python3.6/site-packages/ptyprocess/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ptyprocess-0.5.1-py36_0\', type=1))", "defaults::py-1.4.32-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'3dd2f7e88e4d59b3fbf470c968176630\', name=\'py\', platform=\'linux\', subdir=\'linux-64\', version=\'1.4.32\', fn=\'py-1.4.32-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/py-1.4.32-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/py-1.4.32-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/py-1.4.32-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/py-1.4.32-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/py-1.4.32-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/py-1.4.32-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/py/__init__.py\', \'lib/python3.6/site-packages/py/__metainfo.py\', \'lib/python3.6/site-packages/py/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/__metainfo.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_apipkg.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_builtin.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_error.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_iniconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_std.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/_xmlgen.cpython-36.pyc\', \'lib/python3.6/site-packages/py/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_apipkg.py\', \'lib/python3.6/site-packages/py/_builtin.py\', \'lib/python3.6/site-packages/py/_code/__init__.py\', \'lib/python3.6/site-packages/py/_code/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/_assertionnew.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/_assertionold.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/_py2traceback.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/assertion.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/__pycache__/source.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_code/_assertionnew.py\', \'lib/python3.6/site-packages/py/_code/_assertionold.py\', \'lib/python3.6/site-packages/py/_code/_py2traceback.py\', \'lib/python3.6/site-packages/py/_code/assertion.py\', \'lib/python3.6/site-packages/py/_code/code.py\', \'lib/python3.6/site-packages/py/_code/source.py\', \'lib/python3.6/site-packages/py/_error.py\', \'lib/python3.6/site-packages/py/_iniconfig.py\', \'lib/python3.6/site-packages/py/_io/__init__.py\', \'lib/python3.6/site-packages/py/_io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_io/__pycache__/capture.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_io/__pycache__/saferepr.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_io/__pycache__/terminalwriter.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_io/capture.py\', \'lib/python3.6/site-packages/py/_io/saferepr.py\', \'lib/python3.6/site-packages/py/_io/terminalwriter.py\', \'lib/python3.6/site-packages/py/_log/__init__.py\', \'lib/python3.6/site-packages/py/_log/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_log/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_log/__pycache__/warning.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_log/log.py\', \'lib/python3.6/site-packages/py/_log/warning.py\', \'lib/python3.6/site-packages/py/_path/__init__.py\', \'lib/python3.6/site-packages/py/_path/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/__pycache__/cacheutil.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/__pycache__/local.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/__pycache__/svnurl.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/__pycache__/svnwc.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_path/cacheutil.py\', \'lib/python3.6/site-packages/py/_path/common.py\', \'lib/python3.6/site-packages/py/_path/local.py\', \'lib/python3.6/site-packages/py/_path/svnurl.py\', \'lib/python3.6/site-packages/py/_path/svnwc.py\', \'lib/python3.6/site-packages/py/_process/__init__.py\', \'lib/python3.6/site-packages/py/_process/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_process/__pycache__/cmdexec.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_process/__pycache__/forkedfunc.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_process/__pycache__/killproc.cpython-36.pyc\', \'lib/python3.6/site-packages/py/_process/cmdexec.py\', \'lib/python3.6/site-packages/py/_process/forkedfunc.py\', \'lib/python3.6/site-packages/py/_process/killproc.py\', \'lib/python3.6/site-packages/py/_std.py\', \'lib/python3.6/site-packages/py/_xmlgen.py\', \'lib/python3.6/site-packages/py/test.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/py-1.4.32-py36_0\', type=1))", "defaults::pyasn1-0.1.9-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'eb98348883d5ac06b0d0c6fd3366742a\', name=\'pyasn1\', platform=\'linux\', subdir=\'linux-64\', version=\'0.1.9\', fn=\'pyasn1-0.1.9-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyasn1-0.1.9-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/pyasn1-0.1.9-py3.6.egg-info\', \'lib/python3.6/site-packages/pyasn1/__init__.py\', \'lib/python3.6/site-packages/pyasn1/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/__init__.py\', \'lib/python3.6/site-packages/pyasn1/codec/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/ber/__init__.py\', \'lib/python3.6/site-packages/pyasn1/codec/ber/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/ber/__pycache__/decoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/ber/__pycache__/encoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/ber/__pycache__/eoo.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/ber/decoder.py\', \'lib/python3.6/site-packages/pyasn1/codec/ber/encoder.py\', \'lib/python3.6/site-packages/pyasn1/codec/ber/eoo.py\', \'lib/python3.6/site-packages/pyasn1/codec/cer/__init__.py\', \'lib/python3.6/site-packages/pyasn1/codec/cer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/cer/__pycache__/decoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/cer/__pycache__/encoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/cer/decoder.py\', \'lib/python3.6/site-packages/pyasn1/codec/cer/encoder.py\', \'lib/python3.6/site-packages/pyasn1/codec/der/__init__.py\', \'lib/python3.6/site-packages/pyasn1/codec/der/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/der/__pycache__/decoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/der/__pycache__/encoder.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/codec/der/decoder.py\', \'lib/python3.6/site-packages/pyasn1/codec/der/encoder.py\', \'lib/python3.6/site-packages/pyasn1/compat/__init__.py\', \'lib/python3.6/site-packages/pyasn1/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/compat/__pycache__/binary.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/compat/__pycache__/octets.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/compat/binary.py\', \'lib/python3.6/site-packages/pyasn1/compat/octets.py\', \'lib/python3.6/site-packages/pyasn1/debug.py\', \'lib/python3.6/site-packages/pyasn1/error.py\', \'lib/python3.6/site-packages/pyasn1/type/__init__.py\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/char.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/constraint.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/namedtype.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/namedval.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/tag.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/tagmap.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/univ.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/__pycache__/useful.cpython-36.pyc\', \'lib/python3.6/site-packages/pyasn1/type/base.py\', \'lib/python3.6/site-packages/pyasn1/type/char.py\', \'lib/python3.6/site-packages/pyasn1/type/constraint.py\', \'lib/python3.6/site-packages/pyasn1/type/error.py\', \'lib/python3.6/site-packages/pyasn1/type/namedtype.py\', \'lib/python3.6/site-packages/pyasn1/type/namedval.py\', \'lib/python3.6/site-packages/pyasn1/type/tag.py\', \'lib/python3.6/site-packages/pyasn1/type/tagmap.py\', \'lib/python3.6/site-packages/pyasn1/type/univ.py\', \'lib/python3.6/site-packages/pyasn1/type/useful.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyasn1-0.1.9-py36_0\', type=1))", "defaults::pycosat-0.6.1-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'bd7cad63b6e7de9c226c56e575986062\', name=\'pycosat\', platform=\'linux\', subdir=\'linux-64\', version=\'0.6.1\', fn=\'pycosat-0.6.1-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pycosat-0.6.1-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/test_pycosat.cpython-36.pyc\', \'lib/python3.6/site-packages/pycosat-0.6.1-py3.6.egg-info\', \'lib/python3.6/site-packages/pycosat.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/test_pycosat.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pycosat-0.6.1-py36_1\', type=1))", "defaults::pycparser-2.17-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', license_family=\'BSD\', md5=\'f69848bd9542977b8a965d0840810636\', name=\'pycparser\', platform=\'linux\', subdir=\'linux-64\', version=\'2.17\', fn=\'pycparser-2.17-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pycparser-2.17-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/pycparser-2.17-py3.6.egg-info\', \'lib/python3.6/site-packages/pycparser/__init__.py\', \'lib/python3.6/site-packages/pycparser/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/_ast_gen.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/_build_tables.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/ast_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/c_ast.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/c_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/c_lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/c_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/lextab.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/plyparser.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/__pycache__/yacctab.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/_ast_gen.py\', \'lib/python3.6/site-packages/pycparser/_build_tables.py\', \'lib/python3.6/site-packages/pycparser/_c_ast.cfg\', \'lib/python3.6/site-packages/pycparser/ast_transforms.py\', \'lib/python3.6/site-packages/pycparser/c_ast.py\', \'lib/python3.6/site-packages/pycparser/c_generator.py\', \'lib/python3.6/site-packages/pycparser/c_lexer.py\', \'lib/python3.6/site-packages/pycparser/c_parser.py\', \'lib/python3.6/site-packages/pycparser/lextab.py\', \'lib/python3.6/site-packages/pycparser/ply/__init__.py\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/cpp.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/ctokens.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/lex.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/yacc.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/__pycache__/ygen.cpython-36.pyc\', \'lib/python3.6/site-packages/pycparser/ply/cpp.py\', \'lib/python3.6/site-packages/pycparser/ply/ctokens.py\', \'lib/python3.6/site-packages/pycparser/ply/lex.py\', \'lib/python3.6/site-packages/pycparser/ply/yacc.py\', \'lib/python3.6/site-packages/pycparser/ply/ygen.py\', \'lib/python3.6/site-packages/pycparser/plyparser.py\', \'lib/python3.6/site-packages/pycparser/yacctab.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pycparser-2.17-py36_0\', type=1))", "defaults::pycrypto-2.6.1-py36_4": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_4\', build_number=4, depends=(\'python 3.6*\',), license=\'Public-Domain\', md5=\'56769304ee423fa6ad1dab13749fad53\', name=\'pycrypto\', platform=\'linux\', subdir=\'linux-64\', version=\'2.6.1\', fn=\'pycrypto-2.6.1-py36_4.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pycrypto-2.6.1-py36_4.tar.bz2\', files=(\'lib/python3.6/site-packages/Crypto/Cipher/AES.py\', \'lib/python3.6/site-packages/Crypto/Cipher/ARC2.py\', \'lib/python3.6/site-packages/Crypto/Cipher/ARC4.py\', \'lib/python3.6/site-packages/Crypto/Cipher/Blowfish.py\', \'lib/python3.6/site-packages/Crypto/Cipher/CAST.py\', \'lib/python3.6/site-packages/Crypto/Cipher/DES.py\', \'lib/python3.6/site-packages/Crypto/Cipher/DES3.py\', \'lib/python3.6/site-packages/Crypto/Cipher/PKCS1_OAEP.py\', \'lib/python3.6/site-packages/Crypto/Cipher/PKCS1_v1_5.py\', \'lib/python3.6/site-packages/Crypto/Cipher/XOR.py\', \'lib/python3.6/site-packages/Crypto/Cipher/_AES.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_ARC2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_ARC4.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_Blowfish.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_CAST.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_DES.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_DES3.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/_XOR.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Cipher/__init__.py\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/AES.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/ARC2.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/ARC4.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/Blowfish.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/CAST.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/DES.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/DES3.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/PKCS1_OAEP.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/PKCS1_v1_5.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/XOR.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/__pycache__/blockalgo.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Cipher/blockalgo.py\', \'lib/python3.6/site-packages/Crypto/Hash/HMAC.py\', \'lib/python3.6/site-packages/Crypto/Hash/MD2.py\', \'lib/python3.6/site-packages/Crypto/Hash/MD4.py\', \'lib/python3.6/site-packages/Crypto/Hash/MD5.py\', \'lib/python3.6/site-packages/Crypto/Hash/RIPEMD.py\', \'lib/python3.6/site-packages/Crypto/Hash/SHA.py\', \'lib/python3.6/site-packages/Crypto/Hash/SHA224.py\', \'lib/python3.6/site-packages/Crypto/Hash/SHA256.py\', \'lib/python3.6/site-packages/Crypto/Hash/SHA384.py\', \'lib/python3.6/site-packages/Crypto/Hash/SHA512.py\', \'lib/python3.6/site-packages/Crypto/Hash/_MD2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_MD4.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_RIPEMD160.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_SHA224.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_SHA256.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_SHA384.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/_SHA512.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Hash/__init__.py\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/HMAC.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/MD2.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/MD4.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/MD5.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/RIPEMD.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/SHA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/SHA224.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/SHA256.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/SHA384.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/SHA512.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/__pycache__/hashalgo.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Hash/hashalgo.py\', \'lib/python3.6/site-packages/Crypto/Protocol/AllOrNothing.py\', \'lib/python3.6/site-packages/Crypto/Protocol/Chaffing.py\', \'lib/python3.6/site-packages/Crypto/Protocol/KDF.py\', \'lib/python3.6/site-packages/Crypto/Protocol/__init__.py\', \'lib/python3.6/site-packages/Crypto/Protocol/__pycache__/AllOrNothing.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Protocol/__pycache__/Chaffing.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Protocol/__pycache__/KDF.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Protocol/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/DSA.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/ElGamal.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/RSA.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/_DSA.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/_RSA.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/__init__.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/DSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/ElGamal.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/RSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/_DSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/_RSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/_slowmath.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/__pycache__/pubkey.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/PublicKey/_slowmath.py\', \'lib/python3.6/site-packages/Crypto/PublicKey/pubkey.py\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/FortunaAccumulator.py\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/FortunaGenerator.py\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/SHAd256.py\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/__init__.py\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/__pycache__/FortunaAccumulator.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/__pycache__/FortunaGenerator.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/__pycache__/SHAd256.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/Fortuna/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/__init__.py\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/__pycache__/fallback.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/__pycache__/posix.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/__pycache__/rng_base.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/fallback.py\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/posix.py\', \'lib/python3.6/site-packages/Crypto/Random/OSRNG/rng_base.py\', \'lib/python3.6/site-packages/Crypto/Random/_UserFriendlyRNG.py\', \'lib/python3.6/site-packages/Crypto/Random/__init__.py\', \'lib/python3.6/site-packages/Crypto/Random/__pycache__/_UserFriendlyRNG.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/__pycache__/random.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Random/random.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_AES.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_ARC2.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_ARC4.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_Blowfish.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_CAST.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_DES.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_DES3.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_XOR.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_pkcs1_15.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/__pycache__/test_pkcs1_oaep.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/common.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_AES.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_ARC2.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_ARC4.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_Blowfish.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_CAST.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_DES.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_DES3.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_XOR.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_pkcs1_15.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Cipher/test_pkcs1_oaep.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_HMAC.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_MD2.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_MD4.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_MD5.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_RIPEMD.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_SHA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_SHA224.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_SHA256.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_SHA384.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/__pycache__/test_SHA512.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/common.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_HMAC.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_MD2.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_MD4.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_MD5.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_RIPEMD.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_SHA.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_SHA224.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_SHA256.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_SHA384.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Hash/test_SHA512.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__pycache__/test_AllOrNothing.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__pycache__/test_KDF.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__pycache__/test_chaffing.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/__pycache__/test_rfc1751.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/test_AllOrNothing.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/test_KDF.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/test_chaffing.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Protocol/test_rfc1751.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__pycache__/test_DSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__pycache__/test_ElGamal.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__pycache__/test_RSA.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/__pycache__/test_importKey.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/test_DSA.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/test_ElGamal.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/test_RSA.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/PublicKey/test_importKey.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/__pycache__/test_FortunaAccumulator.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/__pycache__/test_FortunaGenerator.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/__pycache__/test_SHAd256.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/test_FortunaAccumulator.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/test_FortunaGenerator.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/Fortuna/test_SHAd256.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/test_fallback.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/test_generic.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/test_nt.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/test_posix.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/__pycache__/test_winrandom.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/test_fallback.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/test_generic.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/test_nt.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/test_posix.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/OSRNG/test_winrandom.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/__pycache__/test__UserFriendlyRNG.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/__pycache__/test_random.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/__pycache__/test_rpoolcompat.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/test__UserFriendlyRNG.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/test_random.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Random/test_rpoolcompat.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/__pycache__/test_pkcs1_15.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/__pycache__/test_pkcs1_pss.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/test_pkcs1_15.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Signature/test_pkcs1_pss.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__pycache__/test_Counter.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__pycache__/test_asn1.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__pycache__/test_number.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/__pycache__/test_winrandom.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/test_Counter.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/test_asn1.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/test_number.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/Util/test_winrandom.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/__init__.py\', \'lib/python3.6/site-packages/Crypto/SelfTest/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/__pycache__/st_common.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/SelfTest/st_common.py\', \'lib/python3.6/site-packages/Crypto/Signature/PKCS1_PSS.py\', \'lib/python3.6/site-packages/Crypto/Signature/PKCS1_v1_5.py\', \'lib/python3.6/site-packages/Crypto/Signature/__init__.py\', \'lib/python3.6/site-packages/Crypto/Signature/__pycache__/PKCS1_PSS.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Signature/__pycache__/PKCS1_v1_5.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Signature/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/Counter.py\', \'lib/python3.6/site-packages/Crypto/Util/RFC1751.py\', \'lib/python3.6/site-packages/Crypto/Util/__init__.py\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/Counter.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/RFC1751.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/_number_new.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/asn1.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/number.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/randpool.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/__pycache__/winrandom.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/Util/_counter.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Util/_number_new.py\', \'lib/python3.6/site-packages/Crypto/Util/asn1.py\', \'lib/python3.6/site-packages/Crypto/Util/number.py\', \'lib/python3.6/site-packages/Crypto/Util/py3compat.py\', \'lib/python3.6/site-packages/Crypto/Util/randpool.py\', \'lib/python3.6/site-packages/Crypto/Util/strxor.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/Crypto/Util/winrandom.py\', \'lib/python3.6/site-packages/Crypto/__init__.py\', \'lib/python3.6/site-packages/Crypto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/__pycache__/pct_warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/Crypto/pct_warnings.py\', \'lib/python3.6/site-packages/pycrypto-2.6.1-py3.6.egg-info\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pycrypto-2.6.1-py36_4\', type=1))", "defaults::pycurl-7.43.0-py36_2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_2\', build_number=2, depends=(\'curl 7.52.*\', \'openssl 1.0.2*\', \'python 3.6*\', \'zlib 1.2.*\'), license=\'LGPL, MIT\', license_family=\'LGPL\', md5=\'e0e9f99f106af07300b3d3b2d1ed4761\', name=\'pycurl\', platform=\'linux\', subdir=\'linux-64\', version=\'7.43.0\', fn=\'pycurl-7.43.0-py36_2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pycurl-7.43.0-py36_2.tar.bz2\', files=(\'lib/python3.6/site-packages/curl/__init__.py\', \'lib/python3.6/site-packages/curl/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pycurl-7.43.0-py3.6.egg-info\', \'lib/python3.6/site-packages/pycurl.cpython-36m-x86_64-linux-gnu.so\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pycurl-7.43.0-py36_2\', type=1))", "defaults::pyflakes-1.5.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'e6cff56ccdce0a544407a591b3bfdd2c\', name=\'pyflakes\', platform=\'linux\', subdir=\'linux-64\', version=\'1.5.0\', fn=\'pyflakes-1.5.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyflakes-1.5.0-py36_0.tar.bz2\', files=(\'bin/pyflakes\', \'lib/python3.6/site-packages/pyflakes-1.5.0-py3.6.egg-info\', \'lib/python3.6/site-packages/pyflakes/__init__.py\', \'lib/python3.6/site-packages/pyflakes/__main__.py\', \'lib/python3.6/site-packages/pyflakes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/__pycache__/checker.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/__pycache__/messages.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/__pycache__/reporter.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/api.py\', \'lib/python3.6/site-packages/pyflakes/checker.py\', \'lib/python3.6/site-packages/pyflakes/messages.py\', \'lib/python3.6/site-packages/pyflakes/reporter.py\', \'lib/python3.6/site-packages/pyflakes/scripts/__init__.py\', \'lib/python3.6/site-packages/pyflakes/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/scripts/__pycache__/pyflakes.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/scripts/pyflakes.py\', \'lib/python3.6/site-packages/pyflakes/test/__init__.py\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/harness.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_api.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_dict.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_doctests.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_other.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_return_with_arguments_inside_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/__pycache__/test_undefined_names.cpython-36.pyc\', \'lib/python3.6/site-packages/pyflakes/test/harness.py\', \'lib/python3.6/site-packages/pyflakes/test/test_api.py\', \'lib/python3.6/site-packages/pyflakes/test/test_dict.py\', \'lib/python3.6/site-packages/pyflakes/test/test_doctests.py\', \'lib/python3.6/site-packages/pyflakes/test/test_imports.py\', \'lib/python3.6/site-packages/pyflakes/test/test_other.py\', \'lib/python3.6/site-packages/pyflakes/test/test_return_with_arguments_inside_generator.py\', \'lib/python3.6/site-packages/pyflakes/test/test_undefined_names.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyflakes-1.5.0-py36_0\', type=1))", "defaults::pygments-2.1.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'fff68e6aad72f7c3c8c01abb875eacdd\', name=\'pygments\', platform=\'linux\', subdir=\'linux-64\', version=\'2.1.3\', fn=\'pygments-2.1.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pygments-2.1.3-py36_0.tar.bz2\', files=(\'bin/pygmentize\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Pygments-2.1.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pygments/__init__.py\', \'lib/python3.6/site-packages/pygments/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/cmdline.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/filter.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/formatter.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/lexer.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/modeline.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/regexopt.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/scanner.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/sphinxext.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/style.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/unistring.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/cmdline.py\', \'lib/python3.6/site-packages/pygments/console.py\', \'lib/python3.6/site-packages/pygments/filter.py\', \'lib/python3.6/site-packages/pygments/filters/__init__.py\', \'lib/python3.6/site-packages/pygments/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatter.py\', \'lib/python3.6/site-packages/pygments/formatters/__init__.py\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/_mapping.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/bbcode.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/img.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/irc.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/other.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/rtf.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/svg.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/__pycache__/terminal256.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/formatters/_mapping.py\', \'lib/python3.6/site-packages/pygments/formatters/bbcode.py\', \'lib/python3.6/site-packages/pygments/formatters/html.py\', \'lib/python3.6/site-packages/pygments/formatters/img.py\', \'lib/python3.6/site-packages/pygments/formatters/irc.py\', \'lib/python3.6/site-packages/pygments/formatters/latex.py\', \'lib/python3.6/site-packages/pygments/formatters/other.py\', \'lib/python3.6/site-packages/pygments/formatters/rtf.py\', \'lib/python3.6/site-packages/pygments/formatters/svg.py\', \'lib/python3.6/site-packages/pygments/formatters/terminal.py\', \'lib/python3.6/site-packages/pygments/formatters/terminal256.py\', \'lib/python3.6/site-packages/pygments/lexer.py\', \'lib/python3.6/site-packages/pygments/lexers/__init__.py\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_asy_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_cl_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_cocoa_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_csound_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_lasso_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_lua_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_mapping.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_mql_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_openedge_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_php_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_postgres_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_scilab_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_sourcemod_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_stan_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/_vim_builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/actionscript.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/agile.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/algebra.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ambient.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/apl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/archetype.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/asm.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/automation.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/business.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/c_cpp.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/c_like.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/chapel.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/compiled.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/configs.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/csound.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/css.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/d.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/dalvik.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/diff.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/dotnet.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/dsls.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/dylan.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ecl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/eiffel.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/elm.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/erlang.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/esoteric.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ezhil.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/factor.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/fantom.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/felix.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/fortran.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/foxpro.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/functional.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/go.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/grammar_notation.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/graph.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/graphics.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/haskell.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/haxe.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/hdl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/hexdump.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/idl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/igor.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/inferno.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/installers.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/int_fiction.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/iolang.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/j.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/javascript.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/julia.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/jvm.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/lisp.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/make.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/markup.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/math.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/matlab.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ml.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/modeling.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/modula2.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/nimrod.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/nit.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/nix.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/oberon.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/objective.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ooc.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/other.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/parasail.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/parsers.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/pascal.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/pawn.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/perl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/php.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/praat.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/prolog.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/qvt.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/r.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/rdf.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/rebol.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/resource.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/roboconf.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/robotframework.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/ruby.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/rust.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/scripting.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/shell.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/smalltalk.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/snobol.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/special.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/sql.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/supercollider.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/tcl.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/templates.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/textedit.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/textfmts.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/theorem.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/trafficscript.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/urbi.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/web.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/webmisc.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/__pycache__/x10.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/lexers/_asy_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_cl_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_cocoa_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_csound_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_lasso_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_lua_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_mapping.py\', \'lib/python3.6/site-packages/pygments/lexers/_mql_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_openedge_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_php_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_postgres_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_scilab_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_sourcemod_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_stan_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/_vim_builtins.py\', \'lib/python3.6/site-packages/pygments/lexers/actionscript.py\', \'lib/python3.6/site-packages/pygments/lexers/agile.py\', \'lib/python3.6/site-packages/pygments/lexers/algebra.py\', \'lib/python3.6/site-packages/pygments/lexers/ambient.py\', \'lib/python3.6/site-packages/pygments/lexers/apl.py\', \'lib/python3.6/site-packages/pygments/lexers/archetype.py\', \'lib/python3.6/site-packages/pygments/lexers/asm.py\', \'lib/python3.6/site-packages/pygments/lexers/automation.py\', \'lib/python3.6/site-packages/pygments/lexers/basic.py\', \'lib/python3.6/site-packages/pygments/lexers/business.py\', \'lib/python3.6/site-packages/pygments/lexers/c_cpp.py\', \'lib/python3.6/site-packages/pygments/lexers/c_like.py\', \'lib/python3.6/site-packages/pygments/lexers/chapel.py\', \'lib/python3.6/site-packages/pygments/lexers/compiled.py\', \'lib/python3.6/site-packages/pygments/lexers/configs.py\', \'lib/python3.6/site-packages/pygments/lexers/console.py\', \'lib/python3.6/site-packages/pygments/lexers/csound.py\', \'lib/python3.6/site-packages/pygments/lexers/css.py\', \'lib/python3.6/site-packages/pygments/lexers/d.py\', \'lib/python3.6/site-packages/pygments/lexers/dalvik.py\', \'lib/python3.6/site-packages/pygments/lexers/data.py\', \'lib/python3.6/site-packages/pygments/lexers/diff.py\', \'lib/python3.6/site-packages/pygments/lexers/dotnet.py\', \'lib/python3.6/site-packages/pygments/lexers/dsls.py\', \'lib/python3.6/site-packages/pygments/lexers/dylan.py\', \'lib/python3.6/site-packages/pygments/lexers/ecl.py\', \'lib/python3.6/site-packages/pygments/lexers/eiffel.py\', \'lib/python3.6/site-packages/pygments/lexers/elm.py\', \'lib/python3.6/site-packages/pygments/lexers/erlang.py\', \'lib/python3.6/site-packages/pygments/lexers/esoteric.py\', \'lib/python3.6/site-packages/pygments/lexers/ezhil.py\', \'lib/python3.6/site-packages/pygments/lexers/factor.py\', \'lib/python3.6/site-packages/pygments/lexers/fantom.py\', \'lib/python3.6/site-packages/pygments/lexers/felix.py\', \'lib/python3.6/site-packages/pygments/lexers/fortran.py\', \'lib/python3.6/site-packages/pygments/lexers/foxpro.py\', \'lib/python3.6/site-packages/pygments/lexers/functional.py\', \'lib/python3.6/site-packages/pygments/lexers/go.py\', \'lib/python3.6/site-packages/pygments/lexers/grammar_notation.py\', \'lib/python3.6/site-packages/pygments/lexers/graph.py\', \'lib/python3.6/site-packages/pygments/lexers/graphics.py\', \'lib/python3.6/site-packages/pygments/lexers/haskell.py\', \'lib/python3.6/site-packages/pygments/lexers/haxe.py\', \'lib/python3.6/site-packages/pygments/lexers/hdl.py\', \'lib/python3.6/site-packages/pygments/lexers/hexdump.py\', \'lib/python3.6/site-packages/pygments/lexers/html.py\', \'lib/python3.6/site-packages/pygments/lexers/idl.py\', \'lib/python3.6/site-packages/pygments/lexers/igor.py\', \'lib/python3.6/site-packages/pygments/lexers/inferno.py\', \'lib/python3.6/site-packages/pygments/lexers/installers.py\', \'lib/python3.6/site-packages/pygments/lexers/int_fiction.py\', \'lib/python3.6/site-packages/pygments/lexers/iolang.py\', \'lib/python3.6/site-packages/pygments/lexers/j.py\', \'lib/python3.6/site-packages/pygments/lexers/javascript.py\', \'lib/python3.6/site-packages/pygments/lexers/julia.py\', \'lib/python3.6/site-packages/pygments/lexers/jvm.py\', \'lib/python3.6/site-packages/pygments/lexers/lisp.py\', \'lib/python3.6/site-packages/pygments/lexers/make.py\', \'lib/python3.6/site-packages/pygments/lexers/markup.py\', \'lib/python3.6/site-packages/pygments/lexers/math.py\', \'lib/python3.6/site-packages/pygments/lexers/matlab.py\', \'lib/python3.6/site-packages/pygments/lexers/ml.py\', \'lib/python3.6/site-packages/pygments/lexers/modeling.py\', \'lib/python3.6/site-packages/pygments/lexers/modula2.py\', \'lib/python3.6/site-packages/pygments/lexers/nimrod.py\', \'lib/python3.6/site-packages/pygments/lexers/nit.py\', \'lib/python3.6/site-packages/pygments/lexers/nix.py\', \'lib/python3.6/site-packages/pygments/lexers/oberon.py\', \'lib/python3.6/site-packages/pygments/lexers/objective.py\', \'lib/python3.6/site-packages/pygments/lexers/ooc.py\', \'lib/python3.6/site-packages/pygments/lexers/other.py\', \'lib/python3.6/site-packages/pygments/lexers/parasail.py\', \'lib/python3.6/site-packages/pygments/lexers/parsers.py\', \'lib/python3.6/site-packages/pygments/lexers/pascal.py\', \'lib/python3.6/site-packages/pygments/lexers/pawn.py\', \'lib/python3.6/site-packages/pygments/lexers/perl.py\', \'lib/python3.6/site-packages/pygments/lexers/php.py\', \'lib/python3.6/site-packages/pygments/lexers/praat.py\', \'lib/python3.6/site-packages/pygments/lexers/prolog.py\', \'lib/python3.6/site-packages/pygments/lexers/python.py\', \'lib/python3.6/site-packages/pygments/lexers/qvt.py\', \'lib/python3.6/site-packages/pygments/lexers/r.py\', \'lib/python3.6/site-packages/pygments/lexers/rdf.py\', \'lib/python3.6/site-packages/pygments/lexers/rebol.py\', \'lib/python3.6/site-packages/pygments/lexers/resource.py\', \'lib/python3.6/site-packages/pygments/lexers/roboconf.py\', \'lib/python3.6/site-packages/pygments/lexers/robotframework.py\', \'lib/python3.6/site-packages/pygments/lexers/ruby.py\', \'lib/python3.6/site-packages/pygments/lexers/rust.py\', \'lib/python3.6/site-packages/pygments/lexers/scripting.py\', \'lib/python3.6/site-packages/pygments/lexers/shell.py\', \'lib/python3.6/site-packages/pygments/lexers/smalltalk.py\', \'lib/python3.6/site-packages/pygments/lexers/snobol.py\', \'lib/python3.6/site-packages/pygments/lexers/special.py\', \'lib/python3.6/site-packages/pygments/lexers/sql.py\', \'lib/python3.6/site-packages/pygments/lexers/supercollider.py\', \'lib/python3.6/site-packages/pygments/lexers/tcl.py\', \'lib/python3.6/site-packages/pygments/lexers/templates.py\', \'lib/python3.6/site-packages/pygments/lexers/testing.py\', \'lib/python3.6/site-packages/pygments/lexers/text.py\', \'lib/python3.6/site-packages/pygments/lexers/textedit.py\', \'lib/python3.6/site-packages/pygments/lexers/textfmts.py\', \'lib/python3.6/site-packages/pygments/lexers/theorem.py\', \'lib/python3.6/site-packages/pygments/lexers/trafficscript.py\', \'lib/python3.6/site-packages/pygments/lexers/urbi.py\', \'lib/python3.6/site-packages/pygments/lexers/web.py\', \'lib/python3.6/site-packages/pygments/lexers/webmisc.py\', \'lib/python3.6/site-packages/pygments/lexers/x10.py\', \'lib/python3.6/site-packages/pygments/modeline.py\', \'lib/python3.6/site-packages/pygments/plugin.py\', \'lib/python3.6/site-packages/pygments/regexopt.py\', \'lib/python3.6/site-packages/pygments/scanner.py\', \'lib/python3.6/site-packages/pygments/sphinxext.py\', \'lib/python3.6/site-packages/pygments/style.py\', \'lib/python3.6/site-packages/pygments/styles/__init__.py\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/algol.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/algol_nu.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/arduino.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/autumn.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/borland.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/bw.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/colorful.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/default.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/emacs.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/friendly.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/fruity.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/igor.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/lovelace.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/manni.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/monokai.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/murphy.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/native.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/paraiso_dark.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/paraiso_light.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/pastie.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/perldoc.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/rrt.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/tango.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/trac.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/vim.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/vs.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/__pycache__/xcode.cpython-36.pyc\', \'lib/python3.6/site-packages/pygments/styles/algol.py\', \'lib/python3.6/site-packages/pygments/styles/algol_nu.py\', \'lib/python3.6/site-packages/pygments/styles/arduino.py\', \'lib/python3.6/site-packages/pygments/styles/autumn.py\', \'lib/python3.6/site-packages/pygments/styles/borland.py\', \'lib/python3.6/site-packages/pygments/styles/bw.py\', \'lib/python3.6/site-packages/pygments/styles/colorful.py\', \'lib/python3.6/site-packages/pygments/styles/default.py\', \'lib/python3.6/site-packages/pygments/styles/emacs.py\', \'lib/python3.6/site-packages/pygments/styles/friendly.py\', \'lib/python3.6/site-packages/pygments/styles/fruity.py\', \'lib/python3.6/site-packages/pygments/styles/igor.py\', \'lib/python3.6/site-packages/pygments/styles/lovelace.py\', \'lib/python3.6/site-packages/pygments/styles/manni.py\', \'lib/python3.6/site-packages/pygments/styles/monokai.py\', \'lib/python3.6/site-packages/pygments/styles/murphy.py\', \'lib/python3.6/site-packages/pygments/styles/native.py\', \'lib/python3.6/site-packages/pygments/styles/paraiso_dark.py\', \'lib/python3.6/site-packages/pygments/styles/paraiso_light.py\', \'lib/python3.6/site-packages/pygments/styles/pastie.py\', \'lib/python3.6/site-packages/pygments/styles/perldoc.py\', \'lib/python3.6/site-packages/pygments/styles/rrt.py\', \'lib/python3.6/site-packages/pygments/styles/tango.py\', \'lib/python3.6/site-packages/pygments/styles/trac.py\', \'lib/python3.6/site-packages/pygments/styles/vim.py\', \'lib/python3.6/site-packages/pygments/styles/vs.py\', \'lib/python3.6/site-packages/pygments/styles/xcode.py\', \'lib/python3.6/site-packages/pygments/token.py\', \'lib/python3.6/site-packages/pygments/unistring.py\', \'lib/python3.6/site-packages/pygments/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pygments-2.1.3-py36_0\', type=1))", "defaults::pylint-1.6.4-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'astroid >=1.4.1,<1.5.0\', \'isort >=4.2.5\', \'python 3.6*\', \'six\'), license=\'GPL\', license_family=\'GPL2\', md5=\'1cfb6b639eff9d73b205c8784d1690e0\', name=\'pylint\', platform=\'linux\', subdir=\'linux-64\', version=\'1.6.4\', fn=\'pylint-1.6.4-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pylint-1.6.4-py36_1.tar.bz2\', files=(\'bin/epylint\', \'bin/pylint\', \'bin/pylint-gui\', \'bin/pyreverse\', \'bin/symilar\', \'lib/python3.6/site-packages/pylint-1.6.4-py3.6.egg-info\', \'lib/python3.6/site-packages/pylint/__init__.py\', \'lib/python3.6/site-packages/pylint/__main__.py\', \'lib/python3.6/site-packages/pylint/__pkginfo__.py\', \'lib/python3.6/site-packages/pylint/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/__pkginfo__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/epylint.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/graph.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/gui.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/lint.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/testutils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__init__.py\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/async.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/classes.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/design_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/format.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/imports.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/newstyle.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/python3.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/raw_metrics.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/similar.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/spelling.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/stdlib.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/strings.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/typecheck.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/__pycache__/variables.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/checkers/async.py\', \'lib/python3.6/site-packages/pylint/checkers/base.py\', \'lib/python3.6/site-packages/pylint/checkers/classes.py\', \'lib/python3.6/site-packages/pylint/checkers/design_analysis.py\', \'lib/python3.6/site-packages/pylint/checkers/exceptions.py\', \'lib/python3.6/site-packages/pylint/checkers/format.py\', \'lib/python3.6/site-packages/pylint/checkers/imports.py\', \'lib/python3.6/site-packages/pylint/checkers/logging.py\', \'lib/python3.6/site-packages/pylint/checkers/misc.py\', \'lib/python3.6/site-packages/pylint/checkers/newstyle.py\', \'lib/python3.6/site-packages/pylint/checkers/python3.py\', \'lib/python3.6/site-packages/pylint/checkers/raw_metrics.py\', \'lib/python3.6/site-packages/pylint/checkers/similar.py\', \'lib/python3.6/site-packages/pylint/checkers/spelling.py\', \'lib/python3.6/site-packages/pylint/checkers/stdlib.py\', \'lib/python3.6/site-packages/pylint/checkers/strings.py\', \'lib/python3.6/site-packages/pylint/checkers/typecheck.py\', \'lib/python3.6/site-packages/pylint/checkers/utils.py\', \'lib/python3.6/site-packages/pylint/checkers/variables.py\', \'lib/python3.6/site-packages/pylint/config.py\', \'lib/python3.6/site-packages/pylint/epylint.py\', \'lib/python3.6/site-packages/pylint/extensions/__init__.py\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/_check_docs_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/bad_builtin.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/check_docs.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/check_elif.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/docparams.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/docstyle.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/__pycache__/mccabe.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/extensions/_check_docs_utils.py\', \'lib/python3.6/site-packages/pylint/extensions/bad_builtin.py\', \'lib/python3.6/site-packages/pylint/extensions/check_docs.py\', \'lib/python3.6/site-packages/pylint/extensions/check_elif.py\', \'lib/python3.6/site-packages/pylint/extensions/docparams.py\', \'lib/python3.6/site-packages/pylint/extensions/docstyle.py\', \'lib/python3.6/site-packages/pylint/extensions/mccabe.py\', \'lib/python3.6/site-packages/pylint/graph.py\', \'lib/python3.6/site-packages/pylint/gui.py\', \'lib/python3.6/site-packages/pylint/interfaces.py\', \'lib/python3.6/site-packages/pylint/lint.py\', \'lib/python3.6/site-packages/pylint/pyreverse/__init__.py\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/diadefslib.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/diagrams.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/inspector.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/vcgutils.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/__pycache__/writer.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/pyreverse/diadefslib.py\', \'lib/python3.6/site-packages/pylint/pyreverse/diagrams.py\', \'lib/python3.6/site-packages/pylint/pyreverse/inspector.py\', \'lib/python3.6/site-packages/pylint/pyreverse/main.py\', \'lib/python3.6/site-packages/pylint/pyreverse/utils.py\', \'lib/python3.6/site-packages/pylint/pyreverse/vcgutils.py\', \'lib/python3.6/site-packages/pylint/pyreverse/writer.py\', \'lib/python3.6/site-packages/pylint/reporters/__init__.py\', \'lib/python3.6/site-packages/pylint/reporters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/__pycache__/guireporter.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/guireporter.py\', \'lib/python3.6/site-packages/pylint/reporters/html.py\', \'lib/python3.6/site-packages/pylint/reporters/json.py\', \'lib/python3.6/site-packages/pylint/reporters/text.py\', \'lib/python3.6/site-packages/pylint/reporters/ureports/__init__.py\', \'lib/python3.6/site-packages/pylint/reporters/ureports/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/ureports/__pycache__/html_writer.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/ureports/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/ureports/__pycache__/text_writer.cpython-36.pyc\', \'lib/python3.6/site-packages/pylint/reporters/ureports/html_writer.py\', \'lib/python3.6/site-packages/pylint/reporters/ureports/nodes.py\', \'lib/python3.6/site-packages/pylint/reporters/ureports/text_writer.py\', \'lib/python3.6/site-packages/pylint/testutils.py\', \'lib/python3.6/site-packages/pylint/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pylint-1.6.4-py36_1\', type=1))", "defaults::pyopenssl-16.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'cryptography >=1.3.4\', \'python 3.6*\', \'six >=1.5.2\'), license=\'Apache Software License\', license_family=\'Apache\', md5=\'ab002d49dc6fa951721150dd882ba3c1\', name=\'pyopenssl\', platform=\'linux\', subdir=\'linux-64\', version=\'16.2.0\', fn=\'pyopenssl-16.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyopenssl-16.2.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/OpenSSL/SSL.py\', \'lib/python3.6/site-packages/OpenSSL/__init__.py\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/SSL.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/_util.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/crypto.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/rand.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/tsafe.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/OpenSSL/_util.py\', \'lib/python3.6/site-packages/OpenSSL/crypto.py\', \'lib/python3.6/site-packages/OpenSSL/rand.py\', \'lib/python3.6/site-packages/OpenSSL/tsafe.py\', \'lib/python3.6/site-packages/OpenSSL/version.py\', \'lib/python3.6/site-packages/pyOpenSSL-16.2.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pyOpenSSL-16.2.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pyOpenSSL-16.2.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pyOpenSSL-16.2.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pyOpenSSL-16.2.0-py3.6.egg-info/top_level.txt\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyopenssl-16.2.0-py36_0\', type=1))", "defaults::pyparsing-2.1.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'34b8ec2148c0e22bc8bf6ef3662f48e3\', name=\'pyparsing\', platform=\'linux\', subdir=\'linux-64\', version=\'2.1.4\', fn=\'pyparsing-2.1.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyparsing-2.1.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/pyparsing.cpython-36.pyc\', \'lib/python3.6/site-packages/pyparsing-2.1.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pyparsing-2.1.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pyparsing-2.1.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pyparsing-2.1.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pyparsing.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyparsing-2.1.4-py36_0\', type=1))", "defaults::pyqt-5.6.0-py36_2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_2\', build_number=2, depends=(\'libgcc\', \'python 3.6*\', \'qt 5.6.*\', \'sip >=4.18\'), license=\'Commercial, GPLv2, GPLv3\', license_family=\'GPL3\', md5=\'379323f4abf4cced0864fb6d126b88cb\', name=\'pyqt\', platform=\'linux\', subdir=\'linux-64\', version=\'5.6.0\', fn=\'pyqt-5.6.0-py36_2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyqt-5.6.0-py36_2.tar.bz2\', files=(\'bin/pylupdate5\', \'bin/pyrcc5\', \'bin/pyuic5\', \'lib/python3.6/site-packages/PyQt5/Qt.pyi\', \'lib/python3.6/site-packages/PyQt5/Qt.so\', \'lib/python3.6/site-packages/PyQt5/QtBluetooth.pyi\', \'lib/python3.6/site-packages/PyQt5/QtBluetooth.so\', \'lib/python3.6/site-packages/PyQt5/QtCore.pyi\', \'lib/python3.6/site-packages/PyQt5/QtCore.so\', \'lib/python3.6/site-packages/PyQt5/QtDBus.pyi\', \'lib/python3.6/site-packages/PyQt5/QtDBus.so\', \'lib/python3.6/site-packages/PyQt5/QtDesigner.pyi\', \'lib/python3.6/site-packages/PyQt5/QtDesigner.so\', \'lib/python3.6/site-packages/PyQt5/QtGui.pyi\', \'lib/python3.6/site-packages/PyQt5/QtGui.so\', \'lib/python3.6/site-packages/PyQt5/QtHelp.pyi\', \'lib/python3.6/site-packages/PyQt5/QtHelp.so\', \'lib/python3.6/site-packages/PyQt5/QtMultimedia.pyi\', \'lib/python3.6/site-packages/PyQt5/QtMultimedia.so\', \'lib/python3.6/site-packages/PyQt5/QtMultimediaWidgets.pyi\', \'lib/python3.6/site-packages/PyQt5/QtMultimediaWidgets.so\', \'lib/python3.6/site-packages/PyQt5/QtNetwork.pyi\', \'lib/python3.6/site-packages/PyQt5/QtNetwork.so\', \'lib/python3.6/site-packages/PyQt5/QtNfc.pyi\', \'lib/python3.6/site-packages/PyQt5/QtNfc.so\', \'lib/python3.6/site-packages/PyQt5/QtOpenGL.pyi\', \'lib/python3.6/site-packages/PyQt5/QtOpenGL.so\', \'lib/python3.6/site-packages/PyQt5/QtPrintSupport.pyi\', \'lib/python3.6/site-packages/PyQt5/QtPrintSupport.so\', \'lib/python3.6/site-packages/PyQt5/QtQml.pyi\', \'lib/python3.6/site-packages/PyQt5/QtQml.so\', \'lib/python3.6/site-packages/PyQt5/QtQuick.pyi\', \'lib/python3.6/site-packages/PyQt5/QtQuick.so\', \'lib/python3.6/site-packages/PyQt5/QtQuickWidgets.pyi\', \'lib/python3.6/site-packages/PyQt5/QtQuickWidgets.so\', \'lib/python3.6/site-packages/PyQt5/QtSql.pyi\', \'lib/python3.6/site-packages/PyQt5/QtSql.so\', \'lib/python3.6/site-packages/PyQt5/QtSvg.pyi\', \'lib/python3.6/site-packages/PyQt5/QtSvg.so\', \'lib/python3.6/site-packages/PyQt5/QtTest.pyi\', \'lib/python3.6/site-packages/PyQt5/QtTest.so\', \'lib/python3.6/site-packages/PyQt5/QtWebChannel.pyi\', \'lib/python3.6/site-packages/PyQt5/QtWebChannel.so\', \'lib/python3.6/site-packages/PyQt5/QtWebKit.pyi\', \'lib/python3.6/site-packages/PyQt5/QtWebKit.so\', \'lib/python3.6/site-packages/PyQt5/QtWebKitWidgets.pyi\', \'lib/python3.6/site-packages/PyQt5/QtWebKitWidgets.so\', \'lib/python3.6/site-packages/PyQt5/QtWebSockets.pyi\', \'lib/python3.6/site-packages/PyQt5/QtWebSockets.so\', \'lib/python3.6/site-packages/PyQt5/QtWidgets.pyi\', \'lib/python3.6/site-packages/PyQt5/QtWidgets.so\', \'lib/python3.6/site-packages/PyQt5/QtX11Extras.pyi\', \'lib/python3.6/site-packages/PyQt5/QtX11Extras.so\', \'lib/python3.6/site-packages/PyQt5/QtXml.pyi\', \'lib/python3.6/site-packages/PyQt5/QtXml.so\', \'lib/python3.6/site-packages/PyQt5/QtXmlPatterns.pyi\', \'lib/python3.6/site-packages/PyQt5/QtXmlPatterns.so\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_2_0.pyi\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_2_0.so\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_2_1.pyi\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_2_1.so\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_4_1_Core.pyi\', \'lib/python3.6/site-packages/PyQt5/_QOpenGLFunctions_4_1_Core.so\', \'lib/python3.6/site-packages/PyQt5/__init__.py\', \'lib/python3.6/site-packages/PyQt5/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__init__.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/indenter.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/proxy_metaclass.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/qobjectcreator.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/__pycache__/qtproxies.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/compiler.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/indenter.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/misc.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/proxy_metaclass.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/qobjectcreator.py\', \'lib/python3.6/site-packages/PyQt5/uic/Compiler/qtproxies.py\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/__init__.py\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/__pycache__/qobjectcreator.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/loader.py\', \'lib/python3.6/site-packages/PyQt5/uic/Loader/qobjectcreator.py\', \'lib/python3.6/site-packages/PyQt5/uic/__init__.py\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/icon_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/objcreator.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/pyuic.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/__pycache__/uiparser.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/driver.py\', \'lib/python3.6/site-packages/PyQt5/uic/exceptions.py\', \'lib/python3.6/site-packages/PyQt5/uic/icon_cache.py\', \'lib/python3.6/site-packages/PyQt5/uic/objcreator.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__init__.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__pycache__/as_string.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__pycache__/ascii_upper.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__pycache__/proxy_base.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/__pycache__/string_io.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/as_string.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/ascii_upper.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/invoke.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/load_plugin.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/proxy_base.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v2/string_io.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__init__.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/as_string.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/ascii_upper.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/invoke.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/load_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/proxy_base.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/__pycache__/string_io.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/as_string.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/ascii_upper.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/invoke.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/load_plugin.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/proxy_base.py\', \'lib/python3.6/site-packages/PyQt5/uic/port_v3/string_io.py\', \'lib/python3.6/site-packages/PyQt5/uic/properties.py\', \'lib/python3.6/site-packages/PyQt5/uic/pyuic.py\', \'lib/python3.6/site-packages/PyQt5/uic/uiparser.py\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/__pycache__/qaxcontainer.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/__pycache__/qscintilla.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/__pycache__/qtprintsupport.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/__pycache__/qtquickwidgets.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/__pycache__/qtwebkit.cpython-36.pyc\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/qaxcontainer.py\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/qscintilla.py\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/qtprintsupport.py\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/qtquickwidgets.py\', \'lib/python3.6/site-packages/PyQt5/uic/widget-plugins/qtwebkit.py\', \'plugins/PyQt5/libpyqt5qmlplugin.so\', \'plugins/designer/libpyqt5.so\', \'share/sip/PyQt5/Qt/Qtmod.sip\', \'share/sip/PyQt5/QtBluetooth/QtBluetoothmod.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetooth.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothaddress.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothdevicediscoveryagent.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothdeviceinfo.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothhostinfo.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothlocaldevice.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothserver.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothservicediscoveryagent.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothserviceinfo.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothsocket.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothtransfermanager.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothtransferreply.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothtransferrequest.sip\', \'share/sip/PyQt5/QtBluetooth/qbluetoothuuid.sip\', \'share/sip/PyQt5/QtBluetooth/qlowenergycharacteristic.sip\', \'share/sip/PyQt5/QtBluetooth/qlowenergycontroller.sip\', \'share/sip/PyQt5/QtBluetooth/qlowenergydescriptor.sip\', \'share/sip/PyQt5/QtBluetooth/qlowenergyservice.sip\', \'share/sip/PyQt5/QtBluetooth/qpybluetooth_qlist.sip\', \'share/sip/PyQt5/QtBluetooth/qpybluetooth_quint128.sip\', \'share/sip/PyQt5/QtCore/QtCoremod.sip\', \'share/sip/PyQt5/QtCore/qabstractanimation.sip\', \'share/sip/PyQt5/QtCore/qabstracteventdispatcher.sip\', \'share/sip/PyQt5/QtCore/qabstractitemmodel.sip\', \'share/sip/PyQt5/QtCore/qabstractnativeeventfilter.sip\', \'share/sip/PyQt5/QtCore/qabstractproxymodel.sip\', \'share/sip/PyQt5/QtCore/qabstractstate.sip\', \'share/sip/PyQt5/QtCore/qabstracttransition.sip\', \'share/sip/PyQt5/QtCore/qanimationgroup.sip\', \'share/sip/PyQt5/QtCore/qbasictimer.sip\', \'share/sip/PyQt5/QtCore/qbitarray.sip\', \'share/sip/PyQt5/QtCore/qbuffer.sip\', \'share/sip/PyQt5/QtCore/qbytearray.sip\', \'share/sip/PyQt5/QtCore/qbytearraymatcher.sip\', \'share/sip/PyQt5/QtCore/qchar.sip\', \'share/sip/PyQt5/QtCore/qcollator.sip\', \'share/sip/PyQt5/QtCore/qcommandlineoption.sip\', \'share/sip/PyQt5/QtCore/qcommandlineparser.sip\', \'share/sip/PyQt5/QtCore/qcoreapplication.sip\', \'share/sip/PyQt5/QtCore/qcoreevent.sip\', \'share/sip/PyQt5/QtCore/qcryptographichash.sip\', \'share/sip/PyQt5/QtCore/qdatastream.sip\', \'share/sip/PyQt5/QtCore/qdatetime.sip\', \'share/sip/PyQt5/QtCore/qdir.sip\', \'share/sip/PyQt5/QtCore/qdiriterator.sip\', \'share/sip/PyQt5/QtCore/qeasingcurve.sip\', \'share/sip/PyQt5/QtCore/qelapsedtimer.sip\', \'share/sip/PyQt5/QtCore/qeventloop.sip\', \'share/sip/PyQt5/QtCore/qeventtransition.sip\', \'share/sip/PyQt5/QtCore/qfile.sip\', \'share/sip/PyQt5/QtCore/qfiledevice.sip\', \'share/sip/PyQt5/QtCore/qfileinfo.sip\', \'share/sip/PyQt5/QtCore/qfileselector.sip\', \'share/sip/PyQt5/QtCore/qfilesystemwatcher.sip\', \'share/sip/PyQt5/QtCore/qfinalstate.sip\', \'share/sip/PyQt5/QtCore/qglobal.sip\', \'share/sip/PyQt5/QtCore/qhistorystate.sip\', \'share/sip/PyQt5/QtCore/qidentityproxymodel.sip\', \'share/sip/PyQt5/QtCore/qiodevice.sip\', \'share/sip/PyQt5/QtCore/qitemselectionmodel.sip\', \'share/sip/PyQt5/QtCore/qjsonarray.sip\', \'share/sip/PyQt5/QtCore/qjsondocument.sip\', \'share/sip/PyQt5/QtCore/qjsonobject.sip\', \'share/sip/PyQt5/QtCore/qjsonvalue.sip\', \'share/sip/PyQt5/QtCore/qlibrary.sip\', \'share/sip/PyQt5/QtCore/qlibraryinfo.sip\', \'share/sip/PyQt5/QtCore/qline.sip\', \'share/sip/PyQt5/QtCore/qlocale.sip\', \'share/sip/PyQt5/QtCore/qlockfile.sip\', \'share/sip/PyQt5/QtCore/qlogging.sip\', \'share/sip/PyQt5/QtCore/qmargins.sip\', \'share/sip/PyQt5/QtCore/qmessageauthenticationcode.sip\', \'share/sip/PyQt5/QtCore/qmetaobject.sip\', \'share/sip/PyQt5/QtCore/qmetatype.sip\', \'share/sip/PyQt5/QtCore/qmimedata.sip\', \'share/sip/PyQt5/QtCore/qmimedatabase.sip\', \'share/sip/PyQt5/QtCore/qmimetype.sip\', \'share/sip/PyQt5/QtCore/qmutex.sip\', \'share/sip/PyQt5/QtCore/qnamespace.sip\', \'share/sip/PyQt5/QtCore/qnumeric.sip\', \'share/sip/PyQt5/QtCore/qobject.sip\', \'share/sip/PyQt5/QtCore/qobjectcleanuphandler.sip\', \'share/sip/PyQt5/QtCore/qobjectdefs.sip\', \'share/sip/PyQt5/QtCore/qparallelanimationgroup.sip\', \'share/sip/PyQt5/QtCore/qpauseanimation.sip\', \'share/sip/PyQt5/QtCore/qpluginloader.sip\', \'share/sip/PyQt5/QtCore/qpoint.sip\', \'share/sip/PyQt5/QtCore/qprocess.sip\', \'share/sip/PyQt5/QtCore/qpropertyanimation.sip\', \'share/sip/PyQt5/QtCore/qpycore_qhash.sip\', \'share/sip/PyQt5/QtCore/qpycore_qlist.sip\', \'share/sip/PyQt5/QtCore/qpycore_qmap.sip\', \'share/sip/PyQt5/QtCore/qpycore_qpair.sip\', \'share/sip/PyQt5/QtCore/qpycore_qset.sip\', \'share/sip/PyQt5/QtCore/qpycore_qvector.sip\', \'share/sip/PyQt5/QtCore/qpycore_virtual_error_handler.sip\', \'share/sip/PyQt5/QtCore/qreadwritelock.sip\', \'share/sip/PyQt5/QtCore/qrect.sip\', \'share/sip/PyQt5/QtCore/qregexp.sip\', \'share/sip/PyQt5/QtCore/qregularexpression.sip\', \'share/sip/PyQt5/QtCore/qresource.sip\', \'share/sip/PyQt5/QtCore/qrunnable.sip\', \'share/sip/PyQt5/QtCore/qsavefile.sip\', \'share/sip/PyQt5/QtCore/qsemaphore.sip\', \'share/sip/PyQt5/QtCore/qsequentialanimationgroup.sip\', \'share/sip/PyQt5/QtCore/qsettings.sip\', \'share/sip/PyQt5/QtCore/qsharedmemory.sip\', \'share/sip/PyQt5/QtCore/qsignalmapper.sip\', \'share/sip/PyQt5/QtCore/qsignaltransition.sip\', \'share/sip/PyQt5/QtCore/qsize.sip\', \'share/sip/PyQt5/QtCore/qsocketnotifier.sip\', \'share/sip/PyQt5/QtCore/qsortfilterproxymodel.sip\', \'share/sip/PyQt5/QtCore/qstandardpaths.sip\', \'share/sip/PyQt5/QtCore/qstate.sip\', \'share/sip/PyQt5/QtCore/qstatemachine.sip\', \'share/sip/PyQt5/QtCore/qstorageinfo.sip\', \'share/sip/PyQt5/QtCore/qstring.sip\', \'share/sip/PyQt5/QtCore/qstringlist.sip\', \'share/sip/PyQt5/QtCore/qstringlistmodel.sip\', \'share/sip/PyQt5/QtCore/qsysinfo.sip\', \'share/sip/PyQt5/QtCore/qsystemsemaphore.sip\', \'share/sip/PyQt5/QtCore/qtemporarydir.sip\', \'share/sip/PyQt5/QtCore/qtemporaryfile.sip\', \'share/sip/PyQt5/QtCore/qtextboundaryfinder.sip\', \'share/sip/PyQt5/QtCore/qtextcodec.sip\', \'share/sip/PyQt5/QtCore/qtextstream.sip\', \'share/sip/PyQt5/QtCore/qthread.sip\', \'share/sip/PyQt5/QtCore/qthreadpool.sip\', \'share/sip/PyQt5/QtCore/qtimeline.sip\', \'share/sip/PyQt5/QtCore/qtimer.sip\', \'share/sip/PyQt5/QtCore/qtimezone.sip\', \'share/sip/PyQt5/QtCore/qtranslator.sip\', \'share/sip/PyQt5/QtCore/qurl.sip\', \'share/sip/PyQt5/QtCore/qurlquery.sip\', \'share/sip/PyQt5/QtCore/quuid.sip\', \'share/sip/PyQt5/QtCore/qvariant.sip\', \'share/sip/PyQt5/QtCore/qvariantanimation.sip\', \'share/sip/PyQt5/QtCore/qversionnumber.sip\', \'share/sip/PyQt5/QtCore/qwaitcondition.sip\', \'share/sip/PyQt5/QtCore/qwineventnotifier.sip\', \'share/sip/PyQt5/QtCore/qxmlstream.sip\', \'share/sip/PyQt5/QtDBus/QtDBusmod.sip\', \'share/sip/PyQt5/QtDBus/qdbusabstractadaptor.sip\', \'share/sip/PyQt5/QtDBus/qdbusabstractinterface.sip\', \'share/sip/PyQt5/QtDBus/qdbusargument.sip\', \'share/sip/PyQt5/QtDBus/qdbusconnection.sip\', \'share/sip/PyQt5/QtDBus/qdbusconnectioninterface.sip\', \'share/sip/PyQt5/QtDBus/qdbuserror.sip\', \'share/sip/PyQt5/QtDBus/qdbusextratypes.sip\', \'share/sip/PyQt5/QtDBus/qdbusinterface.sip\', \'share/sip/PyQt5/QtDBus/qdbusmessage.sip\', \'share/sip/PyQt5/QtDBus/qdbuspendingcall.sip\', \'share/sip/PyQt5/QtDBus/qdbusservicewatcher.sip\', \'share/sip/PyQt5/QtDBus/qdbusunixfiledescriptor.sip\', \'share/sip/PyQt5/QtDBus/qpydbuspendingreply.sip\', \'share/sip/PyQt5/QtDBus/qpydbusreply.sip\', \'share/sip/PyQt5/QtDesigner/QtDesignermod.sip\', \'share/sip/PyQt5/QtDesigner/abstractactioneditor.sip\', \'share/sip/PyQt5/QtDesigner/abstractformbuilder.sip\', \'share/sip/PyQt5/QtDesigner/abstractformeditor.sip\', \'share/sip/PyQt5/QtDesigner/abstractformwindow.sip\', \'share/sip/PyQt5/QtDesigner/abstractformwindowcursor.sip\', \'share/sip/PyQt5/QtDesigner/abstractformwindowmanager.sip\', \'share/sip/PyQt5/QtDesigner/abstractobjectinspector.sip\', \'share/sip/PyQt5/QtDesigner/abstractpropertyeditor.sip\', \'share/sip/PyQt5/QtDesigner/abstractwidgetbox.sip\', \'share/sip/PyQt5/QtDesigner/container.sip\', \'share/sip/PyQt5/QtDesigner/customwidget.sip\', \'share/sip/PyQt5/QtDesigner/default_extensionfactory.sip\', \'share/sip/PyQt5/QtDesigner/extension.sip\', \'share/sip/PyQt5/QtDesigner/formbuilder.sip\', \'share/sip/PyQt5/QtDesigner/membersheet.sip\', \'share/sip/PyQt5/QtDesigner/propertysheet.sip\', \'share/sip/PyQt5/QtDesigner/qextensionmanager.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignercontainerextension.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignercustomwidgetcollectionplugin.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignercustomwidgetplugin.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignermembersheetextension.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignerpropertysheetextension.sip\', \'share/sip/PyQt5/QtDesigner/qpydesignertaskmenuextension.sip\', \'share/sip/PyQt5/QtDesigner/taskmenu.sip\', \'share/sip/PyQt5/QtGui/QtGuimod.sip\', \'share/sip/PyQt5/QtGui/opengl_types.sip\', \'share/sip/PyQt5/QtGui/qabstracttextdocumentlayout.sip\', \'share/sip/PyQt5/QtGui/qbackingstore.sip\', \'share/sip/PyQt5/QtGui/qbitmap.sip\', \'share/sip/PyQt5/QtGui/qbrush.sip\', \'share/sip/PyQt5/QtGui/qclipboard.sip\', \'share/sip/PyQt5/QtGui/qcolor.sip\', \'share/sip/PyQt5/QtGui/qcursor.sip\', \'share/sip/PyQt5/QtGui/qdesktopservices.sip\', \'share/sip/PyQt5/QtGui/qdrag.sip\', \'share/sip/PyQt5/QtGui/qevent.sip\', \'share/sip/PyQt5/QtGui/qfont.sip\', \'share/sip/PyQt5/QtGui/qfontdatabase.sip\', \'share/sip/PyQt5/QtGui/qfontinfo.sip\', \'share/sip/PyQt5/QtGui/qfontmetrics.sip\', \'share/sip/PyQt5/QtGui/qgenericmatrix.sip\', \'share/sip/PyQt5/QtGui/qglyphrun.sip\', \'share/sip/PyQt5/QtGui/qguiapplication.sip\', \'share/sip/PyQt5/QtGui/qicon.sip\', \'share/sip/PyQt5/QtGui/qiconengine.sip\', \'share/sip/PyQt5/QtGui/qimage.sip\', \'share/sip/PyQt5/QtGui/qimageiohandler.sip\', \'share/sip/PyQt5/QtGui/qimagereader.sip\', \'share/sip/PyQt5/QtGui/qimagewriter.sip\', \'share/sip/PyQt5/QtGui/qinputmethod.sip\', \'share/sip/PyQt5/QtGui/qkeysequence.sip\', \'share/sip/PyQt5/QtGui/qmatrix4x4.sip\', \'share/sip/PyQt5/QtGui/qmovie.sip\', \'share/sip/PyQt5/QtGui/qoffscreensurface.sip\', \'share/sip/PyQt5/QtGui/qopenglbuffer.sip\', \'share/sip/PyQt5/QtGui/qopenglcontext.sip\', \'share/sip/PyQt5/QtGui/qopengldebug.sip\', \'share/sip/PyQt5/QtGui/qopenglframebufferobject.sip\', \'share/sip/PyQt5/QtGui/qopenglpaintdevice.sip\', \'share/sip/PyQt5/QtGui/qopenglpixeltransferoptions.sip\', \'share/sip/PyQt5/QtGui/qopenglshaderprogram.sip\', \'share/sip/PyQt5/QtGui/qopengltexture.sip\', \'share/sip/PyQt5/QtGui/qopengltimerquery.sip\', \'share/sip/PyQt5/QtGui/qopenglversionfunctions.sip\', \'share/sip/PyQt5/QtGui/qopenglvertexarrayobject.sip\', \'share/sip/PyQt5/QtGui/qopenglwindow.sip\', \'share/sip/PyQt5/QtGui/qpagedpaintdevice.sip\', \'share/sip/PyQt5/QtGui/qpagelayout.sip\', \'share/sip/PyQt5/QtGui/qpagesize.sip\', \'share/sip/PyQt5/QtGui/qpaintdevice.sip\', \'share/sip/PyQt5/QtGui/qpaintdevicewindow.sip\', \'share/sip/PyQt5/QtGui/qpaintengine.sip\', \'share/sip/PyQt5/QtGui/qpainter.sip\', \'share/sip/PyQt5/QtGui/qpainterpath.sip\', \'share/sip/PyQt5/QtGui/qpalette.sip\', \'share/sip/PyQt5/QtGui/qpdfwriter.sip\', \'share/sip/PyQt5/QtGui/qpen.sip\', \'share/sip/PyQt5/QtGui/qpicture.sip\', \'share/sip/PyQt5/QtGui/qpixelformat.sip\', \'share/sip/PyQt5/QtGui/qpixmap.sip\', \'share/sip/PyQt5/QtGui/qpixmapcache.sip\', \'share/sip/PyQt5/QtGui/qpolygon.sip\', \'share/sip/PyQt5/QtGui/qpygui_qlist.sip\', \'share/sip/PyQt5/QtGui/qpygui_qpair.sip\', \'share/sip/PyQt5/QtGui/qpygui_qvector.sip\', \'share/sip/PyQt5/QtGui/qquaternion.sip\', \'share/sip/PyQt5/QtGui/qrasterwindow.sip\', \'share/sip/PyQt5/QtGui/qrawfont.sip\', \'share/sip/PyQt5/QtGui/qregion.sip\', \'share/sip/PyQt5/QtGui/qrgb.sip\', \'share/sip/PyQt5/QtGui/qrgba64.sip\', \'share/sip/PyQt5/QtGui/qscreen.sip\', \'share/sip/PyQt5/QtGui/qsessionmanager.sip\', \'share/sip/PyQt5/QtGui/qstandarditemmodel.sip\', \'share/sip/PyQt5/QtGui/qstatictext.sip\', \'share/sip/PyQt5/QtGui/qstylehints.sip\', \'share/sip/PyQt5/QtGui/qsurface.sip\', \'share/sip/PyQt5/QtGui/qsurfaceformat.sip\', \'share/sip/PyQt5/QtGui/qsyntaxhighlighter.sip\', \'share/sip/PyQt5/QtGui/qtextcursor.sip\', \'share/sip/PyQt5/QtGui/qtextdocument.sip\', \'share/sip/PyQt5/QtGui/qtextdocumentfragment.sip\', \'share/sip/PyQt5/QtGui/qtextdocumentwriter.sip\', \'share/sip/PyQt5/QtGui/qtextformat.sip\', \'share/sip/PyQt5/QtGui/qtextlayout.sip\', \'share/sip/PyQt5/QtGui/qtextlist.sip\', \'share/sip/PyQt5/QtGui/qtextobject.sip\', \'share/sip/PyQt5/QtGui/qtextoption.sip\', \'share/sip/PyQt5/QtGui/qtexttable.sip\', \'share/sip/PyQt5/QtGui/qtouchdevice.sip\', \'share/sip/PyQt5/QtGui/qtransform.sip\', \'share/sip/PyQt5/QtGui/qvalidator.sip\', \'share/sip/PyQt5/QtGui/qvector2d.sip\', \'share/sip/PyQt5/QtGui/qvector3d.sip\', \'share/sip/PyQt5/QtGui/qvector4d.sip\', \'share/sip/PyQt5/QtGui/qwindow.sip\', \'share/sip/PyQt5/QtGui/qwindowdefs.sip\', \'share/sip/PyQt5/QtHelp/QtHelpmod.sip\', \'share/sip/PyQt5/QtHelp/qhelpcontentwidget.sip\', \'share/sip/PyQt5/QtHelp/qhelpengine.sip\', \'share/sip/PyQt5/QtHelp/qhelpenginecore.sip\', \'share/sip/PyQt5/QtHelp/qhelpindexwidget.sip\', \'share/sip/PyQt5/QtHelp/qhelpsearchengine.sip\', \'share/sip/PyQt5/QtHelp/qhelpsearchquerywidget.sip\', \'share/sip/PyQt5/QtHelp/qhelpsearchresultwidget.sip\', \'share/sip/PyQt5/QtMultimedia/QtMultimediamod.sip\', \'share/sip/PyQt5/QtMultimedia/qabstractvideobuffer.sip\', \'share/sip/PyQt5/QtMultimedia/qabstractvideofilter.sip\', \'share/sip/PyQt5/QtMultimedia/qabstractvideosurface.sip\', \'share/sip/PyQt5/QtMultimedia/qaudio.sip\', \'share/sip/PyQt5/QtMultimedia/qaudiobuffer.sip\', \'share/sip/PyQt5/QtMultimedia/qaudiodecoder.sip\', \'share/sip/PyQt5/QtMultimedia/qaudiodeviceinfo.sip\', \'share/sip/PyQt5/QtMultimedia/qaudioformat.sip\', \'share/sip/PyQt5/QtMultimedia/qaudioinput.sip\', \'share/sip/PyQt5/QtMultimedia/qaudiooutput.sip\', \'share/sip/PyQt5/QtMultimedia/qaudioprobe.sip\', \'share/sip/PyQt5/QtMultimedia/qaudiorecorder.sip\', \'share/sip/PyQt5/QtMultimedia/qcamera.sip\', \'share/sip/PyQt5/QtMultimedia/qcameraexposure.sip\', \'share/sip/PyQt5/QtMultimedia/qcamerafocus.sip\', \'share/sip/PyQt5/QtMultimedia/qcameraimagecapture.sip\', \'share/sip/PyQt5/QtMultimedia/qcameraimageprocessing.sip\', \'share/sip/PyQt5/QtMultimedia/qcamerainfo.sip\', \'share/sip/PyQt5/QtMultimedia/qcameraviewfindersettings.sip\', \'share/sip/PyQt5/QtMultimedia/qmediabindableinterface.sip\', \'share/sip/PyQt5/QtMultimedia/qmediacontent.sip\', \'share/sip/PyQt5/QtMultimedia/qmediacontrol.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaencodersettings.sip\', \'share/sip/PyQt5/QtMultimedia/qmediametadata.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaobject.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaplayer.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaplaylist.sip\', \'share/sip/PyQt5/QtMultimedia/qmediarecorder.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaresource.sip\', \'share/sip/PyQt5/QtMultimedia/qmediaservice.sip\', \'share/sip/PyQt5/QtMultimedia/qmediatimerange.sip\', \'share/sip/PyQt5/QtMultimedia/qmultimedia.sip\', \'share/sip/PyQt5/QtMultimedia/qpymultimedia_qlist.sip\', \'share/sip/PyQt5/QtMultimedia/qradiodata.sip\', \'share/sip/PyQt5/QtMultimedia/qradiotuner.sip\', \'share/sip/PyQt5/QtMultimedia/qsound.sip\', \'share/sip/PyQt5/QtMultimedia/qsoundeffect.sip\', \'share/sip/PyQt5/QtMultimedia/qvideoframe.sip\', \'share/sip/PyQt5/QtMultimedia/qvideoprobe.sip\', \'share/sip/PyQt5/QtMultimedia/qvideosurfaceformat.sip\', \'share/sip/PyQt5/QtMultimediaWidgets/QtMultimediaWidgetsmod.sip\', \'share/sip/PyQt5/QtMultimediaWidgets/qcameraviewfinder.sip\', \'share/sip/PyQt5/QtMultimediaWidgets/qgraphicsvideoitem.sip\', \'share/sip/PyQt5/QtMultimediaWidgets/qvideowidget.sip\', \'share/sip/PyQt5/QtNetwork/QtNetworkmod.sip\', \'share/sip/PyQt5/QtNetwork/qabstractnetworkcache.sip\', \'share/sip/PyQt5/QtNetwork/qabstractsocket.sip\', \'share/sip/PyQt5/QtNetwork/qauthenticator.sip\', \'share/sip/PyQt5/QtNetwork/qdnslookup.sip\', \'share/sip/PyQt5/QtNetwork/qhostaddress.sip\', \'share/sip/PyQt5/QtNetwork/qhostinfo.sip\', \'share/sip/PyQt5/QtNetwork/qhttpmultipart.sip\', \'share/sip/PyQt5/QtNetwork/qlocalserver.sip\', \'share/sip/PyQt5/QtNetwork/qlocalsocket.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkaccessmanager.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkconfigmanager.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkconfiguration.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkcookie.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkcookiejar.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkdiskcache.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkinterface.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkproxy.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkreply.sip\', \'share/sip/PyQt5/QtNetwork/qnetworkrequest.sip\', \'share/sip/PyQt5/QtNetwork/qnetworksession.sip\', \'share/sip/PyQt5/QtNetwork/qpynetwork_qhash.sip\', \'share/sip/PyQt5/QtNetwork/qpynetwork_qmap.sip\', \'share/sip/PyQt5/QtNetwork/qssl.sip\', \'share/sip/PyQt5/QtNetwork/qsslcertificate.sip\', \'share/sip/PyQt5/QtNetwork/qsslcertificateextension.sip\', \'share/sip/PyQt5/QtNetwork/qsslcipher.sip\', \'share/sip/PyQt5/QtNetwork/qsslconfiguration.sip\', \'share/sip/PyQt5/QtNetwork/qsslellipticcurve.sip\', \'share/sip/PyQt5/QtNetwork/qsslerror.sip\', \'share/sip/PyQt5/QtNetwork/qsslkey.sip\', \'share/sip/PyQt5/QtNetwork/qsslpresharedkeyauthenticator.sip\', \'share/sip/PyQt5/QtNetwork/qsslsocket.sip\', \'share/sip/PyQt5/QtNetwork/qtcpserver.sip\', \'share/sip/PyQt5/QtNetwork/qtcpsocket.sip\', \'share/sip/PyQt5/QtNetwork/qudpsocket.sip\', \'share/sip/PyQt5/QtNfc/QtNfcmod.sip\', \'share/sip/PyQt5/QtNfc/qndeffilter.sip\', \'share/sip/PyQt5/QtNfc/qndefmessage.sip\', \'share/sip/PyQt5/QtNfc/qndefnfcsmartposterrecord.sip\', \'share/sip/PyQt5/QtNfc/qndefnfctextrecord.sip\', \'share/sip/PyQt5/QtNfc/qndefnfcurirecord.sip\', \'share/sip/PyQt5/QtNfc/qndefrecord.sip\', \'share/sip/PyQt5/QtNfc/qnearfieldmanager.sip\', \'share/sip/PyQt5/QtNfc/qnearfieldsharemanager.sip\', \'share/sip/PyQt5/QtNfc/qnearfieldsharetarget.sip\', \'share/sip/PyQt5/QtNfc/qnearfieldtarget.sip\', \'share/sip/PyQt5/QtNfc/qqmlndefrecord.sip\', \'share/sip/PyQt5/QtOpenGL/QtOpenGLmod.sip\', \'share/sip/PyQt5/QtOpenGL/qgl.sip\', \'share/sip/PyQt5/QtPrintSupport/QtPrintSupportmod.sip\', \'share/sip/PyQt5/QtPrintSupport/qabstractprintdialog.sip\', \'share/sip/PyQt5/QtPrintSupport/qpagesetupdialog.sip\', \'share/sip/PyQt5/QtPrintSupport/qprintdialog.sip\', \'share/sip/PyQt5/QtPrintSupport/qprintengine.sip\', \'share/sip/PyQt5/QtPrintSupport/qprinter.sip\', \'share/sip/PyQt5/QtPrintSupport/qprinterinfo.sip\', \'share/sip/PyQt5/QtPrintSupport/qprintpreviewdialog.sip\', \'share/sip/PyQt5/QtPrintSupport/qprintpreviewwidget.sip\', \'share/sip/PyQt5/QtPrintSupport/qpyprintsupport_qlist.sip\', \'share/sip/PyQt5/QtQml/QtQmlmod.sip\', \'share/sip/PyQt5/QtQml/qjsengine.sip\', \'share/sip/PyQt5/QtQml/qjsvalue.sip\', \'share/sip/PyQt5/QtQml/qjsvalueiterator.sip\', \'share/sip/PyQt5/QtQml/qmlattachedpropertiesobject.sip\', \'share/sip/PyQt5/QtQml/qmlregistertype.sip\', \'share/sip/PyQt5/QtQml/qpyqmllistproperty.sip\', \'share/sip/PyQt5/QtQml/qqmlabstracturlinterceptor.sip\', \'share/sip/PyQt5/QtQml/qqmlapplicationengine.sip\', \'share/sip/PyQt5/QtQml/qqmlcomponent.sip\', \'share/sip/PyQt5/QtQml/qqmlcontext.sip\', \'share/sip/PyQt5/QtQml/qqmlengine.sip\', \'share/sip/PyQt5/QtQml/qqmlerror.sip\', \'share/sip/PyQt5/QtQml/qqmlexpression.sip\', \'share/sip/PyQt5/QtQml/qqmlextensionplugin.sip\', \'share/sip/PyQt5/QtQml/qqmlfileselector.sip\', \'share/sip/PyQt5/QtQml/qqmlincubator.sip\', \'share/sip/PyQt5/QtQml/qqmllist.sip\', \'share/sip/PyQt5/QtQml/qqmlnetworkaccessmanagerfactory.sip\', \'share/sip/PyQt5/QtQml/qqmlparserstatus.sip\', \'share/sip/PyQt5/QtQml/qqmlproperty.sip\', \'share/sip/PyQt5/QtQml/qqmlpropertymap.sip\', \'share/sip/PyQt5/QtQml/qqmlpropertyvaluesource.sip\', \'share/sip/PyQt5/QtQml/qqmlscriptstring.sip\', \'share/sip/PyQt5/QtQuick/QtQuickmod.sip\', \'share/sip/PyQt5/QtQuick/qquickframebufferobject.sip\', \'share/sip/PyQt5/QtQuick/qquickimageprovider.sip\', \'share/sip/PyQt5/QtQuick/qquickitem.sip\', \'share/sip/PyQt5/QtQuick/qquickitemgrabresult.sip\', \'share/sip/PyQt5/QtQuick/qquickpainteditem.sip\', \'share/sip/PyQt5/QtQuick/qquickrendercontrol.sip\', \'share/sip/PyQt5/QtQuick/qquicktextdocument.sip\', \'share/sip/PyQt5/QtQuick/qquickview.sip\', \'share/sip/PyQt5/QtQuick/qquickwindow.sip\', \'share/sip/PyQt5/QtQuick/qsgabstractrenderer.sip\', \'share/sip/PyQt5/QtQuick/qsgengine.sip\', \'share/sip/PyQt5/QtQuick/qsgflatcolormaterial.sip\', \'share/sip/PyQt5/QtQuick/qsggeometry.sip\', \'share/sip/PyQt5/QtQuick/qsgmaterial.sip\', \'share/sip/PyQt5/QtQuick/qsgnode.sip\', \'share/sip/PyQt5/QtQuick/qsgsimplerectnode.sip\', \'share/sip/PyQt5/QtQuick/qsgsimpletexturenode.sip\', \'share/sip/PyQt5/QtQuick/qsgtexture.sip\', \'share/sip/PyQt5/QtQuick/qsgtexturematerial.sip\', \'share/sip/PyQt5/QtQuick/qsgtextureprovider.sip\', \'share/sip/PyQt5/QtQuick/qsgvertexcolormaterial.sip\', \'share/sip/PyQt5/QtQuickWidgets/QtQuickWidgetsmod.sip\', \'share/sip/PyQt5/QtQuickWidgets/qquickwidget.sip\', \'share/sip/PyQt5/QtSql/QtSqlmod.sip\', \'share/sip/PyQt5/QtSql/qsql.sip\', \'share/sip/PyQt5/QtSql/qsqldatabase.sip\', \'share/sip/PyQt5/QtSql/qsqldriver.sip\', \'share/sip/PyQt5/QtSql/qsqlerror.sip\', \'share/sip/PyQt5/QtSql/qsqlfield.sip\', \'share/sip/PyQt5/QtSql/qsqlindex.sip\', \'share/sip/PyQt5/QtSql/qsqlquery.sip\', \'share/sip/PyQt5/QtSql/qsqlquerymodel.sip\', \'share/sip/PyQt5/QtSql/qsqlrecord.sip\', \'share/sip/PyQt5/QtSql/qsqlrelationaldelegate.sip\', \'share/sip/PyQt5/QtSql/qsqlrelationaltablemodel.sip\', \'share/sip/PyQt5/QtSql/qsqlresult.sip\', \'share/sip/PyQt5/QtSql/qsqltablemodel.sip\', \'share/sip/PyQt5/QtSvg/QtSvgmod.sip\', \'share/sip/PyQt5/QtSvg/qgraphicssvgitem.sip\', \'share/sip/PyQt5/QtSvg/qsvggenerator.sip\', \'share/sip/PyQt5/QtSvg/qsvgrenderer.sip\', \'share/sip/PyQt5/QtSvg/qsvgwidget.sip\', \'share/sip/PyQt5/QtTest/QtTestmod.sip\', \'share/sip/PyQt5/QtTest/qsignalspy.sip\', \'share/sip/PyQt5/QtTest/qtestcase.sip\', \'share/sip/PyQt5/QtTest/qtestkeyboard.sip\', \'share/sip/PyQt5/QtTest/qtestmouse.sip\', \'share/sip/PyQt5/QtTest/qtestsystem.sip\', \'share/sip/PyQt5/QtTest/qtesttouch.sip\', \'share/sip/PyQt5/QtWebChannel/QtWebChannelmod.sip\', \'share/sip/PyQt5/QtWebChannel/qwebchannel.sip\', \'share/sip/PyQt5/QtWebChannel/qwebchannelabstracttransport.sip\', \'share/sip/PyQt5/QtWebKit/QtWebKitmod.sip\', \'share/sip/PyQt5/QtWebKit/qwebdatabase.sip\', \'share/sip/PyQt5/QtWebKit/qwebelement.sip\', \'share/sip/PyQt5/QtWebKit/qwebhistory.sip\', \'share/sip/PyQt5/QtWebKit/qwebhistoryinterface.sip\', \'share/sip/PyQt5/QtWebKit/qwebkitglobal.sip\', \'share/sip/PyQt5/QtWebKit/qwebpluginfactory.sip\', \'share/sip/PyQt5/QtWebKit/qwebsecurityorigin.sip\', \'share/sip/PyQt5/QtWebKit/qwebsettings.sip\', \'share/sip/PyQt5/QtWebKitWidgets/QtWebKitWidgetsmod.sip\', \'share/sip/PyQt5/QtWebKitWidgets/qgraphicswebview.sip\', \'share/sip/PyQt5/QtWebKitWidgets/qwebframe.sip\', \'share/sip/PyQt5/QtWebKitWidgets/qwebinspector.sip\', \'share/sip/PyQt5/QtWebKitWidgets/qwebpage.sip\', \'share/sip/PyQt5/QtWebKitWidgets/qwebview.sip\', \'share/sip/PyQt5/QtWebSockets/QtWebSocketsmod.sip\', \'share/sip/PyQt5/QtWebSockets/qmaskgenerator.sip\', \'share/sip/PyQt5/QtWebSockets/qwebsocket.sip\', \'share/sip/PyQt5/QtWebSockets/qwebsocketcorsauthenticator.sip\', \'share/sip/PyQt5/QtWebSockets/qwebsocketprotocol.sip\', \'share/sip/PyQt5/QtWebSockets/qwebsocketserver.sip\', \'share/sip/PyQt5/QtWidgets/QtWidgetsmod.sip\', \'share/sip/PyQt5/QtWidgets/qabstractbutton.sip\', \'share/sip/PyQt5/QtWidgets/qabstractitemdelegate.sip\', \'share/sip/PyQt5/QtWidgets/qabstractitemview.sip\', \'share/sip/PyQt5/QtWidgets/qabstractscrollarea.sip\', \'share/sip/PyQt5/QtWidgets/qabstractslider.sip\', \'share/sip/PyQt5/QtWidgets/qabstractspinbox.sip\', \'share/sip/PyQt5/QtWidgets/qaction.sip\', \'share/sip/PyQt5/QtWidgets/qactiongroup.sip\', \'share/sip/PyQt5/QtWidgets/qapplication.sip\', \'share/sip/PyQt5/QtWidgets/qboxlayout.sip\', \'share/sip/PyQt5/QtWidgets/qbuttongroup.sip\', \'share/sip/PyQt5/QtWidgets/qcalendarwidget.sip\', \'share/sip/PyQt5/QtWidgets/qcheckbox.sip\', \'share/sip/PyQt5/QtWidgets/qcolordialog.sip\', \'share/sip/PyQt5/QtWidgets/qcolumnview.sip\', \'share/sip/PyQt5/QtWidgets/qcombobox.sip\', \'share/sip/PyQt5/QtWidgets/qcommandlinkbutton.sip\', \'share/sip/PyQt5/QtWidgets/qcommonstyle.sip\', \'share/sip/PyQt5/QtWidgets/qcompleter.sip\', \'share/sip/PyQt5/QtWidgets/qdatawidgetmapper.sip\', \'share/sip/PyQt5/QtWidgets/qdatetimeedit.sip\', \'share/sip/PyQt5/QtWidgets/qdesktopwidget.sip\', \'share/sip/PyQt5/QtWidgets/qdial.sip\', \'share/sip/PyQt5/QtWidgets/qdialog.sip\', \'share/sip/PyQt5/QtWidgets/qdialogbuttonbox.sip\', \'share/sip/PyQt5/QtWidgets/qdirmodel.sip\', \'share/sip/PyQt5/QtWidgets/qdockwidget.sip\', \'share/sip/PyQt5/QtWidgets/qdrawutil.sip\', \'share/sip/PyQt5/QtWidgets/qerrormessage.sip\', \'share/sip/PyQt5/QtWidgets/qfiledialog.sip\', \'share/sip/PyQt5/QtWidgets/qfileiconprovider.sip\', \'share/sip/PyQt5/QtWidgets/qfilesystemmodel.sip\', \'share/sip/PyQt5/QtWidgets/qfocusframe.sip\', \'share/sip/PyQt5/QtWidgets/qfontcombobox.sip\', \'share/sip/PyQt5/QtWidgets/qfontdialog.sip\', \'share/sip/PyQt5/QtWidgets/qformlayout.sip\', \'share/sip/PyQt5/QtWidgets/qframe.sip\', \'share/sip/PyQt5/QtWidgets/qgesture.sip\', \'share/sip/PyQt5/QtWidgets/qgesturerecognizer.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsanchorlayout.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicseffect.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsgridlayout.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsitem.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicslayout.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicslayoutitem.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicslinearlayout.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsproxywidget.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsscene.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicssceneevent.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicstransform.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicsview.sip\', \'share/sip/PyQt5/QtWidgets/qgraphicswidget.sip\', \'share/sip/PyQt5/QtWidgets/qgridlayout.sip\', \'share/sip/PyQt5/QtWidgets/qgroupbox.sip\', \'share/sip/PyQt5/QtWidgets/qheaderview.sip\', \'share/sip/PyQt5/QtWidgets/qinputdialog.sip\', \'share/sip/PyQt5/QtWidgets/qitemdelegate.sip\', \'share/sip/PyQt5/QtWidgets/qitemeditorfactory.sip\', \'share/sip/PyQt5/QtWidgets/qkeyeventtransition.sip\', \'share/sip/PyQt5/QtWidgets/qkeysequenceedit.sip\', \'share/sip/PyQt5/QtWidgets/qlabel.sip\', \'share/sip/PyQt5/QtWidgets/qlayout.sip\', \'share/sip/PyQt5/QtWidgets/qlayoutitem.sip\', \'share/sip/PyQt5/QtWidgets/qlcdnumber.sip\', \'share/sip/PyQt5/QtWidgets/qlineedit.sip\', \'share/sip/PyQt5/QtWidgets/qlistview.sip\', \'share/sip/PyQt5/QtWidgets/qlistwidget.sip\', \'share/sip/PyQt5/QtWidgets/qmaccocoaviewcontainer.sip\', \'share/sip/PyQt5/QtWidgets/qmainwindow.sip\', \'share/sip/PyQt5/QtWidgets/qmdiarea.sip\', \'share/sip/PyQt5/QtWidgets/qmdisubwindow.sip\', \'share/sip/PyQt5/QtWidgets/qmenu.sip\', \'share/sip/PyQt5/QtWidgets/qmenubar.sip\', \'share/sip/PyQt5/QtWidgets/qmessagebox.sip\', \'share/sip/PyQt5/QtWidgets/qmouseeventtransition.sip\', \'share/sip/PyQt5/QtWidgets/qopenglwidget.sip\', \'share/sip/PyQt5/QtWidgets/qplaintextedit.sip\', \'share/sip/PyQt5/QtWidgets/qprogressbar.sip\', \'share/sip/PyQt5/QtWidgets/qprogressdialog.sip\', \'share/sip/PyQt5/QtWidgets/qproxystyle.sip\', \'share/sip/PyQt5/QtWidgets/qpushbutton.sip\', \'share/sip/PyQt5/QtWidgets/qpywidgets_qlist.sip\', \'share/sip/PyQt5/QtWidgets/qradiobutton.sip\', \'share/sip/PyQt5/QtWidgets/qrubberband.sip\', \'share/sip/PyQt5/QtWidgets/qscrollarea.sip\', \'share/sip/PyQt5/QtWidgets/qscrollbar.sip\', \'share/sip/PyQt5/QtWidgets/qscroller.sip\', \'share/sip/PyQt5/QtWidgets/qscrollerproperties.sip\', \'share/sip/PyQt5/QtWidgets/qshortcut.sip\', \'share/sip/PyQt5/QtWidgets/qsizegrip.sip\', \'share/sip/PyQt5/QtWidgets/qsizepolicy.sip\', \'share/sip/PyQt5/QtWidgets/qslider.sip\', \'share/sip/PyQt5/QtWidgets/qspinbox.sip\', \'share/sip/PyQt5/QtWidgets/qsplashscreen.sip\', \'share/sip/PyQt5/QtWidgets/qsplitter.sip\', \'share/sip/PyQt5/QtWidgets/qstackedlayout.sip\', \'share/sip/PyQt5/QtWidgets/qstackedwidget.sip\', \'share/sip/PyQt5/QtWidgets/qstatusbar.sip\', \'share/sip/PyQt5/QtWidgets/qstyle.sip\', \'share/sip/PyQt5/QtWidgets/qstyleditemdelegate.sip\', \'share/sip/PyQt5/QtWidgets/qstylefactory.sip\', \'share/sip/PyQt5/QtWidgets/qstyleoption.sip\', \'share/sip/PyQt5/QtWidgets/qstylepainter.sip\', \'share/sip/PyQt5/QtWidgets/qsystemtrayicon.sip\', \'share/sip/PyQt5/QtWidgets/qtabbar.sip\', \'share/sip/PyQt5/QtWidgets/qtableview.sip\', \'share/sip/PyQt5/QtWidgets/qtablewidget.sip\', \'share/sip/PyQt5/QtWidgets/qtabwidget.sip\', \'share/sip/PyQt5/QtWidgets/qtextbrowser.sip\', \'share/sip/PyQt5/QtWidgets/qtextedit.sip\', \'share/sip/PyQt5/QtWidgets/qtoolbar.sip\', \'share/sip/PyQt5/QtWidgets/qtoolbox.sip\', \'share/sip/PyQt5/QtWidgets/qtoolbutton.sip\', \'share/sip/PyQt5/QtWidgets/qtooltip.sip\', \'share/sip/PyQt5/QtWidgets/qtreeview.sip\', \'share/sip/PyQt5/QtWidgets/qtreewidget.sip\', \'share/sip/PyQt5/QtWidgets/qtreewidgetitemiterator.sip\', \'share/sip/PyQt5/QtWidgets/qundogroup.sip\', \'share/sip/PyQt5/QtWidgets/qundostack.sip\', \'share/sip/PyQt5/QtWidgets/qundoview.sip\', \'share/sip/PyQt5/QtWidgets/qwhatsthis.sip\', \'share/sip/PyQt5/QtWidgets/qwidget.sip\', \'share/sip/PyQt5/QtWidgets/qwidgetaction.sip\', \'share/sip/PyQt5/QtWidgets/qwizard.sip\', \'share/sip/PyQt5/QtX11Extras/QtX11Extrasmod.sip\', \'share/sip/PyQt5/QtX11Extras/qx11info_x11.sip\', \'share/sip/PyQt5/QtXml/QtXmlmod.sip\', \'share/sip/PyQt5/QtXml/qdom.sip\', \'share/sip/PyQt5/QtXml/qxml.sip\', \'share/sip/PyQt5/QtXmlPatterns/QtXmlPatternsmod.sip\', \'share/sip/PyQt5/QtXmlPatterns/qabstractmessagehandler.sip\', \'share/sip/PyQt5/QtXmlPatterns/qabstracturiresolver.sip\', \'share/sip/PyQt5/QtXmlPatterns/qabstractxmlnodemodel.sip\', \'share/sip/PyQt5/QtXmlPatterns/qabstractxmlreceiver.sip\', \'share/sip/PyQt5/QtXmlPatterns/qsimplexmlnodemodel.sip\', \'share/sip/PyQt5/QtXmlPatterns/qsourcelocation.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlformatter.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlname.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlnamepool.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlquery.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlresultitems.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlschema.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlschemavalidator.sip\', \'share/sip/PyQt5/QtXmlPatterns/qxmlserializer.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_2_0/_QOpenGLFunctions_2_0mod.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_2_0/qopenglfunctions_2_0.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_2_1/_QOpenGLFunctions_2_1mod.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_2_1/qopenglfunctions_2_1.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_4_1_Core/_QOpenGLFunctions_4_1_Coremod.sip\', \'share/sip/PyQt5/_QOpenGLFunctions_4_1_Core/qopenglfunctions_4_1_core.sip\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyqt-5.6.0-py36_2\', type=1))", "defaults::pytables-3.3.0-np111py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_0\', build_number=0, depends=(\'hdf5 1.8.17\', \'numexpr\', \'numpy 1.11*\', \'python 3.6*\', \'six\', \'zlib 1.2.*\'), license=\'BSD\', md5=\'97637acc03c0ba3422bf3641cb7add15\', name=\'pytables\', platform=\'linux\', subdir=\'linux-64\', version=\'3.3.0\', fn=\'pytables-3.3.0-np111py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pytables-3.3.0-np111py36_0.tar.bz2\', files=(\'bin/pt2to3\', \'bin/ptdump\', \'bin/ptrepack\', \'bin/pttree\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/tables-3.3.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/tables/__init__.py\', \'lib/python3.6/site-packages/tables/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/array.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/atom.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/attributeset.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/carray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/conditions.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/description.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/earray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/expression.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/file.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/flavor.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/group.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/idxutils.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/index.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/indexes.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/leaf.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/link.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/node.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/parameters.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/path.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/req_versions.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/undoredo.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/unimplemented.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/__pycache__/vlarray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/_comp_bzip2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/_comp_lzo.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/array.py\', \'lib/python3.6/site-packages/tables/atom.py\', \'lib/python3.6/site-packages/tables/attributeset.py\', \'lib/python3.6/site-packages/tables/carray.py\', \'lib/python3.6/site-packages/tables/conditions.py\', \'lib/python3.6/site-packages/tables/description.py\', \'lib/python3.6/site-packages/tables/earray.py\', \'lib/python3.6/site-packages/tables/exceptions.py\', \'lib/python3.6/site-packages/tables/expression.py\', \'lib/python3.6/site-packages/tables/file.py\', \'lib/python3.6/site-packages/tables/filters.py\', \'lib/python3.6/site-packages/tables/flavor.py\', \'lib/python3.6/site-packages/tables/group.py\', \'lib/python3.6/site-packages/tables/hdf5extension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/idxutils.py\', \'lib/python3.6/site-packages/tables/index.py\', \'lib/python3.6/site-packages/tables/indexes.py\', \'lib/python3.6/site-packages/tables/indexesextension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/leaf.py\', \'lib/python3.6/site-packages/tables/link.py\', \'lib/python3.6/site-packages/tables/linkextension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/lrucacheextension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/misc/__init__.py\', \'lib/python3.6/site-packages/tables/misc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/misc/__pycache__/enum.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/misc/__pycache__/proxydict.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/misc/enum.py\', \'lib/python3.6/site-packages/tables/misc/proxydict.py\', \'lib/python3.6/site-packages/tables/node.py\', \'lib/python3.6/site-packages/tables/nodes/__init__.py\', \'lib/python3.6/site-packages/tables/nodes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/nodes/__pycache__/filenode.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/nodes/filenode.py\', \'lib/python3.6/site-packages/tables/nodes/tests/__init__.py\', \'lib/python3.6/site-packages/tables/nodes/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/nodes/tests/__pycache__/test_filenode.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/nodes/tests/test_filenode.dat\', \'lib/python3.6/site-packages/tables/nodes/tests/test_filenode.py\', \'lib/python3.6/site-packages/tables/nodes/tests/test_filenode.xbm\', \'lib/python3.6/site-packages/tables/nodes/tests/test_filenode_v1.h5\', \'lib/python3.6/site-packages/tables/parameters.py\', \'lib/python3.6/site-packages/tables/path.py\', \'lib/python3.6/site-packages/tables/registry.py\', \'lib/python3.6/site-packages/tables/req_versions.py\', \'lib/python3.6/site-packages/tables/scripts/__init__.py\', \'lib/python3.6/site-packages/tables/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/scripts/__pycache__/pt2to3.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/scripts/__pycache__/ptdump.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/scripts/__pycache__/ptrepack.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/scripts/__pycache__/pttree.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/scripts/pt2to3.py\', \'lib/python3.6/site-packages/tables/scripts/ptdump.py\', \'lib/python3.6/site-packages/tables/scripts/ptrepack.py\', \'lib/python3.6/site-packages/tables/scripts/pttree.py\', \'lib/python3.6/site-packages/tables/table.py\', \'lib/python3.6/site-packages/tables/tableextension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/tests/Table2_1_lzo_nrv2e_shuffle.h5\', \'lib/python3.6/site-packages/tables/tests/Tables_lzo1.h5\', \'lib/python3.6/site-packages/tables/tests/Tables_lzo1_shuffle.h5\', \'lib/python3.6/site-packages/tables/tests/Tables_lzo2.h5\', \'lib/python3.6/site-packages/tables/tests/Tables_lzo2_shuffle.h5\', \'lib/python3.6/site-packages/tables/tests/__init__.py\', \'lib/python3.6/site-packages/tables/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/check_leaks.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/create_backcompat_indexes.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_all.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_array.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_aux.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_backcompat.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_basics.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_carray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_create.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_do_undo.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_earray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_enum.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_expression.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_garbage.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_hdf5compat.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_index_backcompat.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_indexes.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_indexvalues.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_links.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_lists.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_nestedtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_queries.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_tables.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_tablesMD.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_timetype.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_types.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/__pycache__/test_vlarray.cpython-36.pyc\', \'lib/python3.6/site-packages/tables/tests/array_mdatom.h5\', \'lib/python3.6/site-packages/tables/tests/attr-u16.h5\', \'lib/python3.6/site-packages/tables/tests/blosc_bigendian.h5\', \'lib/python3.6/site-packages/tables/tests/bug-idx.h5\', \'lib/python3.6/site-packages/tables/tests/check_leaks.py\', \'lib/python3.6/site-packages/tables/tests/common.py\', \'lib/python3.6/site-packages/tables/tests/create_backcompat_indexes.py\', \'lib/python3.6/site-packages/tables/tests/elink.h5\', \'lib/python3.6/site-packages/tables/tests/elink2.h5\', \'lib/python3.6/site-packages/tables/tests/ex-noattr.h5\', \'lib/python3.6/site-packages/tables/tests/flavored_vlarrays-format1.6.h5\', \'lib/python3.6/site-packages/tables/tests/float.h5\', \'lib/python3.6/site-packages/tables/tests/idx-std-1.x.h5\', \'lib/python3.6/site-packages/tables/tests/indexes_2_0.h5\', \'lib/python3.6/site-packages/tables/tests/indexes_2_1.h5\', \'lib/python3.6/site-packages/tables/tests/issue_368.h5\', \'lib/python3.6/site-packages/tables/tests/issue_560.h5\', \'lib/python3.6/site-packages/tables/tests/matlab_file.mat\', \'lib/python3.6/site-packages/tables/tests/nested-type-with-gaps.h5\', \'lib/python3.6/site-packages/tables/tests/non-chunked-table.h5\', \'lib/python3.6/site-packages/tables/tests/oldflavor_numeric.h5\', \'lib/python3.6/site-packages/tables/tests/python2.h5\', \'lib/python3.6/site-packages/tables/tests/python3.h5\', \'lib/python3.6/site-packages/tables/tests/scalar.h5\', \'lib/python3.6/site-packages/tables/tests/slink.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_SDSextendible.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_compound_chunked.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_enum.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_f64be.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_f64le.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_i32be.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_i32le.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_i64be.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_i64le.h5\', \'lib/python3.6/site-packages/tables/tests/smpl_unsupptype.h5\', \'lib/python3.6/site-packages/tables/tests/test_all.py\', \'lib/python3.6/site-packages/tables/tests/test_array.py\', \'lib/python3.6/site-packages/tables/tests/test_attributes.py\', \'lib/python3.6/site-packages/tables/tests/test_aux.py\', \'lib/python3.6/site-packages/tables/tests/test_backcompat.py\', \'lib/python3.6/site-packages/tables/tests/test_basics.py\', \'lib/python3.6/site-packages/tables/tests/test_carray.py\', \'lib/python3.6/site-packages/tables/tests/test_create.py\', \'lib/python3.6/site-packages/tables/tests/test_do_undo.py\', \'lib/python3.6/site-packages/tables/tests/test_earray.py\', \'lib/python3.6/site-packages/tables/tests/test_enum.py\', \'lib/python3.6/site-packages/tables/tests/test_expression.py\', \'lib/python3.6/site-packages/tables/tests/test_garbage.py\', \'lib/python3.6/site-packages/tables/tests/test_hdf5compat.py\', \'lib/python3.6/site-packages/tables/tests/test_index_backcompat.py\', \'lib/python3.6/site-packages/tables/tests/test_indexes.py\', \'lib/python3.6/site-packages/tables/tests/test_indexvalues.py\', \'lib/python3.6/site-packages/tables/tests/test_links.py\', \'lib/python3.6/site-packages/tables/tests/test_lists.py\', \'lib/python3.6/site-packages/tables/tests/test_nestedtypes.py\', \'lib/python3.6/site-packages/tables/tests/test_numpy.py\', \'lib/python3.6/site-packages/tables/tests/test_queries.py\', \'lib/python3.6/site-packages/tables/tests/test_ref_array1.mat\', \'lib/python3.6/site-packages/tables/tests/test_ref_array2.mat\', \'lib/python3.6/site-packages/tables/tests/test_szip.h5\', \'lib/python3.6/site-packages/tables/tests/test_tables.py\', \'lib/python3.6/site-packages/tables/tests/test_tablesMD.py\', \'lib/python3.6/site-packages/tables/tests/test_timetype.py\', \'lib/python3.6/site-packages/tables/tests/test_tree.py\', \'lib/python3.6/site-packages/tables/tests/test_types.py\', \'lib/python3.6/site-packages/tables/tests/test_vlarray.py\', \'lib/python3.6/site-packages/tables/tests/time-table-vlarray-1_x.h5\', \'lib/python3.6/site-packages/tables/tests/times-nested-be.h5\', \'lib/python3.6/site-packages/tables/tests/vlstr_attr.h5\', \'lib/python3.6/site-packages/tables/tests/vlunicode_endian.h5\', \'lib/python3.6/site-packages/tables/tests/zerodim-attrs-1.3.h5\', \'lib/python3.6/site-packages/tables/tests/zerodim-attrs-1.4.h5\', \'lib/python3.6/site-packages/tables/undoredo.py\', \'lib/python3.6/site-packages/tables/unimplemented.py\', \'lib/python3.6/site-packages/tables/utils.py\', \'lib/python3.6/site-packages/tables/utilsextension.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tables/vlarray.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pytables-3.3.0-np111py36_0\', type=1))", "defaults::pytest-3.0.5-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'py >=1.4.29\', \'python 3.6*\', \'setuptools\'), license=\'MIT\', md5=\'3d51d36f8de0f4955e2e3059776af5d6\', name=\'pytest\', platform=\'linux\', subdir=\'linux-64\', version=\'3.0.5\', fn=\'pytest-3.0.5-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pytest-3.0.5-py36_0.tar.bz2\', files=(\'bin/py.test\', \'bin/pytest\', \'lib/python3.6/site-packages/__pycache__/pytest.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__init__.py\', \'lib/python3.6/site-packages/_pytest/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/_argcomplete.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/_pluggy.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/cacheprovider.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/capture.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/debugging.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/deprecated.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/doctest.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/fixtures.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/freeze_support.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/helpconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/hookspec.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/junitxml.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/mark.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/monkeypatch.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/nose.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/pastebin.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/pytester.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/recwarn.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/resultlog.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/setuponly.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/setupplan.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/skipping.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/tmpdir.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/__pycache__/unittest.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/_argcomplete.py\', \'lib/python3.6/site-packages/_pytest/_code/__init__.py\', \'lib/python3.6/site-packages/_pytest/_code/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/_code/__pycache__/_py2traceback.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/_code/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/_code/__pycache__/source.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/_code/_py2traceback.py\', \'lib/python3.6/site-packages/_pytest/_code/code.py\', \'lib/python3.6/site-packages/_pytest/_code/source.py\', \'lib/python3.6/site-packages/_pytest/_pluggy.py\', \'lib/python3.6/site-packages/_pytest/assertion/__init__.py\', \'lib/python3.6/site-packages/_pytest/assertion/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/assertion/__pycache__/rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/assertion/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/assertion/rewrite.py\', \'lib/python3.6/site-packages/_pytest/assertion/util.py\', \'lib/python3.6/site-packages/_pytest/cacheprovider.py\', \'lib/python3.6/site-packages/_pytest/capture.py\', \'lib/python3.6/site-packages/_pytest/compat.py\', \'lib/python3.6/site-packages/_pytest/config.py\', \'lib/python3.6/site-packages/_pytest/debugging.py\', \'lib/python3.6/site-packages/_pytest/deprecated.py\', \'lib/python3.6/site-packages/_pytest/doctest.py\', \'lib/python3.6/site-packages/_pytest/fixtures.py\', \'lib/python3.6/site-packages/_pytest/freeze_support.py\', \'lib/python3.6/site-packages/_pytest/helpconfig.py\', \'lib/python3.6/site-packages/_pytest/hookspec.py\', \'lib/python3.6/site-packages/_pytest/junitxml.py\', \'lib/python3.6/site-packages/_pytest/main.py\', \'lib/python3.6/site-packages/_pytest/mark.py\', \'lib/python3.6/site-packages/_pytest/monkeypatch.py\', \'lib/python3.6/site-packages/_pytest/nose.py\', \'lib/python3.6/site-packages/_pytest/pastebin.py\', \'lib/python3.6/site-packages/_pytest/pytester.py\', \'lib/python3.6/site-packages/_pytest/python.py\', \'lib/python3.6/site-packages/_pytest/recwarn.py\', \'lib/python3.6/site-packages/_pytest/resultlog.py\', \'lib/python3.6/site-packages/_pytest/runner.py\', \'lib/python3.6/site-packages/_pytest/setuponly.py\', \'lib/python3.6/site-packages/_pytest/setupplan.py\', \'lib/python3.6/site-packages/_pytest/skipping.py\', \'lib/python3.6/site-packages/_pytest/terminal.py\', \'lib/python3.6/site-packages/_pytest/tmpdir.py\', \'lib/python3.6/site-packages/_pytest/unittest.py\', \'lib/python3.6/site-packages/_pytest/vendored_packages/__init__.py\', \'lib/python3.6/site-packages/_pytest/vendored_packages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/vendored_packages/__pycache__/pluggy.cpython-36.pyc\', \'lib/python3.6/site-packages/_pytest/vendored_packages/pluggy.py\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/pytest-3.0.5-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/pytest.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pytest-3.0.5-py36_0\', type=1))", "defaults::python-3.6.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'openssl 1.0.2*\', \'readline 6.2\', \'sqlite 3.13.*\', \'tk 8.5.18\', \'xz 5.2.*\', \'zlib 1.2.*\'), license=\'PSF\', md5=\'a285595cc413d6784843a2dafc6642c6\', name=\'python\', platform=\'linux\', subdir=\'linux-64\', version=\'3.6.0\', fn=\'python-3.6.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/python-3.6.0-0.tar.bz2\', files=(\'bin/2to3\', \'bin/2to3-3.6\', \'bin/idle3\', \'bin/idle3.6\', \'bin/pydoc\', \'bin/pydoc3\', \'bin/pydoc3.6\', \'bin/python\', \'bin/python3\', \'bin/python3-config\', \'bin/python3.6\', \'bin/python3.6-config\', \'bin/python3.6m\', \'bin/python3.6m-config\', \'bin/pyvenv\', \'bin/pyvenv-3.6\', \'include/python3.6m/Python-ast.h\', \'include/python3.6m/Python.h\', \'include/python3.6m/abstract.h\', \'include/python3.6m/accu.h\', \'include/python3.6m/asdl.h\', \'include/python3.6m/ast.h\', \'include/python3.6m/bitset.h\', \'include/python3.6m/bltinmodule.h\', \'include/python3.6m/boolobject.h\', \'include/python3.6m/bytearrayobject.h\', \'include/python3.6m/bytes_methods.h\', \'include/python3.6m/bytesobject.h\', \'include/python3.6m/cellobject.h\', \'include/python3.6m/ceval.h\', \'include/python3.6m/classobject.h\', \'include/python3.6m/code.h\', \'include/python3.6m/codecs.h\', \'include/python3.6m/compile.h\', \'include/python3.6m/complexobject.h\', \'include/python3.6m/datetime.h\', \'include/python3.6m/descrobject.h\', \'include/python3.6m/dictobject.h\', \'include/python3.6m/dtoa.h\', \'include/python3.6m/dynamic_annotations.h\', \'include/python3.6m/enumobject.h\', \'include/python3.6m/errcode.h\', \'include/python3.6m/eval.h\', \'include/python3.6m/fileobject.h\', \'include/python3.6m/fileutils.h\', \'include/python3.6m/floatobject.h\', \'include/python3.6m/frameobject.h\', \'include/python3.6m/funcobject.h\', \'include/python3.6m/genobject.h\', \'include/python3.6m/graminit.h\', \'include/python3.6m/grammar.h\', \'include/python3.6m/import.h\', \'include/python3.6m/intrcheck.h\', \'include/python3.6m/iterobject.h\', \'include/python3.6m/listobject.h\', \'include/python3.6m/longintrepr.h\', \'include/python3.6m/longobject.h\', \'include/python3.6m/marshal.h\', \'include/python3.6m/memoryobject.h\', \'include/python3.6m/metagrammar.h\', \'include/python3.6m/methodobject.h\', \'include/python3.6m/modsupport.h\', \'include/python3.6m/moduleobject.h\', \'include/python3.6m/namespaceobject.h\', \'include/python3.6m/node.h\', \'include/python3.6m/object.h\', \'include/python3.6m/objimpl.h\', \'include/python3.6m/odictobject.h\', \'include/python3.6m/opcode.h\', \'include/python3.6m/osdefs.h\', \'include/python3.6m/osmodule.h\', \'include/python3.6m/parsetok.h\', \'include/python3.6m/patchlevel.h\', \'include/python3.6m/pgen.h\', \'include/python3.6m/pgenheaders.h\', \'include/python3.6m/py_curses.h\', \'include/python3.6m/pyarena.h\', \'include/python3.6m/pyatomic.h\', \'include/python3.6m/pycapsule.h\', \'include/python3.6m/pyconfig.h\', \'include/python3.6m/pyctype.h\', \'include/python3.6m/pydebug.h\', \'include/python3.6m/pydtrace.h\', \'include/python3.6m/pyerrors.h\', \'include/python3.6m/pyexpat.h\', \'include/python3.6m/pyfpe.h\', \'include/python3.6m/pygetopt.h\', \'include/python3.6m/pyhash.h\', \'include/python3.6m/pylifecycle.h\', \'include/python3.6m/pymacconfig.h\', \'include/python3.6m/pymacro.h\', \'include/python3.6m/pymath.h\', \'include/python3.6m/pymem.h\', \'include/python3.6m/pyport.h\', \'include/python3.6m/pystate.h\', \'include/python3.6m/pystrcmp.h\', \'include/python3.6m/pystrhex.h\', \'include/python3.6m/pystrtod.h\', \'include/python3.6m/pythonrun.h\', \'include/python3.6m/pythread.h\', \'include/python3.6m/pytime.h\', \'include/python3.6m/rangeobject.h\', \'include/python3.6m/setobject.h\', \'include/python3.6m/sliceobject.h\', \'include/python3.6m/structmember.h\', \'include/python3.6m/structseq.h\', \'include/python3.6m/symtable.h\', \'include/python3.6m/sysmodule.h\', \'include/python3.6m/token.h\', \'include/python3.6m/traceback.h\', \'include/python3.6m/tupleobject.h\', \'include/python3.6m/typeslots.h\', \'include/python3.6m/ucnhash.h\', \'include/python3.6m/unicodeobject.h\', \'include/python3.6m/warnings.h\', \'include/python3.6m/weakrefobject.h\', \'lib/libpython3.6m.so\', \'lib/libpython3.6m.so.1.0\', \'lib/libpython3.so\', \'lib/pkgconfig/python-3.6.pc\', \'lib/pkgconfig/python-3.6m.pc\', \'lib/pkgconfig/python3.pc\', \'lib/python3.6/LICENSE.txt\', \'lib/python3.6/__future__.py\', \'lib/python3.6/__phello__.foo.py\', \'lib/python3.6/__pycache__/__future__.cpython-36.pyc\', \'lib/python3.6/__pycache__/__phello__.foo.cpython-36.pyc\', \'lib/python3.6/__pycache__/_bootlocale.cpython-36.pyc\', \'lib/python3.6/__pycache__/_collections_abc.cpython-36.pyc\', \'lib/python3.6/__pycache__/_compat_pickle.cpython-36.pyc\', \'lib/python3.6/__pycache__/_compression.cpython-36.pyc\', \'lib/python3.6/__pycache__/_dummy_thread.cpython-36.pyc\', \'lib/python3.6/__pycache__/_markupbase.cpython-36.pyc\', \'lib/python3.6/__pycache__/_osx_support.cpython-36.pyc\', \'lib/python3.6/__pycache__/_pydecimal.cpython-36.pyc\', \'lib/python3.6/__pycache__/_pyio.cpython-36.pyc\', \'lib/python3.6/__pycache__/_sitebuiltins.cpython-36.pyc\', \'lib/python3.6/__pycache__/_strptime.cpython-36.pyc\', \'lib/python3.6/__pycache__/_sysconfigdata_m_linux_x86_64-linux-gnu.cpython-36.pyc\', \'lib/python3.6/__pycache__/_threading_local.cpython-36.pyc\', \'lib/python3.6/__pycache__/_weakrefset.cpython-36.pyc\', \'lib/python3.6/__pycache__/abc.cpython-36.pyc\', \'lib/python3.6/__pycache__/aifc.cpython-36.pyc\', \'lib/python3.6/__pycache__/antigravity.cpython-36.pyc\', \'lib/python3.6/__pycache__/argparse.cpython-36.pyc\', \'lib/python3.6/__pycache__/ast.cpython-36.pyc\', \'lib/python3.6/__pycache__/asynchat.cpython-36.pyc\', \'lib/python3.6/__pycache__/asyncore.cpython-36.pyc\', \'lib/python3.6/__pycache__/base64.cpython-36.pyc\', \'lib/python3.6/__pycache__/bdb.cpython-36.pyc\', \'lib/python3.6/__pycache__/binhex.cpython-36.pyc\', \'lib/python3.6/__pycache__/bisect.cpython-36.pyc\', \'lib/python3.6/__pycache__/bz2.cpython-36.pyc\', \'lib/python3.6/__pycache__/cProfile.cpython-36.pyc\', \'lib/python3.6/__pycache__/calendar.cpython-36.pyc\', \'lib/python3.6/__pycache__/cgi.cpython-36.pyc\', \'lib/python3.6/__pycache__/cgitb.cpython-36.pyc\', \'lib/python3.6/__pycache__/chunk.cpython-36.pyc\', \'lib/python3.6/__pycache__/cmd.cpython-36.pyc\', \'lib/python3.6/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/__pycache__/codecs.cpython-36.pyc\', \'lib/python3.6/__pycache__/codeop.cpython-36.pyc\', \'lib/python3.6/__pycache__/colorsys.cpython-36.pyc\', \'lib/python3.6/__pycache__/compileall.cpython-36.pyc\', \'lib/python3.6/__pycache__/configparser.cpython-36.pyc\', \'lib/python3.6/__pycache__/contextlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/copy.cpython-36.pyc\', \'lib/python3.6/__pycache__/copyreg.cpython-36.pyc\', \'lib/python3.6/__pycache__/crypt.cpython-36.pyc\', \'lib/python3.6/__pycache__/csv.cpython-36.pyc\', \'lib/python3.6/__pycache__/datetime.cpython-36.pyc\', \'lib/python3.6/__pycache__/decimal.cpython-36.pyc\', \'lib/python3.6/__pycache__/difflib.cpython-36.pyc\', \'lib/python3.6/__pycache__/dis.cpython-36.pyc\', \'lib/python3.6/__pycache__/doctest.cpython-36.pyc\', \'lib/python3.6/__pycache__/dummy_threading.cpython-36.pyc\', \'lib/python3.6/__pycache__/enum.cpython-36.pyc\', \'lib/python3.6/__pycache__/filecmp.cpython-36.pyc\', \'lib/python3.6/__pycache__/fileinput.cpython-36.pyc\', \'lib/python3.6/__pycache__/fnmatch.cpython-36.pyc\', \'lib/python3.6/__pycache__/formatter.cpython-36.pyc\', \'lib/python3.6/__pycache__/fractions.cpython-36.pyc\', \'lib/python3.6/__pycache__/ftplib.cpython-36.pyc\', \'lib/python3.6/__pycache__/functools.cpython-36.pyc\', \'lib/python3.6/__pycache__/genericpath.cpython-36.pyc\', \'lib/python3.6/__pycache__/getopt.cpython-36.pyc\', \'lib/python3.6/__pycache__/getpass.cpython-36.pyc\', \'lib/python3.6/__pycache__/gettext.cpython-36.pyc\', \'lib/python3.6/__pycache__/glob.cpython-36.pyc\', \'lib/python3.6/__pycache__/gzip.cpython-36.pyc\', \'lib/python3.6/__pycache__/hashlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/heapq.cpython-36.pyc\', \'lib/python3.6/__pycache__/hmac.cpython-36.pyc\', \'lib/python3.6/__pycache__/imaplib.cpython-36.pyc\', \'lib/python3.6/__pycache__/imghdr.cpython-36.pyc\', \'lib/python3.6/__pycache__/imp.cpython-36.pyc\', \'lib/python3.6/__pycache__/inspect.cpython-36.pyc\', \'lib/python3.6/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/__pycache__/ipaddress.cpython-36.pyc\', \'lib/python3.6/__pycache__/keyword.cpython-36.pyc\', \'lib/python3.6/__pycache__/linecache.cpython-36.pyc\', \'lib/python3.6/__pycache__/locale.cpython-36.pyc\', \'lib/python3.6/__pycache__/lzma.cpython-36.pyc\', \'lib/python3.6/__pycache__/macpath.cpython-36.pyc\', \'lib/python3.6/__pycache__/macurl2path.cpython-36.pyc\', \'lib/python3.6/__pycache__/mailbox.cpython-36.pyc\', \'lib/python3.6/__pycache__/mailcap.cpython-36.pyc\', \'lib/python3.6/__pycache__/mimetypes.cpython-36.pyc\', \'lib/python3.6/__pycache__/modulefinder.cpython-36.pyc\', \'lib/python3.6/__pycache__/netrc.cpython-36.pyc\', \'lib/python3.6/__pycache__/nntplib.cpython-36.pyc\', \'lib/python3.6/__pycache__/ntpath.cpython-36.pyc\', \'lib/python3.6/__pycache__/nturl2path.cpython-36.pyc\', \'lib/python3.6/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/__pycache__/opcode.cpython-36.pyc\', \'lib/python3.6/__pycache__/operator.cpython-36.pyc\', \'lib/python3.6/__pycache__/optparse.cpython-36.pyc\', \'lib/python3.6/__pycache__/os.cpython-36.pyc\', \'lib/python3.6/__pycache__/pathlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/pdb.cpython-36.pyc\', \'lib/python3.6/__pycache__/pickle.cpython-36.pyc\', \'lib/python3.6/__pycache__/pickletools.cpython-36.pyc\', \'lib/python3.6/__pycache__/pipes.cpython-36.pyc\', \'lib/python3.6/__pycache__/pkgutil.cpython-36.pyc\', \'lib/python3.6/__pycache__/platform.cpython-36.pyc\', \'lib/python3.6/__pycache__/plistlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/poplib.cpython-36.pyc\', \'lib/python3.6/__pycache__/posixpath.cpython-36.pyc\', \'lib/python3.6/__pycache__/pprint.cpython-36.pyc\', \'lib/python3.6/__pycache__/profile.cpython-36.pyc\', \'lib/python3.6/__pycache__/pstats.cpython-36.pyc\', \'lib/python3.6/__pycache__/pty.cpython-36.pyc\', \'lib/python3.6/__pycache__/py_compile.cpython-36.pyc\', \'lib/python3.6/__pycache__/pyclbr.cpython-36.pyc\', \'lib/python3.6/__pycache__/pydoc.cpython-36.pyc\', \'lib/python3.6/__pycache__/queue.cpython-36.pyc\', \'lib/python3.6/__pycache__/quopri.cpython-36.pyc\', \'lib/python3.6/__pycache__/random.cpython-36.pyc\', \'lib/python3.6/__pycache__/re.cpython-36.pyc\', \'lib/python3.6/__pycache__/reprlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/rlcompleter.cpython-36.pyc\', \'lib/python3.6/__pycache__/runpy.cpython-36.pyc\', \'lib/python3.6/__pycache__/sched.cpython-36.pyc\', \'lib/python3.6/__pycache__/secrets.cpython-36.pyc\', \'lib/python3.6/__pycache__/selectors.cpython-36.pyc\', \'lib/python3.6/__pycache__/shelve.cpython-36.pyc\', \'lib/python3.6/__pycache__/shlex.cpython-36.pyc\', \'lib/python3.6/__pycache__/shutil.cpython-36.pyc\', \'lib/python3.6/__pycache__/signal.cpython-36.pyc\', \'lib/python3.6/__pycache__/site.cpython-36.pyc\', \'lib/python3.6/__pycache__/smtpd.cpython-36.pyc\', \'lib/python3.6/__pycache__/smtplib.cpython-36.pyc\', \'lib/python3.6/__pycache__/sndhdr.cpython-36.pyc\', \'lib/python3.6/__pycache__/socket.cpython-36.pyc\', \'lib/python3.6/__pycache__/socketserver.cpython-36.pyc\', \'lib/python3.6/__pycache__/sre_compile.cpython-36.pyc\', \'lib/python3.6/__pycache__/sre_constants.cpython-36.pyc\', \'lib/python3.6/__pycache__/sre_parse.cpython-36.pyc\', \'lib/python3.6/__pycache__/ssl.cpython-36.pyc\', \'lib/python3.6/__pycache__/stat.cpython-36.pyc\', \'lib/python3.6/__pycache__/statistics.cpython-36.pyc\', \'lib/python3.6/__pycache__/string.cpython-36.pyc\', \'lib/python3.6/__pycache__/stringprep.cpython-36.pyc\', \'lib/python3.6/__pycache__/struct.cpython-36.pyc\', \'lib/python3.6/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/__pycache__/sunau.cpython-36.pyc\', \'lib/python3.6/__pycache__/symbol.cpython-36.pyc\', \'lib/python3.6/__pycache__/symtable.cpython-36.pyc\', \'lib/python3.6/__pycache__/sysconfig.cpython-36.pyc\', \'lib/python3.6/__pycache__/tabnanny.cpython-36.pyc\', \'lib/python3.6/__pycache__/tarfile.cpython-36.pyc\', \'lib/python3.6/__pycache__/telnetlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/tempfile.cpython-36.pyc\', \'lib/python3.6/__pycache__/textwrap.cpython-36.pyc\', \'lib/python3.6/__pycache__/this.cpython-36.pyc\', \'lib/python3.6/__pycache__/threading.cpython-36.pyc\', \'lib/python3.6/__pycache__/timeit.cpython-36.pyc\', \'lib/python3.6/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/__pycache__/tokenize.cpython-36.pyc\', \'lib/python3.6/__pycache__/trace.cpython-36.pyc\', \'lib/python3.6/__pycache__/traceback.cpython-36.pyc\', \'lib/python3.6/__pycache__/tracemalloc.cpython-36.pyc\', \'lib/python3.6/__pycache__/tty.cpython-36.pyc\', \'lib/python3.6/__pycache__/turtle.cpython-36.pyc\', \'lib/python3.6/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/__pycache__/typing.cpython-36.pyc\', \'lib/python3.6/__pycache__/uu.cpython-36.pyc\', \'lib/python3.6/__pycache__/uuid.cpython-36.pyc\', \'lib/python3.6/__pycache__/warnings.cpython-36.pyc\', \'lib/python3.6/__pycache__/wave.cpython-36.pyc\', \'lib/python3.6/__pycache__/weakref.cpython-36.pyc\', \'lib/python3.6/__pycache__/webbrowser.cpython-36.pyc\', \'lib/python3.6/__pycache__/xdrlib.cpython-36.pyc\', \'lib/python3.6/__pycache__/zipapp.cpython-36.pyc\', \'lib/python3.6/__pycache__/zipfile.cpython-36.pyc\', \'lib/python3.6/_bootlocale.py\', \'lib/python3.6/_collections_abc.py\', \'lib/python3.6/_compat_pickle.py\', \'lib/python3.6/_compression.py\', \'lib/python3.6/_dummy_thread.py\', \'lib/python3.6/_markupbase.py\', \'lib/python3.6/_osx_support.py\', \'lib/python3.6/_pydecimal.py\', \'lib/python3.6/_pyio.py\', \'lib/python3.6/_sitebuiltins.py\', \'lib/python3.6/_strptime.py\', \'lib/python3.6/_sysconfigdata_m_linux_x86_64-linux-gnu.py\', \'lib/python3.6/_threading_local.py\', \'lib/python3.6/_weakrefset.py\', \'lib/python3.6/abc.py\', \'lib/python3.6/aifc.py\', \'lib/python3.6/antigravity.py\', \'lib/python3.6/argparse.py\', \'lib/python3.6/ast.py\', \'lib/python3.6/asynchat.py\', \'lib/python3.6/asyncio/__init__.py\', \'lib/python3.6/asyncio/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/base_events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/base_futures.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/base_subprocess.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/base_tasks.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/coroutines.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/futures.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/locks.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/proactor_events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/protocols.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/queues.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/selector_events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/sslproto.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/streams.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/subprocess.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/tasks.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/transports.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/unix_events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/windows_events.cpython-36.pyc\', \'lib/python3.6/asyncio/__pycache__/windows_utils.cpython-36.pyc\', \'lib/python3.6/asyncio/base_events.py\', \'lib/python3.6/asyncio/base_futures.py\', \'lib/python3.6/asyncio/base_subprocess.py\', \'lib/python3.6/asyncio/base_tasks.py\', \'lib/python3.6/asyncio/compat.py\', \'lib/python3.6/asyncio/constants.py\', \'lib/python3.6/asyncio/coroutines.py\', \'lib/python3.6/asyncio/events.py\', \'lib/python3.6/asyncio/futures.py\', \'lib/python3.6/asyncio/locks.py\', \'lib/python3.6/asyncio/log.py\', \'lib/python3.6/asyncio/proactor_events.py\', \'lib/python3.6/asyncio/protocols.py\', \'lib/python3.6/asyncio/queues.py\', \'lib/python3.6/asyncio/selector_events.py\', \'lib/python3.6/asyncio/sslproto.py\', \'lib/python3.6/asyncio/streams.py\', \'lib/python3.6/asyncio/subprocess.py\', \'lib/python3.6/asyncio/tasks.py\', \'lib/python3.6/asyncio/test_utils.py\', \'lib/python3.6/asyncio/transports.py\', \'lib/python3.6/asyncio/unix_events.py\', \'lib/python3.6/asyncio/windows_events.py\', \'lib/python3.6/asyncio/windows_utils.py\', \'lib/python3.6/asyncore.py\', \'lib/python3.6/base64.py\', \'lib/python3.6/bdb.py\', \'lib/python3.6/binhex.py\', \'lib/python3.6/bisect.py\', \'lib/python3.6/bz2.py\', \'lib/python3.6/cProfile.py\', \'lib/python3.6/calendar.py\', \'lib/python3.6/cgi.py\', \'lib/python3.6/cgitb.py\', \'lib/python3.6/chunk.py\', \'lib/python3.6/cmd.py\', \'lib/python3.6/code.py\', \'lib/python3.6/codecs.py\', \'lib/python3.6/codeop.py\', \'lib/python3.6/collections/__init__.py\', \'lib/python3.6/collections/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/collections/__pycache__/abc.cpython-36.pyc\', \'lib/python3.6/collections/abc.py\', \'lib/python3.6/colorsys.py\', \'lib/python3.6/compileall.py\', \'lib/python3.6/concurrent/__init__.py\', \'lib/python3.6/concurrent/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/concurrent/futures/__init__.py\', \'lib/python3.6/concurrent/futures/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/concurrent/futures/__pycache__/_base.cpython-36.pyc\', \'lib/python3.6/concurrent/futures/__pycache__/process.cpython-36.pyc\', \'lib/python3.6/concurrent/futures/__pycache__/thread.cpython-36.pyc\', \'lib/python3.6/concurrent/futures/_base.py\', \'lib/python3.6/concurrent/futures/process.py\', \'lib/python3.6/concurrent/futures/thread.py\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/Makefile\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/Setup\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/Setup.config\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/Setup.local\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/__pycache__/python-config.cpython-36.pyc\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/config.c\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/config.c.in\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/install-sh\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/libpython3.6m.a\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/makesetup\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/python-config.py\', \'lib/python3.6/config-3.6m-x86_64-linux-gnu/python.o\', \'lib/python3.6/configparser.py\', \'lib/python3.6/contextlib.py\', \'lib/python3.6/copy.py\', \'lib/python3.6/copyreg.py\', \'lib/python3.6/crypt.py\', \'lib/python3.6/csv.py\', \'lib/python3.6/ctypes/__init__.py\', \'lib/python3.6/ctypes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/ctypes/__pycache__/_endian.cpython-36.pyc\', \'lib/python3.6/ctypes/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/ctypes/__pycache__/wintypes.cpython-36.pyc\', \'lib/python3.6/ctypes/_endian.py\', \'lib/python3.6/ctypes/macholib/README.ctypes\', \'lib/python3.6/ctypes/macholib/__init__.py\', \'lib/python3.6/ctypes/macholib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/ctypes/macholib/__pycache__/dyld.cpython-36.pyc\', \'lib/python3.6/ctypes/macholib/__pycache__/dylib.cpython-36.pyc\', \'lib/python3.6/ctypes/macholib/__pycache__/framework.cpython-36.pyc\', \'lib/python3.6/ctypes/macholib/dyld.py\', \'lib/python3.6/ctypes/macholib/dylib.py\', \'lib/python3.6/ctypes/macholib/fetch_macholib\', \'lib/python3.6/ctypes/macholib/fetch_macholib.bat\', \'lib/python3.6/ctypes/macholib/framework.py\', \'lib/python3.6/ctypes/util.py\', \'lib/python3.6/ctypes/wintypes.py\', \'lib/python3.6/curses/__init__.py\', \'lib/python3.6/curses/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/curses/__pycache__/ascii.cpython-36.pyc\', \'lib/python3.6/curses/__pycache__/has_key.cpython-36.pyc\', \'lib/python3.6/curses/__pycache__/panel.cpython-36.pyc\', \'lib/python3.6/curses/__pycache__/textpad.cpython-36.pyc\', \'lib/python3.6/curses/ascii.py\', \'lib/python3.6/curses/has_key.py\', \'lib/python3.6/curses/panel.py\', \'lib/python3.6/curses/textpad.py\', \'lib/python3.6/datetime.py\', \'lib/python3.6/dbm/__init__.py\', \'lib/python3.6/dbm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/dbm/__pycache__/dumb.cpython-36.pyc\', \'lib/python3.6/dbm/__pycache__/gnu.cpython-36.pyc\', \'lib/python3.6/dbm/__pycache__/ndbm.cpython-36.pyc\', \'lib/python3.6/dbm/dumb.py\', \'lib/python3.6/dbm/gnu.py\', \'lib/python3.6/dbm/ndbm.py\', \'lib/python3.6/decimal.py\', \'lib/python3.6/difflib.py\', \'lib/python3.6/dis.py\', \'lib/python3.6/distutils/README\', \'lib/python3.6/distutils/__init__.py\', \'lib/python3.6/distutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/_msvccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/archive_util.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/bcppcompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/ccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/cmd.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/cygwinccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/dep_util.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/dir_util.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/dist.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/extension.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/fancy_getopt.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/file_util.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/filelist.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/msvc9compiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/msvccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/spawn.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/sysconfig.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/text_file.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/unixccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/distutils/__pycache__/versionpredicate.cpython-36.pyc\', \'lib/python3.6/distutils/_msvccompiler.py\', \'lib/python3.6/distutils/archive_util.py\', \'lib/python3.6/distutils/bcppcompiler.py\', \'lib/python3.6/distutils/ccompiler.py\', \'lib/python3.6/distutils/cmd.py\', \'lib/python3.6/distutils/command/__init__.py\', \'lib/python3.6/distutils/command/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/bdist.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/bdist_dumb.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/bdist_msi.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/bdist_rpm.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/bdist_wininst.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/build.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/build_clib.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/build_ext.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/build_py.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/build_scripts.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/clean.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install_data.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install_egg_info.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install_headers.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install_lib.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/install_scripts.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/register.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/sdist.cpython-36.pyc\', \'lib/python3.6/distutils/command/__pycache__/upload.cpython-36.pyc\', \'lib/python3.6/distutils/command/bdist.py\', \'lib/python3.6/distutils/command/bdist_dumb.py\', \'lib/python3.6/distutils/command/bdist_msi.py\', \'lib/python3.6/distutils/command/bdist_rpm.py\', \'lib/python3.6/distutils/command/bdist_wininst.py\', \'lib/python3.6/distutils/command/build.py\', \'lib/python3.6/distutils/command/build_clib.py\', \'lib/python3.6/distutils/command/build_ext.py\', \'lib/python3.6/distutils/command/build_py.py\', \'lib/python3.6/distutils/command/build_scripts.py\', \'lib/python3.6/distutils/command/check.py\', \'lib/python3.6/distutils/command/clean.py\', \'lib/python3.6/distutils/command/command_template\', \'lib/python3.6/distutils/command/config.py\', \'lib/python3.6/distutils/command/install.py\', \'lib/python3.6/distutils/command/install_data.py\', \'lib/python3.6/distutils/command/install_egg_info.py\', \'lib/python3.6/distutils/command/install_headers.py\', \'lib/python3.6/distutils/command/install_lib.py\', \'lib/python3.6/distutils/command/install_scripts.py\', \'lib/python3.6/distutils/command/register.py\', \'lib/python3.6/distutils/command/sdist.py\', \'lib/python3.6/distutils/command/upload.py\', \'lib/python3.6/distutils/command/wininst-10.0-amd64.exe\', \'lib/python3.6/distutils/command/wininst-10.0.exe\', \'lib/python3.6/distutils/command/wininst-14.0-amd64.exe\', \'lib/python3.6/distutils/command/wininst-14.0.exe\', \'lib/python3.6/distutils/command/wininst-6.0.exe\', \'lib/python3.6/distutils/command/wininst-7.1.exe\', \'lib/python3.6/distutils/command/wininst-8.0.exe\', \'lib/python3.6/distutils/command/wininst-9.0-amd64.exe\', \'lib/python3.6/distutils/command/wininst-9.0.exe\', \'lib/python3.6/distutils/config.py\', \'lib/python3.6/distutils/core.py\', \'lib/python3.6/distutils/cygwinccompiler.py\', \'lib/python3.6/distutils/debug.py\', \'lib/python3.6/distutils/dep_util.py\', \'lib/python3.6/distutils/dir_util.py\', \'lib/python3.6/distutils/dist.py\', \'lib/python3.6/distutils/errors.py\', \'lib/python3.6/distutils/extension.py\', \'lib/python3.6/distutils/fancy_getopt.py\', \'lib/python3.6/distutils/file_util.py\', \'lib/python3.6/distutils/filelist.py\', \'lib/python3.6/distutils/log.py\', \'lib/python3.6/distutils/msvc9compiler.py\', \'lib/python3.6/distutils/msvccompiler.py\', \'lib/python3.6/distutils/spawn.py\', \'lib/python3.6/distutils/sysconfig.py\', \'lib/python3.6/distutils/tests/Setup.sample\', \'lib/python3.6/distutils/tests/__init__.py\', \'lib/python3.6/distutils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_archive_util.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_bdist.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_bdist_dumb.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_bdist_msi.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_bdist_rpm.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_bdist_wininst.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_build.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_build_clib.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_build_ext.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_build_py.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_build_scripts.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_check.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_clean.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_cmd.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_config.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_config_cmd.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_cygwinccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_dep_util.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_dir_util.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_dist.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_extension.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_file_util.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_filelist.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_install.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_install_data.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_install_headers.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_install_lib.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_install_scripts.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_log.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_msvc9compiler.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_msvccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_register.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_sdist.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_spawn.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_sysconfig.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_text_file.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_unixccompiler.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_upload.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_version.cpython-36.pyc\', \'lib/python3.6/distutils/tests/__pycache__/test_versionpredicate.cpython-36.pyc\', \'lib/python3.6/distutils/tests/support.py\', \'lib/python3.6/distutils/tests/test_archive_util.py\', \'lib/python3.6/distutils/tests/test_bdist.py\', \'lib/python3.6/distutils/tests/test_bdist_dumb.py\', \'lib/python3.6/distutils/tests/test_bdist_msi.py\', \'lib/python3.6/distutils/tests/test_bdist_rpm.py\', \'lib/python3.6/distutils/tests/test_bdist_wininst.py\', \'lib/python3.6/distutils/tests/test_build.py\', \'lib/python3.6/distutils/tests/test_build_clib.py\', \'lib/python3.6/distutils/tests/test_build_ext.py\', \'lib/python3.6/distutils/tests/test_build_py.py\', \'lib/python3.6/distutils/tests/test_build_scripts.py\', \'lib/python3.6/distutils/tests/test_check.py\', \'lib/python3.6/distutils/tests/test_clean.py\', \'lib/python3.6/distutils/tests/test_cmd.py\', \'lib/python3.6/distutils/tests/test_config.py\', \'lib/python3.6/distutils/tests/test_config_cmd.py\', \'lib/python3.6/distutils/tests/test_core.py\', \'lib/python3.6/distutils/tests/test_cygwinccompiler.py\', \'lib/python3.6/distutils/tests/test_dep_util.py\', \'lib/python3.6/distutils/tests/test_dir_util.py\', \'lib/python3.6/distutils/tests/test_dist.py\', \'lib/python3.6/distutils/tests/test_extension.py\', \'lib/python3.6/distutils/tests/test_file_util.py\', \'lib/python3.6/distutils/tests/test_filelist.py\', \'lib/python3.6/distutils/tests/test_install.py\', \'lib/python3.6/distutils/tests/test_install_data.py\', \'lib/python3.6/distutils/tests/test_install_headers.py\', \'lib/python3.6/distutils/tests/test_install_lib.py\', \'lib/python3.6/distutils/tests/test_install_scripts.py\', \'lib/python3.6/distutils/tests/test_log.py\', \'lib/python3.6/distutils/tests/test_msvc9compiler.py\', \'lib/python3.6/distutils/tests/test_msvccompiler.py\', \'lib/python3.6/distutils/tests/test_register.py\', \'lib/python3.6/distutils/tests/test_sdist.py\', \'lib/python3.6/distutils/tests/test_spawn.py\', \'lib/python3.6/distutils/tests/test_sysconfig.py\', \'lib/python3.6/distutils/tests/test_text_file.py\', \'lib/python3.6/distutils/tests/test_unixccompiler.py\', \'lib/python3.6/distutils/tests/test_upload.py\', \'lib/python3.6/distutils/tests/test_util.py\', \'lib/python3.6/distutils/tests/test_version.py\', \'lib/python3.6/distutils/tests/test_versionpredicate.py\', \'lib/python3.6/distutils/tests/xxmodule.c\', \'lib/python3.6/distutils/text_file.py\', \'lib/python3.6/distutils/unixccompiler.py\', \'lib/python3.6/distutils/util.py\', \'lib/python3.6/distutils/version.py\', \'lib/python3.6/distutils/versionpredicate.py\', \'lib/python3.6/doctest.py\', \'lib/python3.6/dummy_threading.py\', \'lib/python3.6/email/__init__.py\', \'lib/python3.6/email/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/_encoded_words.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/_header_value_parser.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/_parseaddr.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/_policybase.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/base64mime.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/charset.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/contentmanager.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/encoders.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/feedparser.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/generator.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/header.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/headerregistry.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/iterators.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/policy.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/quoprimime.cpython-36.pyc\', \'lib/python3.6/email/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/email/_encoded_words.py\', \'lib/python3.6/email/_header_value_parser.py\', \'lib/python3.6/email/_parseaddr.py\', \'lib/python3.6/email/_policybase.py\', \'lib/python3.6/email/architecture.rst\', \'lib/python3.6/email/base64mime.py\', \'lib/python3.6/email/charset.py\', \'lib/python3.6/email/contentmanager.py\', \'lib/python3.6/email/encoders.py\', \'lib/python3.6/email/errors.py\', \'lib/python3.6/email/feedparser.py\', \'lib/python3.6/email/generator.py\', \'lib/python3.6/email/header.py\', \'lib/python3.6/email/headerregistry.py\', \'lib/python3.6/email/iterators.py\', \'lib/python3.6/email/message.py\', \'lib/python3.6/email/mime/__init__.py\', \'lib/python3.6/email/mime/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/audio.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/multipart.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/nonmultipart.cpython-36.pyc\', \'lib/python3.6/email/mime/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/email/mime/application.py\', \'lib/python3.6/email/mime/audio.py\', \'lib/python3.6/email/mime/base.py\', \'lib/python3.6/email/mime/image.py\', \'lib/python3.6/email/mime/message.py\', \'lib/python3.6/email/mime/multipart.py\', \'lib/python3.6/email/mime/nonmultipart.py\', \'lib/python3.6/email/mime/text.py\', \'lib/python3.6/email/parser.py\', \'lib/python3.6/email/policy.py\', \'lib/python3.6/email/quoprimime.py\', \'lib/python3.6/email/utils.py\', \'lib/python3.6/encodings/__init__.py\', \'lib/python3.6/encodings/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/aliases.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/ascii.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/base64_codec.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/big5.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/big5hkscs.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/bz2_codec.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/charmap.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp037.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1006.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1026.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1125.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1140.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1250.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1251.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1252.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1253.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1254.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1255.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1256.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1257.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp1258.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp273.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp424.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp437.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp500.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp65001.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp720.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp737.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp775.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp850.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp852.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp855.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp856.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp857.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp858.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp860.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp861.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp862.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp863.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp864.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp865.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp866.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp869.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp874.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp875.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp932.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp949.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/cp950.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/euc_jis_2004.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/euc_jisx0213.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/euc_jp.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/euc_kr.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/gb18030.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/gb2312.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/gbk.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/hex_codec.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/hp_roman8.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/hz.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/idna.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp_1.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp_2.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp_2004.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp_3.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_jp_ext.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso2022_kr.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_1.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_10.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_11.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_13.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_14.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_15.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_16.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_2.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_3.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_4.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_5.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_6.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_7.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_8.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/iso8859_9.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/johab.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/koi8_r.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/koi8_t.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/koi8_u.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/kz1048.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/latin_1.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_arabic.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_centeuro.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_croatian.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_cyrillic.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_farsi.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_greek.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_iceland.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_latin2.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_roman.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_romanian.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mac_turkish.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/mbcs.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/oem.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/palmos.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/ptcp154.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/punycode.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/quopri_codec.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/raw_unicode_escape.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/rot_13.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/shift_jis.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/shift_jis_2004.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/shift_jisx0213.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/tis_620.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/undefined.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/unicode_escape.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/unicode_internal.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_16.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_16_be.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_16_le.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_32.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_32_be.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_32_le.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_7.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_8.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/utf_8_sig.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/uu_codec.cpython-36.pyc\', \'lib/python3.6/encodings/__pycache__/zlib_codec.cpython-36.pyc\', \'lib/python3.6/encodings/aliases.py\', \'lib/python3.6/encodings/ascii.py\', \'lib/python3.6/encodings/base64_codec.py\', \'lib/python3.6/encodings/big5.py\', \'lib/python3.6/encodings/big5hkscs.py\', \'lib/python3.6/encodings/bz2_codec.py\', \'lib/python3.6/encodings/charmap.py\', \'lib/python3.6/encodings/cp037.py\', \'lib/python3.6/encodings/cp1006.py\', \'lib/python3.6/encodings/cp1026.py\', \'lib/python3.6/encodings/cp1125.py\', \'lib/python3.6/encodings/cp1140.py\', \'lib/python3.6/encodings/cp1250.py\', \'lib/python3.6/encodings/cp1251.py\', \'lib/python3.6/encodings/cp1252.py\', \'lib/python3.6/encodings/cp1253.py\', \'lib/python3.6/encodings/cp1254.py\', \'lib/python3.6/encodings/cp1255.py\', \'lib/python3.6/encodings/cp1256.py\', \'lib/python3.6/encodings/cp1257.py\', \'lib/python3.6/encodings/cp1258.py\', \'lib/python3.6/encodings/cp273.py\', \'lib/python3.6/encodings/cp424.py\', \'lib/python3.6/encodings/cp437.py\', \'lib/python3.6/encodings/cp500.py\', \'lib/python3.6/encodings/cp65001.py\', \'lib/python3.6/encodings/cp720.py\', \'lib/python3.6/encodings/cp737.py\', \'lib/python3.6/encodings/cp775.py\', \'lib/python3.6/encodings/cp850.py\', \'lib/python3.6/encodings/cp852.py\', \'lib/python3.6/encodings/cp855.py\', \'lib/python3.6/encodings/cp856.py\', \'lib/python3.6/encodings/cp857.py\', \'lib/python3.6/encodings/cp858.py\', \'lib/python3.6/encodings/cp860.py\', \'lib/python3.6/encodings/cp861.py\', \'lib/python3.6/encodings/cp862.py\', \'lib/python3.6/encodings/cp863.py\', \'lib/python3.6/encodings/cp864.py\', \'lib/python3.6/encodings/cp865.py\', \'lib/python3.6/encodings/cp866.py\', \'lib/python3.6/encodings/cp869.py\', \'lib/python3.6/encodings/cp874.py\', \'lib/python3.6/encodings/cp875.py\', \'lib/python3.6/encodings/cp932.py\', \'lib/python3.6/encodings/cp949.py\', \'lib/python3.6/encodings/cp950.py\', \'lib/python3.6/encodings/euc_jis_2004.py\', \'lib/python3.6/encodings/euc_jisx0213.py\', \'lib/python3.6/encodings/euc_jp.py\', \'lib/python3.6/encodings/euc_kr.py\', \'lib/python3.6/encodings/gb18030.py\', \'lib/python3.6/encodings/gb2312.py\', \'lib/python3.6/encodings/gbk.py\', \'lib/python3.6/encodings/hex_codec.py\', \'lib/python3.6/encodings/hp_roman8.py\', \'lib/python3.6/encodings/hz.py\', \'lib/python3.6/encodings/idna.py\', \'lib/python3.6/encodings/iso2022_jp.py\', \'lib/python3.6/encodings/iso2022_jp_1.py\', \'lib/python3.6/encodings/iso2022_jp_2.py\', \'lib/python3.6/encodings/iso2022_jp_2004.py\', \'lib/python3.6/encodings/iso2022_jp_3.py\', \'lib/python3.6/encodings/iso2022_jp_ext.py\', \'lib/python3.6/encodings/iso2022_kr.py\', \'lib/python3.6/encodings/iso8859_1.py\', \'lib/python3.6/encodings/iso8859_10.py\', \'lib/python3.6/encodings/iso8859_11.py\', \'lib/python3.6/encodings/iso8859_13.py\', \'lib/python3.6/encodings/iso8859_14.py\', \'lib/python3.6/encodings/iso8859_15.py\', \'lib/python3.6/encodings/iso8859_16.py\', \'lib/python3.6/encodings/iso8859_2.py\', \'lib/python3.6/encodings/iso8859_3.py\', \'lib/python3.6/encodings/iso8859_4.py\', \'lib/python3.6/encodings/iso8859_5.py\', \'lib/python3.6/encodings/iso8859_6.py\', \'lib/python3.6/encodings/iso8859_7.py\', \'lib/python3.6/encodings/iso8859_8.py\', \'lib/python3.6/encodings/iso8859_9.py\', \'lib/python3.6/encodings/johab.py\', \'lib/python3.6/encodings/koi8_r.py\', \'lib/python3.6/encodings/koi8_t.py\', \'lib/python3.6/encodings/koi8_u.py\', \'lib/python3.6/encodings/kz1048.py\', \'lib/python3.6/encodings/latin_1.py\', \'lib/python3.6/encodings/mac_arabic.py\', \'lib/python3.6/encodings/mac_centeuro.py\', \'lib/python3.6/encodings/mac_croatian.py\', \'lib/python3.6/encodings/mac_cyrillic.py\', \'lib/python3.6/encodings/mac_farsi.py\', \'lib/python3.6/encodings/mac_greek.py\', \'lib/python3.6/encodings/mac_iceland.py\', \'lib/python3.6/encodings/mac_latin2.py\', \'lib/python3.6/encodings/mac_roman.py\', \'lib/python3.6/encodings/mac_romanian.py\', \'lib/python3.6/encodings/mac_turkish.py\', \'lib/python3.6/encodings/mbcs.py\', \'lib/python3.6/encodings/oem.py\', \'lib/python3.6/encodings/palmos.py\', \'lib/python3.6/encodings/ptcp154.py\', \'lib/python3.6/encodings/punycode.py\', \'lib/python3.6/encodings/quopri_codec.py\', \'lib/python3.6/encodings/raw_unicode_escape.py\', \'lib/python3.6/encodings/rot_13.py\', \'lib/python3.6/encodings/shift_jis.py\', \'lib/python3.6/encodings/shift_jis_2004.py\', \'lib/python3.6/encodings/shift_jisx0213.py\', \'lib/python3.6/encodings/tis_620.py\', \'lib/python3.6/encodings/undefined.py\', \'lib/python3.6/encodings/unicode_escape.py\', \'lib/python3.6/encodings/unicode_internal.py\', \'lib/python3.6/encodings/utf_16.py\', \'lib/python3.6/encodings/utf_16_be.py\', \'lib/python3.6/encodings/utf_16_le.py\', \'lib/python3.6/encodings/utf_32.py\', \'lib/python3.6/encodings/utf_32_be.py\', \'lib/python3.6/encodings/utf_32_le.py\', \'lib/python3.6/encodings/utf_7.py\', \'lib/python3.6/encodings/utf_8.py\', \'lib/python3.6/encodings/utf_8_sig.py\', \'lib/python3.6/encodings/uu_codec.py\', \'lib/python3.6/encodings/zlib_codec.py\', \'lib/python3.6/enum.py\', \'lib/python3.6/filecmp.py\', \'lib/python3.6/fileinput.py\', \'lib/python3.6/fnmatch.py\', \'lib/python3.6/formatter.py\', \'lib/python3.6/fractions.py\', \'lib/python3.6/ftplib.py\', \'lib/python3.6/functools.py\', \'lib/python3.6/genericpath.py\', \'lib/python3.6/getopt.py\', \'lib/python3.6/getpass.py\', \'lib/python3.6/gettext.py\', \'lib/python3.6/glob.py\', \'lib/python3.6/gzip.py\', \'lib/python3.6/hashlib.py\', \'lib/python3.6/heapq.py\', \'lib/python3.6/hmac.py\', \'lib/python3.6/html/__init__.py\', \'lib/python3.6/html/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/html/__pycache__/entities.cpython-36.pyc\', \'lib/python3.6/html/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/html/entities.py\', \'lib/python3.6/html/parser.py\', \'lib/python3.6/http/__init__.py\', \'lib/python3.6/http/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/http/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/http/__pycache__/cookiejar.cpython-36.pyc\', \'lib/python3.6/http/__pycache__/cookies.cpython-36.pyc\', \'lib/python3.6/http/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/http/client.py\', \'lib/python3.6/http/cookiejar.py\', \'lib/python3.6/http/cookies.py\', \'lib/python3.6/http/server.py\', \'lib/python3.6/idlelib/CREDITS.txt\', \'lib/python3.6/idlelib/ChangeLog\', \'lib/python3.6/idlelib/HISTORY.txt\', \'lib/python3.6/idlelib/Icons/folder.gif\', \'lib/python3.6/idlelib/Icons/idle.icns\', \'lib/python3.6/idlelib/Icons/idle.ico\', \'lib/python3.6/idlelib/Icons/idle_16.gif\', \'lib/python3.6/idlelib/Icons/idle_16.png\', \'lib/python3.6/idlelib/Icons/idle_32.gif\', \'lib/python3.6/idlelib/Icons/idle_32.png\', \'lib/python3.6/idlelib/Icons/idle_48.gif\', \'lib/python3.6/idlelib/Icons/idle_48.png\', \'lib/python3.6/idlelib/Icons/minusnode.gif\', \'lib/python3.6/idlelib/Icons/openfolder.gif\', \'lib/python3.6/idlelib/Icons/plusnode.gif\', \'lib/python3.6/idlelib/Icons/python.gif\', \'lib/python3.6/idlelib/Icons/tk.gif\', \'lib/python3.6/idlelib/NEWS.txt\', \'lib/python3.6/idlelib/NEWS2x.txt\', \'lib/python3.6/idlelib/README.txt\', \'lib/python3.6/idlelib/TODO.txt\', \'lib/python3.6/idlelib/__init__.py\', \'lib/python3.6/idlelib/__main__.py\', \'lib/python3.6/idlelib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/autocomplete.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/autocomplete_w.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/autoexpand.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/browser.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/calltip_w.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/calltips.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/codecontext.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/colorizer.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/config_key.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/configdialog.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/debugger.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/debugger_r.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/debugobj.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/debugobj_r.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/delegator.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/dynoption.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/editor.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/filelist.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/grep.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/help_about.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/hyperparser.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/idle.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/iomenu.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/macosx.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/mainmenu.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/multicall.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/outwin.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/paragraph.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/parenmatch.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/pathbrowser.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/percolator.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/pyparse.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/pyshell.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/query.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/redirector.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/replace.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/rpc.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/rstrip.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/run.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/runscript.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/scrolledlist.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/search.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/searchbase.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/searchengine.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/stackviewer.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/statusbar.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/tabbedpages.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/textview.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/tooltip.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/undo.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/idlelib/__pycache__/zoomheight.cpython-36.pyc\', \'lib/python3.6/idlelib/autocomplete.py\', \'lib/python3.6/idlelib/autocomplete_w.py\', \'lib/python3.6/idlelib/autoexpand.py\', \'lib/python3.6/idlelib/browser.py\', \'lib/python3.6/idlelib/calltip_w.py\', \'lib/python3.6/idlelib/calltips.py\', \'lib/python3.6/idlelib/codecontext.py\', \'lib/python3.6/idlelib/colorizer.py\', \'lib/python3.6/idlelib/config-extensions.def\', \'lib/python3.6/idlelib/config-highlight.def\', \'lib/python3.6/idlelib/config-keys.def\', \'lib/python3.6/idlelib/config-main.def\', \'lib/python3.6/idlelib/config.py\', \'lib/python3.6/idlelib/config_key.py\', \'lib/python3.6/idlelib/configdialog.py\', \'lib/python3.6/idlelib/debugger.py\', \'lib/python3.6/idlelib/debugger_r.py\', \'lib/python3.6/idlelib/debugobj.py\', \'lib/python3.6/idlelib/debugobj_r.py\', \'lib/python3.6/idlelib/delegator.py\', \'lib/python3.6/idlelib/dynoption.py\', \'lib/python3.6/idlelib/editor.py\', \'lib/python3.6/idlelib/extend.txt\', \'lib/python3.6/idlelib/filelist.py\', \'lib/python3.6/idlelib/grep.py\', \'lib/python3.6/idlelib/help.html\', \'lib/python3.6/idlelib/help.py\', \'lib/python3.6/idlelib/help_about.py\', \'lib/python3.6/idlelib/history.py\', \'lib/python3.6/idlelib/hyperparser.py\', \'lib/python3.6/idlelib/idle.bat\', \'lib/python3.6/idlelib/idle.py\', \'lib/python3.6/idlelib/idle.pyw\', \'lib/python3.6/idlelib/idle_test/README.txt\', \'lib/python3.6/idlelib/idle_test/__init__.py\', \'lib/python3.6/idlelib/idle_test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/htest.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/mock_idle.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/mock_tk.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_autocomplete.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_autoexpand.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_calltips.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_colorizer.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_config.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_config_key.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_configdialog.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_debugger.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_delegator.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_editmenu.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_editor.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_grep.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_help.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_help_about.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_history.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_hyperparser.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_iomenu.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_macosx.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_paragraph.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_parenmatch.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_pathbrowser.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_percolator.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_query.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_redirector.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_replace.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_rstrip.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_scrolledlist.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_search.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_searchbase.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_searchengine.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_textview.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_undo.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/__pycache__/test_warning.cpython-36.pyc\', \'lib/python3.6/idlelib/idle_test/htest.py\', \'lib/python3.6/idlelib/idle_test/mock_idle.py\', \'lib/python3.6/idlelib/idle_test/mock_tk.py\', \'lib/python3.6/idlelib/idle_test/test_autocomplete.py\', \'lib/python3.6/idlelib/idle_test/test_autoexpand.py\', \'lib/python3.6/idlelib/idle_test/test_calltips.py\', \'lib/python3.6/idlelib/idle_test/test_colorizer.py\', \'lib/python3.6/idlelib/idle_test/test_config.py\', \'lib/python3.6/idlelib/idle_test/test_config_key.py\', \'lib/python3.6/idlelib/idle_test/test_configdialog.py\', \'lib/python3.6/idlelib/idle_test/test_debugger.py\', \'lib/python3.6/idlelib/idle_test/test_delegator.py\', \'lib/python3.6/idlelib/idle_test/test_editmenu.py\', \'lib/python3.6/idlelib/idle_test/test_editor.py\', \'lib/python3.6/idlelib/idle_test/test_grep.py\', \'lib/python3.6/idlelib/idle_test/test_help.py\', \'lib/python3.6/idlelib/idle_test/test_help_about.py\', \'lib/python3.6/idlelib/idle_test/test_history.py\', \'lib/python3.6/idlelib/idle_test/test_hyperparser.py\', \'lib/python3.6/idlelib/idle_test/test_iomenu.py\', \'lib/python3.6/idlelib/idle_test/test_macosx.py\', \'lib/python3.6/idlelib/idle_test/test_paragraph.py\', \'lib/python3.6/idlelib/idle_test/test_parenmatch.py\', \'lib/python3.6/idlelib/idle_test/test_pathbrowser.py\', \'lib/python3.6/idlelib/idle_test/test_percolator.py\', \'lib/python3.6/idlelib/idle_test/test_query.py\', \'lib/python3.6/idlelib/idle_test/test_redirector.py\', \'lib/python3.6/idlelib/idle_test/test_replace.py\', \'lib/python3.6/idlelib/idle_test/test_rstrip.py\', \'lib/python3.6/idlelib/idle_test/test_scrolledlist.py\', \'lib/python3.6/idlelib/idle_test/test_search.py\', \'lib/python3.6/idlelib/idle_test/test_searchbase.py\', \'lib/python3.6/idlelib/idle_test/test_searchengine.py\', \'lib/python3.6/idlelib/idle_test/test_text.py\', \'lib/python3.6/idlelib/idle_test/test_textview.py\', \'lib/python3.6/idlelib/idle_test/test_tree.py\', \'lib/python3.6/idlelib/idle_test/test_undo.py\', \'lib/python3.6/idlelib/idle_test/test_warning.py\', \'lib/python3.6/idlelib/iomenu.py\', \'lib/python3.6/idlelib/macosx.py\', \'lib/python3.6/idlelib/mainmenu.py\', \'lib/python3.6/idlelib/multicall.py\', \'lib/python3.6/idlelib/outwin.py\', \'lib/python3.6/idlelib/paragraph.py\', \'lib/python3.6/idlelib/parenmatch.py\', \'lib/python3.6/idlelib/pathbrowser.py\', \'lib/python3.6/idlelib/percolator.py\', \'lib/python3.6/idlelib/pyparse.py\', \'lib/python3.6/idlelib/pyshell.py\', \'lib/python3.6/idlelib/query.py\', \'lib/python3.6/idlelib/redirector.py\', \'lib/python3.6/idlelib/replace.py\', \'lib/python3.6/idlelib/rpc.py\', \'lib/python3.6/idlelib/rstrip.py\', \'lib/python3.6/idlelib/run.py\', \'lib/python3.6/idlelib/runscript.py\', \'lib/python3.6/idlelib/scrolledlist.py\', \'lib/python3.6/idlelib/search.py\', \'lib/python3.6/idlelib/searchbase.py\', \'lib/python3.6/idlelib/searchengine.py\', \'lib/python3.6/idlelib/stackviewer.py\', \'lib/python3.6/idlelib/statusbar.py\', \'lib/python3.6/idlelib/tabbedpages.py\', \'lib/python3.6/idlelib/textview.py\', \'lib/python3.6/idlelib/tooltip.py\', \'lib/python3.6/idlelib/tree.py\', \'lib/python3.6/idlelib/undo.py\', \'lib/python3.6/idlelib/windows.py\', \'lib/python3.6/idlelib/zoomheight.py\', \'lib/python3.6/imaplib.py\', \'lib/python3.6/imghdr.py\', \'lib/python3.6/imp.py\', \'lib/python3.6/importlib/__init__.py\', \'lib/python3.6/importlib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/importlib/__pycache__/_bootstrap.cpython-36.pyc\', \'lib/python3.6/importlib/__pycache__/_bootstrap_external.cpython-36.pyc\', \'lib/python3.6/importlib/__pycache__/abc.cpython-36.pyc\', \'lib/python3.6/importlib/__pycache__/machinery.cpython-36.pyc\', \'lib/python3.6/importlib/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/importlib/_bootstrap.py\', \'lib/python3.6/importlib/_bootstrap_external.py\', \'lib/python3.6/importlib/abc.py\', \'lib/python3.6/importlib/machinery.py\', \'lib/python3.6/importlib/util.py\', \'lib/python3.6/inspect.py\', \'lib/python3.6/io.py\', \'lib/python3.6/ipaddress.py\', \'lib/python3.6/json/__init__.py\', \'lib/python3.6/json/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/json/__pycache__/decoder.cpython-36.pyc\', \'lib/python3.6/json/__pycache__/encoder.cpython-36.pyc\', \'lib/python3.6/json/__pycache__/scanner.cpython-36.pyc\', \'lib/python3.6/json/__pycache__/tool.cpython-36.pyc\', \'lib/python3.6/json/decoder.py\', \'lib/python3.6/json/encoder.py\', \'lib/python3.6/json/scanner.py\', \'lib/python3.6/json/tool.py\', \'lib/python3.6/keyword.py\', \'lib/python3.6/lib-dynload/_asyncio.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_bisect.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_blake2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_bz2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_cn.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_hk.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_iso2022.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_jp.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_kr.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_codecs_tw.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_crypt.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_csv.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_ctypes.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_ctypes_test.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_curses.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_curses_panel.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_datetime.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_decimal.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_elementtree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_hashlib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_heapq.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_json.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_lsprof.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_lzma.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_md5.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_multibytecodec.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_multiprocessing.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_opcode.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_pickle.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_posixsubprocess.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_random.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_sha1.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_sha256.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_sha3.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_sha512.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_socket.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_sqlite3.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_ssl.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_struct.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_testbuffer.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_testcapi.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_testimportmultiple.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_testmultiphase.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/_tkinter.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/array.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/audioop.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/binascii.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/cmath.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/fcntl.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/grp.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/math.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/mmap.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/nis.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/ossaudiodev.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/parser.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/pyexpat.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/readline.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/resource.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/select.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/spwd.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/syslog.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/termios.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/unicodedata.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/xxlimited.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib-dynload/zlib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/lib2to3/Grammar.txt\', \'lib/python3.6/lib2to3/Grammar3.6.0.final.0.pickle\', \'lib/python3.6/lib2to3/PatternGrammar.txt\', \'lib/python3.6/lib2to3/PatternGrammar3.6.0.final.0.pickle\', \'lib/python3.6/lib2to3/__init__.py\', \'lib/python3.6/lib2to3/__main__.py\', \'lib/python3.6/lib2to3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/btm_matcher.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/btm_utils.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/fixer_base.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/fixer_util.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/patcomp.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/pygram.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/pytree.cpython-36.pyc\', \'lib/python3.6/lib2to3/__pycache__/refactor.cpython-36.pyc\', \'lib/python3.6/lib2to3/btm_matcher.py\', \'lib/python3.6/lib2to3/btm_utils.py\', \'lib/python3.6/lib2to3/fixer_base.py\', \'lib/python3.6/lib2to3/fixer_util.py\', \'lib/python3.6/lib2to3/fixes/__init__.py\', \'lib/python3.6/lib2to3/fixes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_apply.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_asserts.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_basestring.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_buffer.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_dict.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_except.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_exec.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_execfile.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_exitfunc.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_filter.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_funcattrs.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_future.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_getcwdu.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_has_key.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_idioms.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_import.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_imports.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_imports2.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_input.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_intern.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_isinstance.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_itertools.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_itertools_imports.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_long.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_map.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_metaclass.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_methodattrs.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_ne.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_next.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_nonzero.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_numliterals.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_operator.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_paren.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_print.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_raise.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_raw_input.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_reduce.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_reload.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_renames.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_repr.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_set_literal.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_standarderror.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_sys_exc.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_throw.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_tuple_params.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_types.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_unicode.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_urllib.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_ws_comma.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_xrange.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_xreadlines.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/__pycache__/fix_zip.cpython-36.pyc\', \'lib/python3.6/lib2to3/fixes/fix_apply.py\', \'lib/python3.6/lib2to3/fixes/fix_asserts.py\', \'lib/python3.6/lib2to3/fixes/fix_basestring.py\', \'lib/python3.6/lib2to3/fixes/fix_buffer.py\', \'lib/python3.6/lib2to3/fixes/fix_dict.py\', \'lib/python3.6/lib2to3/fixes/fix_except.py\', \'lib/python3.6/lib2to3/fixes/fix_exec.py\', \'lib/python3.6/lib2to3/fixes/fix_execfile.py\', \'lib/python3.6/lib2to3/fixes/fix_exitfunc.py\', \'lib/python3.6/lib2to3/fixes/fix_filter.py\', \'lib/python3.6/lib2to3/fixes/fix_funcattrs.py\', \'lib/python3.6/lib2to3/fixes/fix_future.py\', \'lib/python3.6/lib2to3/fixes/fix_getcwdu.py\', \'lib/python3.6/lib2to3/fixes/fix_has_key.py\', \'lib/python3.6/lib2to3/fixes/fix_idioms.py\', \'lib/python3.6/lib2to3/fixes/fix_import.py\', \'lib/python3.6/lib2to3/fixes/fix_imports.py\', \'lib/python3.6/lib2to3/fixes/fix_imports2.py\', \'lib/python3.6/lib2to3/fixes/fix_input.py\', \'lib/python3.6/lib2to3/fixes/fix_intern.py\', \'lib/python3.6/lib2to3/fixes/fix_isinstance.py\', \'lib/python3.6/lib2to3/fixes/fix_itertools.py\', \'lib/python3.6/lib2to3/fixes/fix_itertools_imports.py\', \'lib/python3.6/lib2to3/fixes/fix_long.py\', \'lib/python3.6/lib2to3/fixes/fix_map.py\', \'lib/python3.6/lib2to3/fixes/fix_metaclass.py\', \'lib/python3.6/lib2to3/fixes/fix_methodattrs.py\', \'lib/python3.6/lib2to3/fixes/fix_ne.py\', \'lib/python3.6/lib2to3/fixes/fix_next.py\', \'lib/python3.6/lib2to3/fixes/fix_nonzero.py\', \'lib/python3.6/lib2to3/fixes/fix_numliterals.py\', \'lib/python3.6/lib2to3/fixes/fix_operator.py\', \'lib/python3.6/lib2to3/fixes/fix_paren.py\', \'lib/python3.6/lib2to3/fixes/fix_print.py\', \'lib/python3.6/lib2to3/fixes/fix_raise.py\', \'lib/python3.6/lib2to3/fixes/fix_raw_input.py\', \'lib/python3.6/lib2to3/fixes/fix_reduce.py\', \'lib/python3.6/lib2to3/fixes/fix_reload.py\', \'lib/python3.6/lib2to3/fixes/fix_renames.py\', \'lib/python3.6/lib2to3/fixes/fix_repr.py\', \'lib/python3.6/lib2to3/fixes/fix_set_literal.py\', \'lib/python3.6/lib2to3/fixes/fix_standarderror.py\', \'lib/python3.6/lib2to3/fixes/fix_sys_exc.py\', \'lib/python3.6/lib2to3/fixes/fix_throw.py\', \'lib/python3.6/lib2to3/fixes/fix_tuple_params.py\', \'lib/python3.6/lib2to3/fixes/fix_types.py\', \'lib/python3.6/lib2to3/fixes/fix_unicode.py\', \'lib/python3.6/lib2to3/fixes/fix_urllib.py\', \'lib/python3.6/lib2to3/fixes/fix_ws_comma.py\', \'lib/python3.6/lib2to3/fixes/fix_xrange.py\', \'lib/python3.6/lib2to3/fixes/fix_xreadlines.py\', \'lib/python3.6/lib2to3/fixes/fix_zip.py\', \'lib/python3.6/lib2to3/main.py\', \'lib/python3.6/lib2to3/patcomp.py\', \'lib/python3.6/lib2to3/pgen2/__init__.py\', \'lib/python3.6/lib2to3/pgen2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/conv.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/grammar.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/literals.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/parse.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/pgen.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/__pycache__/tokenize.cpython-36.pyc\', \'lib/python3.6/lib2to3/pgen2/conv.py\', \'lib/python3.6/lib2to3/pgen2/driver.py\', \'lib/python3.6/lib2to3/pgen2/grammar.py\', \'lib/python3.6/lib2to3/pgen2/literals.py\', \'lib/python3.6/lib2to3/pgen2/parse.py\', \'lib/python3.6/lib2to3/pgen2/pgen.py\', \'lib/python3.6/lib2to3/pgen2/token.py\', \'lib/python3.6/lib2to3/pgen2/tokenize.py\', \'lib/python3.6/lib2to3/pygram.py\', \'lib/python3.6/lib2to3/pytree.py\', \'lib/python3.6/lib2to3/refactor.py\', \'lib/python3.6/lib2to3/tests/__init__.py\', \'lib/python3.6/lib2to3/tests/__main__.py\', \'lib/python3.6/lib2to3/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/pytree_idempotency.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/support.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_all_fixers.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_fixers.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_main.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_parser.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_pytree.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_refactor.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/README\', \'lib/python3.6/lib2to3/tests/data/__pycache__/infinite_recursion.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/__pycache__/py3_test_grammar.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/bom.py\', \'lib/python3.6/lib2to3/tests/data/crlf.py\', \'lib/python3.6/lib2to3/tests/data/different_encoding.py\', \'lib/python3.6/lib2to3/tests/data/false_encoding.py\', \'lib/python3.6/lib2to3/tests/data/fixers/__pycache__/bad_order.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/__pycache__/no_fixer_cls.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/__pycache__/parrot_example.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/bad_order.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__init__.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_explicit.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_first.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_last.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_parrot.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/__pycache__/fix_preorder.cpython-36.pyc\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/fix_explicit.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/fix_first.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/fix_last.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/fix_parrot.py\', \'lib/python3.6/lib2to3/tests/data/fixers/myfixes/fix_preorder.py\', \'lib/python3.6/lib2to3/tests/data/fixers/no_fixer_cls.py\', \'lib/python3.6/lib2to3/tests/data/fixers/parrot_example.py\', \'lib/python3.6/lib2to3/tests/data/infinite_recursion.py\', \'lib/python3.6/lib2to3/tests/data/py2_test_grammar.py\', \'lib/python3.6/lib2to3/tests/data/py3_test_grammar.py\', \'lib/python3.6/lib2to3/tests/pytree_idempotency.py\', \'lib/python3.6/lib2to3/tests/support.py\', \'lib/python3.6/lib2to3/tests/test_all_fixers.py\', \'lib/python3.6/lib2to3/tests/test_fixers.py\', \'lib/python3.6/lib2to3/tests/test_main.py\', \'lib/python3.6/lib2to3/tests/test_parser.py\', \'lib/python3.6/lib2to3/tests/test_pytree.py\', \'lib/python3.6/lib2to3/tests/test_refactor.py\', \'lib/python3.6/lib2to3/tests/test_util.py\', \'lib/python3.6/linecache.py\', \'lib/python3.6/locale.py\', \'lib/python3.6/logging/__init__.py\', \'lib/python3.6/logging/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/logging/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/logging/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/logging/config.py\', \'lib/python3.6/logging/handlers.py\', \'lib/python3.6/lzma.py\', \'lib/python3.6/macpath.py\', \'lib/python3.6/macurl2path.py\', \'lib/python3.6/mailbox.py\', \'lib/python3.6/mailcap.py\', \'lib/python3.6/mimetypes.py\', \'lib/python3.6/modulefinder.py\', \'lib/python3.6/multiprocessing/__init__.py\', \'lib/python3.6/multiprocessing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/forkserver.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/heap.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/managers.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/pool.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/popen_fork.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/popen_forkserver.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/popen_spawn_posix.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/popen_spawn_win32.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/process.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/queues.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/reduction.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/resource_sharer.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/semaphore_tracker.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/sharedctypes.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/spawn.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/synchronize.cpython-36.pyc\', \'lib/python3.6/multiprocessing/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/multiprocessing/connection.py\', \'lib/python3.6/multiprocessing/context.py\', \'lib/python3.6/multiprocessing/dummy/__init__.py\', \'lib/python3.6/multiprocessing/dummy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/multiprocessing/dummy/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/multiprocessing/dummy/connection.py\', \'lib/python3.6/multiprocessing/forkserver.py\', \'lib/python3.6/multiprocessing/heap.py\', \'lib/python3.6/multiprocessing/managers.py\', \'lib/python3.6/multiprocessing/pool.py\', \'lib/python3.6/multiprocessing/popen_fork.py\', \'lib/python3.6/multiprocessing/popen_forkserver.py\', \'lib/python3.6/multiprocessing/popen_spawn_posix.py\', \'lib/python3.6/multiprocessing/popen_spawn_win32.py\', \'lib/python3.6/multiprocessing/process.py\', \'lib/python3.6/multiprocessing/queues.py\', \'lib/python3.6/multiprocessing/reduction.py\', \'lib/python3.6/multiprocessing/resource_sharer.py\', \'lib/python3.6/multiprocessing/semaphore_tracker.py\', \'lib/python3.6/multiprocessing/sharedctypes.py\', \'lib/python3.6/multiprocessing/spawn.py\', \'lib/python3.6/multiprocessing/synchronize.py\', \'lib/python3.6/multiprocessing/util.py\', \'lib/python3.6/netrc.py\', \'lib/python3.6/nntplib.py\', \'lib/python3.6/ntpath.py\', \'lib/python3.6/nturl2path.py\', \'lib/python3.6/numbers.py\', \'lib/python3.6/opcode.py\', \'lib/python3.6/operator.py\', \'lib/python3.6/optparse.py\', \'lib/python3.6/os.py\', \'lib/python3.6/pathlib.py\', \'lib/python3.6/pdb.py\', \'lib/python3.6/pickle.py\', \'lib/python3.6/pickletools.py\', \'lib/python3.6/pipes.py\', \'lib/python3.6/pkgutil.py\', \'lib/python3.6/platform.py\', \'lib/python3.6/plistlib.py\', \'lib/python3.6/poplib.py\', \'lib/python3.6/posixpath.py\', \'lib/python3.6/pprint.py\', \'lib/python3.6/profile.py\', \'lib/python3.6/pstats.py\', \'lib/python3.6/pty.py\', \'lib/python3.6/py_compile.py\', \'lib/python3.6/pyclbr.py\', \'lib/python3.6/pydoc.py\', \'lib/python3.6/pydoc_data/__init__.py\', \'lib/python3.6/pydoc_data/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/pydoc_data/__pycache__/topics.cpython-36.pyc\', \'lib/python3.6/pydoc_data/_pydoc.css\', \'lib/python3.6/pydoc_data/topics.py\', \'lib/python3.6/queue.py\', \'lib/python3.6/quopri.py\', \'lib/python3.6/random.py\', \'lib/python3.6/re.py\', \'lib/python3.6/reprlib.py\', \'lib/python3.6/rlcompleter.py\', \'lib/python3.6/runpy.py\', \'lib/python3.6/sched.py\', \'lib/python3.6/secrets.py\', \'lib/python3.6/selectors.py\', \'lib/python3.6/shelve.py\', \'lib/python3.6/shlex.py\', \'lib/python3.6/shutil.py\', \'lib/python3.6/signal.py\', \'lib/python3.6/site-packages/README\', \'lib/python3.6/site-packages/README.txt\', \'lib/python3.6/site.py\', \'lib/python3.6/smtpd.py\', \'lib/python3.6/smtplib.py\', \'lib/python3.6/sndhdr.py\', \'lib/python3.6/socket.py\', \'lib/python3.6/socketserver.py\', \'lib/python3.6/sqlite3/__init__.py\', \'lib/python3.6/sqlite3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/sqlite3/__pycache__/dbapi2.cpython-36.pyc\', \'lib/python3.6/sqlite3/__pycache__/dump.cpython-36.pyc\', \'lib/python3.6/sqlite3/dbapi2.py\', \'lib/python3.6/sqlite3/dump.py\', \'lib/python3.6/sre_compile.py\', \'lib/python3.6/sre_constants.py\', \'lib/python3.6/sre_parse.py\', \'lib/python3.6/ssl.py\', \'lib/python3.6/stat.py\', \'lib/python3.6/statistics.py\', \'lib/python3.6/string.py\', \'lib/python3.6/stringprep.py\', \'lib/python3.6/struct.py\', \'lib/python3.6/subprocess.py\', \'lib/python3.6/sunau.py\', \'lib/python3.6/symbol.py\', \'lib/python3.6/symtable.py\', \'lib/python3.6/sysconfig.py\', \'lib/python3.6/tabnanny.py\', \'lib/python3.6/tarfile.py\', \'lib/python3.6/telnetlib.py\', \'lib/python3.6/tempfile.py\', \'lib/python3.6/textwrap.py\', \'lib/python3.6/this.py\', \'lib/python3.6/threading.py\', \'lib/python3.6/timeit.py\', \'lib/python3.6/tkinter/__init__.py\', \'lib/python3.6/tkinter/__main__.py\', \'lib/python3.6/tkinter/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/colorchooser.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/commondialog.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/dialog.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/dnd.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/filedialog.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/font.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/messagebox.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/scrolledtext.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/simpledialog.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/tix.cpython-36.pyc\', \'lib/python3.6/tkinter/__pycache__/ttk.cpython-36.pyc\', \'lib/python3.6/tkinter/colorchooser.py\', \'lib/python3.6/tkinter/commondialog.py\', \'lib/python3.6/tkinter/constants.py\', \'lib/python3.6/tkinter/dialog.py\', \'lib/python3.6/tkinter/dnd.py\', \'lib/python3.6/tkinter/filedialog.py\', \'lib/python3.6/tkinter/font.py\', \'lib/python3.6/tkinter/messagebox.py\', \'lib/python3.6/tkinter/scrolledtext.py\', \'lib/python3.6/tkinter/simpledialog.py\', \'lib/python3.6/tkinter/tix.py\', \'lib/python3.6/tkinter/ttk.py\', \'lib/python3.6/token.py\', \'lib/python3.6/tokenize.py\', \'lib/python3.6/trace.py\', \'lib/python3.6/traceback.py\', \'lib/python3.6/tracemalloc.py\', \'lib/python3.6/tty.py\', \'lib/python3.6/turtle.py\', \'lib/python3.6/turtledemo/__init__.py\', \'lib/python3.6/turtledemo/__main__.py\', \'lib/python3.6/turtledemo/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/bytedesign.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/chaos.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/clock.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/colormixer.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/forest.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/fractalcurves.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/lindenmayer.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/minimal_hanoi.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/nim.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/paint.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/peace.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/penrose.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/planet_and_moon.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/round_dance.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/sorting_animate.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/two_canvases.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/wikipedia.cpython-36.pyc\', \'lib/python3.6/turtledemo/__pycache__/yinyang.cpython-36.pyc\', \'lib/python3.6/turtledemo/bytedesign.py\', \'lib/python3.6/turtledemo/chaos.py\', \'lib/python3.6/turtledemo/clock.py\', \'lib/python3.6/turtledemo/colormixer.py\', \'lib/python3.6/turtledemo/forest.py\', \'lib/python3.6/turtledemo/fractalcurves.py\', \'lib/python3.6/turtledemo/lindenmayer.py\', \'lib/python3.6/turtledemo/minimal_hanoi.py\', \'lib/python3.6/turtledemo/nim.py\', \'lib/python3.6/turtledemo/paint.py\', \'lib/python3.6/turtledemo/peace.py\', \'lib/python3.6/turtledemo/penrose.py\', \'lib/python3.6/turtledemo/planet_and_moon.py\', \'lib/python3.6/turtledemo/round_dance.py\', \'lib/python3.6/turtledemo/sorting_animate.py\', \'lib/python3.6/turtledemo/tree.py\', \'lib/python3.6/turtledemo/turtle.cfg\', \'lib/python3.6/turtledemo/two_canvases.py\', \'lib/python3.6/turtledemo/wikipedia.py\', \'lib/python3.6/turtledemo/yinyang.py\', \'lib/python3.6/types.py\', \'lib/python3.6/typing.py\', \'lib/python3.6/unittest/__init__.py\', \'lib/python3.6/unittest/__main__.py\', \'lib/python3.6/unittest/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/case.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/mock.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/result.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/signals.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/suite.cpython-36.pyc\', \'lib/python3.6/unittest/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/unittest/case.py\', \'lib/python3.6/unittest/loader.py\', \'lib/python3.6/unittest/main.py\', \'lib/python3.6/unittest/mock.py\', \'lib/python3.6/unittest/result.py\', \'lib/python3.6/unittest/runner.py\', \'lib/python3.6/unittest/signals.py\', \'lib/python3.6/unittest/suite.py\', \'lib/python3.6/unittest/util.py\', \'lib/python3.6/urllib/__init__.py\', \'lib/python3.6/urllib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/urllib/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/urllib/__pycache__/parse.cpython-36.pyc\', \'lib/python3.6/urllib/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/urllib/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/urllib/__pycache__/robotparser.cpython-36.pyc\', \'lib/python3.6/urllib/error.py\', \'lib/python3.6/urllib/parse.py\', \'lib/python3.6/urllib/request.py\', \'lib/python3.6/urllib/response.py\', \'lib/python3.6/urllib/robotparser.py\', \'lib/python3.6/uu.py\', \'lib/python3.6/uuid.py\', \'lib/python3.6/venv/__init__.py\', \'lib/python3.6/venv/__main__.py\', \'lib/python3.6/venv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/venv/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/venv/scripts/posix/activate\', \'lib/python3.6/venv/scripts/posix/activate.csh\', \'lib/python3.6/venv/scripts/posix/activate.fish\', \'lib/python3.6/warnings.py\', \'lib/python3.6/wave.py\', \'lib/python3.6/weakref.py\', \'lib/python3.6/webbrowser.py\', \'lib/python3.6/wsgiref/__init__.py\', \'lib/python3.6/wsgiref/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/wsgiref/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/wsgiref/__pycache__/headers.cpython-36.pyc\', \'lib/python3.6/wsgiref/__pycache__/simple_server.cpython-36.pyc\', \'lib/python3.6/wsgiref/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/wsgiref/__pycache__/validate.cpython-36.pyc\', \'lib/python3.6/wsgiref/handlers.py\', \'lib/python3.6/wsgiref/headers.py\', \'lib/python3.6/wsgiref/simple_server.py\', \'lib/python3.6/wsgiref/util.py\', \'lib/python3.6/wsgiref/validate.py\', \'lib/python3.6/xdrlib.py\', \'lib/python3.6/xml/__init__.py\', \'lib/python3.6/xml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xml/dom/NodeFilter.py\', \'lib/python3.6/xml/dom/__init__.py\', \'lib/python3.6/xml/dom/__pycache__/NodeFilter.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/domreg.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/expatbuilder.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/minicompat.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/minidom.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/pulldom.cpython-36.pyc\', \'lib/python3.6/xml/dom/__pycache__/xmlbuilder.cpython-36.pyc\', \'lib/python3.6/xml/dom/domreg.py\', \'lib/python3.6/xml/dom/expatbuilder.py\', \'lib/python3.6/xml/dom/minicompat.py\', \'lib/python3.6/xml/dom/minidom.py\', \'lib/python3.6/xml/dom/pulldom.py\', \'lib/python3.6/xml/dom/xmlbuilder.py\', \'lib/python3.6/xml/etree/ElementInclude.py\', \'lib/python3.6/xml/etree/ElementPath.py\', \'lib/python3.6/xml/etree/ElementTree.py\', \'lib/python3.6/xml/etree/__init__.py\', \'lib/python3.6/xml/etree/__pycache__/ElementInclude.cpython-36.pyc\', \'lib/python3.6/xml/etree/__pycache__/ElementPath.cpython-36.pyc\', \'lib/python3.6/xml/etree/__pycache__/ElementTree.cpython-36.pyc\', \'lib/python3.6/xml/etree/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xml/etree/__pycache__/cElementTree.cpython-36.pyc\', \'lib/python3.6/xml/etree/cElementTree.py\', \'lib/python3.6/xml/parsers/__init__.py\', \'lib/python3.6/xml/parsers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xml/parsers/__pycache__/expat.cpython-36.pyc\', \'lib/python3.6/xml/parsers/expat.py\', \'lib/python3.6/xml/sax/__init__.py\', \'lib/python3.6/xml/sax/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xml/sax/__pycache__/_exceptions.cpython-36.pyc\', \'lib/python3.6/xml/sax/__pycache__/expatreader.cpython-36.pyc\', \'lib/python3.6/xml/sax/__pycache__/handler.cpython-36.pyc\', \'lib/python3.6/xml/sax/__pycache__/saxutils.cpython-36.pyc\', \'lib/python3.6/xml/sax/__pycache__/xmlreader.cpython-36.pyc\', \'lib/python3.6/xml/sax/_exceptions.py\', \'lib/python3.6/xml/sax/expatreader.py\', \'lib/python3.6/xml/sax/handler.py\', \'lib/python3.6/xml/sax/saxutils.py\', \'lib/python3.6/xml/sax/xmlreader.py\', \'lib/python3.6/xmlrpc/__init__.py\', \'lib/python3.6/xmlrpc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/xmlrpc/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/xmlrpc/__pycache__/server.cpython-36.pyc\', \'lib/python3.6/xmlrpc/client.py\', \'lib/python3.6/xmlrpc/server.py\', \'lib/python3.6/zipapp.py\', \'lib/python3.6/zipfile.py\', \'share/man/man1/python3.1\', \'share/man/man1/python3.6.1\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/python-3.6.0-0\', type=1))", "defaults::python-dateutil-2.6.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'BSD\', md5=\'a55bbc8824956c45630e8739c537ead2\', name=\'python-dateutil\', platform=\'linux\', subdir=\'linux-64\', version=\'2.6.0\', fn=\'python-dateutil-2.6.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/python-dateutil-2.6.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/dateutil/__init__.py\', \'lib/python3.6/site-packages/dateutil/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/_common.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/easter.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/relativedelta.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/rrule.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/__pycache__/tzwin.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/_common.py\', \'lib/python3.6/site-packages/dateutil/easter.py\', \'lib/python3.6/site-packages/dateutil/parser.py\', \'lib/python3.6/site-packages/dateutil/relativedelta.py\', \'lib/python3.6/site-packages/dateutil/rrule.py\', \'lib/python3.6/site-packages/dateutil/tz/__init__.py\', \'lib/python3.6/site-packages/dateutil/tz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/tz/__pycache__/_common.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/tz/__pycache__/tz.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/tz/__pycache__/win.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/tz/_common.py\', \'lib/python3.6/site-packages/dateutil/tz/tz.py\', \'lib/python3.6/site-packages/dateutil/tz/win.py\', \'lib/python3.6/site-packages/dateutil/tzwin.py\', \'lib/python3.6/site-packages/dateutil/zoneinfo/__init__.py\', \'lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/zoneinfo/__pycache__/rebuild.cpython-36.pyc\', \'lib/python3.6/site-packages/dateutil/zoneinfo/dateutil-zoneinfo.tar.gz\', \'lib/python3.6/site-packages/dateutil/zoneinfo/rebuild.py\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/python_dateutil-2.6.0-py3.6.egg-info/zip-safe\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/python-dateutil-2.6.0-py36_0\', type=1))", "defaults::pytz-2016.10-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'812ce10ec903191ad1ab62ef5a715141\', name=\'pytz\', platform=\'linux\', subdir=\'linux-64\', version=\'2016.10\', fn=\'pytz-2016.10-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pytz-2016.10-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/pytz-2016.10-py3.6.egg-info\', \'lib/python3.6/site-packages/pytz/__init__.py\', \'lib/python3.6/site-packages/pytz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/__pycache__/lazy.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/__pycache__/reference.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/__pycache__/tzfile.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/__pycache__/tzinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/pytz/exceptions.py\', \'lib/python3.6/site-packages/pytz/lazy.py\', \'lib/python3.6/site-packages/pytz/reference.py\', \'lib/python3.6/site-packages/pytz/tzfile.py\', \'lib/python3.6/site-packages/pytz/tzinfo.py\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Abidjan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Accra\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Addis_Ababa\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Algiers\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmara\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmera\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bamako\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bangui\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Banjul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bissau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Blantyre\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Brazzaville\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bujumbura\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Cairo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Casablanca\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Ceuta\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Conakry\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Dakar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Dar_es_Salaam\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Djibouti\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Douala\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/El_Aaiun\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Freetown\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Gaborone\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Harare\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Johannesburg\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Juba\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Kampala\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Khartoum\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Kigali\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Kinshasa\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lagos\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Libreville\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lome\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Luanda\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lubumbashi\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lusaka\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Malabo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maputo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maseru\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Mbabane\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Mogadishu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Monrovia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Nairobi\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Ndjamena\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Niamey\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Nouakchott\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Ouagadougou\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Porto-Novo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Sao_Tome\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Timbuktu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Tripoli\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Tunis\', \'lib/python3.6/site-packages/pytz/zoneinfo/Africa/Windhoek\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Adak\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Anchorage\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Anguilla\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Antigua\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Araguaina\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Buenos_Aires\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Catamarca\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/ComodRivadavia\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Cordoba\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Jujuy\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/La_Rioja\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Mendoza\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Rio_Gallegos\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Salta\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/San_Juan\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/San_Luis\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Tucuman\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Argentina/Ushuaia\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Aruba\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Asuncion\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Atikokan\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Atka\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Bahia\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Bahia_Banderas\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Barbados\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Belem\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Belize\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Blanc-Sablon\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Boa_Vista\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Bogota\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Boise\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Buenos_Aires\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cambridge_Bay\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Campo_Grande\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cancun\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Caracas\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Catamarca\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cayenne\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cayman\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Chicago\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Chihuahua\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Coral_Harbour\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cordoba\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Costa_Rica\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Creston\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Cuiaba\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Curacao\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Danmarkshavn\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Dawson\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Dawson_Creek\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Denver\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Detroit\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Dominica\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Edmonton\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Eirunepe\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/El_Salvador\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Ensenada\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Fort_Nelson\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Fort_Wayne\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Fortaleza\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Glace_Bay\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Godthab\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Goose_Bay\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Grand_Turk\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Grenada\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Guadeloupe\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Guatemala\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Guayaquil\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Guyana\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Halifax\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Havana\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Hermosillo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Indianapolis\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Knox\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Marengo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Petersburg\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Tell_City\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Vevay\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Vincennes\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indiana/Winamac\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Indianapolis\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Inuvik\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Iqaluit\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Jamaica\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Jujuy\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Juneau\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Kentucky/Louisville\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Kentucky/Monticello\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Knox_IN\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Kralendijk\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/La_Paz\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Lima\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Los_Angeles\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Louisville\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Lower_Princes\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Maceio\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Managua\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Manaus\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Marigot\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Martinique\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Matamoros\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Mazatlan\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Mendoza\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Menominee\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Merida\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Metlakatla\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Mexico_City\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Miquelon\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Moncton\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Monterrey\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Montevideo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Montreal\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Montserrat\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Nassau\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/New_York\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Nipigon\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Nome\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Noronha\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/North_Dakota/Beulah\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/North_Dakota/Center\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/North_Dakota/New_Salem\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Ojinaga\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Panama\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Pangnirtung\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Paramaribo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Phoenix\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Port-au-Prince\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Port_of_Spain\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Porto_Acre\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Porto_Velho\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Puerto_Rico\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Rainy_River\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Rankin_Inlet\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Recife\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Regina\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Resolute\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Rio_Branco\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Rosario\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Santa_Isabel\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Santarem\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Santiago\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Santo_Domingo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Sao_Paulo\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Scoresbysund\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Shiprock\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Sitka\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Barthelemy\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Johns\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Kitts\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Lucia\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Thomas\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/St_Vincent\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Swift_Current\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Tegucigalpa\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Thule\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Thunder_Bay\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Tijuana\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Toronto\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Tortola\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Vancouver\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Virgin\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Whitehorse\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Winnipeg\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Yakutat\', \'lib/python3.6/site-packages/pytz/zoneinfo/America/Yellowknife\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Casey\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Davis\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/DumontDUrville\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Macquarie\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Mawson\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/McMurdo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Palmer\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Rothera\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/South_Pole\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Syowa\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Troll\', \'lib/python3.6/site-packages/pytz/zoneinfo/Antarctica/Vostok\', \'lib/python3.6/site-packages/pytz/zoneinfo/Arctic/Longyearbyen\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aden\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Almaty\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Amman\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Anadyr\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtobe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ashgabat\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ashkhabad\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Atyrau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baghdad\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bahrain\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baku\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bangkok\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Barnaul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Beirut\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bishkek\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Brunei\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Calcutta\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Chita\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Choibalsan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Chongqing\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Chungking\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Colombo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dacca\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Damascus\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dhaka\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dili\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dubai\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dushanbe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Famagusta\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Gaza\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Harbin\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hebron\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ho_Chi_Minh\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hong_Kong\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hovd\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Irkutsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Istanbul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jakarta\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jayapura\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jerusalem\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kabul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kamchatka\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Karachi\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kashgar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kathmandu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Katmandu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Khandyga\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kolkata\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Krasnoyarsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuala_Lumpur\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuching\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuwait\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macao\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Magadan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Makassar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Manila\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Muscat\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Nicosia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Novokuznetsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Novosibirsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Omsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Oral\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Phnom_Penh\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Pontianak\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Pyongyang\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Qatar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Qyzylorda\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Rangoon\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Riyadh\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Saigon\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Sakhalin\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Samarkand\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Seoul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Shanghai\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Singapore\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Srednekolymsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Taipei\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tashkent\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tbilisi\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tehran\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tel_Aviv\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimbu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimphu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tokyo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tomsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ujung_Pandang\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ulaanbaatar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ulan_Bator\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Urumqi\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ust-Nera\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Vientiane\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Vladivostok\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yakutsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yangon\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yekaterinburg\', \'lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yerevan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Azores\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Bermuda\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Canary\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Cape_Verde\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Faeroe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Faroe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Jan_Mayen\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Madeira\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Reykjavik\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/South_Georgia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/St_Helena\', \'lib/python3.6/site-packages/pytz/zoneinfo/Atlantic/Stanley\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/ACT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Adelaide\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Brisbane\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Broken_Hill\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Canberra\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Currie\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Darwin\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Eucla\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Hobart\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/LHI\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Lindeman\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Lord_Howe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Melbourne\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/NSW\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/North\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Perth\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Queensland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/South\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Sydney\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Tasmania\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Victoria\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/West\', \'lib/python3.6/site-packages/pytz/zoneinfo/Australia/Yancowinna\', \'lib/python3.6/site-packages/pytz/zoneinfo/Brazil/Acre\', \'lib/python3.6/site-packages/pytz/zoneinfo/Brazil/DeNoronha\', \'lib/python3.6/site-packages/pytz/zoneinfo/Brazil/East\', \'lib/python3.6/site-packages/pytz/zoneinfo/Brazil/West\', \'lib/python3.6/site-packages/pytz/zoneinfo/CET\', \'lib/python3.6/site-packages/pytz/zoneinfo/CST6CDT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Atlantic\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Central\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/East-Saskatchewan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Eastern\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Mountain\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Newfoundland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Pacific\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Saskatchewan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Canada/Yukon\', \'lib/python3.6/site-packages/pytz/zoneinfo/Chile/Continental\', \'lib/python3.6/site-packages/pytz/zoneinfo/Chile/EasterIsland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Cuba\', \'lib/python3.6/site-packages/pytz/zoneinfo/EET\', \'lib/python3.6/site-packages/pytz/zoneinfo/EST\', \'lib/python3.6/site-packages/pytz/zoneinfo/EST5EDT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Egypt\', \'lib/python3.6/site-packages/pytz/zoneinfo/Eire\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+0\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+1\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+10\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+11\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+12\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+2\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+3\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+4\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+5\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+6\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+7\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+8\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+9\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-0\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-1\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-10\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-11\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-12\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-13\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-14\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-2\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-3\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-4\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-5\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-6\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-7\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-8\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-9\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT0\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/Greenwich\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/UCT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/UTC\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/Universal\', \'lib/python3.6/site-packages/pytz/zoneinfo/Etc/Zulu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Amsterdam\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Andorra\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Astrakhan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Athens\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Belfast\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Belgrade\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Berlin\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Bratislava\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Brussels\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Bucharest\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Budapest\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Busingen\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Chisinau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Copenhagen\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Dublin\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Gibraltar\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Guernsey\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Helsinki\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Isle_of_Man\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Istanbul\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Jersey\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kaliningrad\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kiev\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kirov\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Lisbon\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Ljubljana\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/London\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Luxembourg\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Madrid\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Malta\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Mariehamn\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Minsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Monaco\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Moscow\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Nicosia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Oslo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Paris\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Podgorica\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Prague\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Riga\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Rome\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Samara\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/San_Marino\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Sarajevo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Saratov\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Simferopol\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Skopje\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Sofia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Stockholm\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Tallinn\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Tirane\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Tiraspol\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Ulyanovsk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Uzhgorod\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vaduz\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vatican\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vienna\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vilnius\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Volgograd\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Warsaw\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zagreb\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zaporozhye\', \'lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zurich\', \'lib/python3.6/site-packages/pytz/zoneinfo/Factory\', \'lib/python3.6/site-packages/pytz/zoneinfo/GB\', \'lib/python3.6/site-packages/pytz/zoneinfo/GB-Eire\', \'lib/python3.6/site-packages/pytz/zoneinfo/GMT\', \'lib/python3.6/site-packages/pytz/zoneinfo/GMT+0\', \'lib/python3.6/site-packages/pytz/zoneinfo/GMT-0\', \'lib/python3.6/site-packages/pytz/zoneinfo/GMT0\', \'lib/python3.6/site-packages/pytz/zoneinfo/Greenwich\', \'lib/python3.6/site-packages/pytz/zoneinfo/HST\', \'lib/python3.6/site-packages/pytz/zoneinfo/Hongkong\', \'lib/python3.6/site-packages/pytz/zoneinfo/Iceland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Antananarivo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Chagos\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Christmas\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Cocos\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Comoro\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Kerguelen\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Mahe\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Maldives\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Mauritius\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Mayotte\', \'lib/python3.6/site-packages/pytz/zoneinfo/Indian/Reunion\', \'lib/python3.6/site-packages/pytz/zoneinfo/Iran\', \'lib/python3.6/site-packages/pytz/zoneinfo/Israel\', \'lib/python3.6/site-packages/pytz/zoneinfo/Jamaica\', \'lib/python3.6/site-packages/pytz/zoneinfo/Japan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Kwajalein\', \'lib/python3.6/site-packages/pytz/zoneinfo/Libya\', \'lib/python3.6/site-packages/pytz/zoneinfo/MET\', \'lib/python3.6/site-packages/pytz/zoneinfo/MST\', \'lib/python3.6/site-packages/pytz/zoneinfo/MST7MDT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Mexico/BajaNorte\', \'lib/python3.6/site-packages/pytz/zoneinfo/Mexico/BajaSur\', \'lib/python3.6/site-packages/pytz/zoneinfo/Mexico/General\', \'lib/python3.6/site-packages/pytz/zoneinfo/NZ\', \'lib/python3.6/site-packages/pytz/zoneinfo/NZ-CHAT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Navajo\', \'lib/python3.6/site-packages/pytz/zoneinfo/PRC\', \'lib/python3.6/site-packages/pytz/zoneinfo/PST8PDT\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Apia\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Auckland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Bougainville\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Chatham\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Chuuk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Easter\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Efate\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Enderbury\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Fakaofo\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Fiji\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Funafuti\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Galapagos\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Gambier\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Guadalcanal\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Guam\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Honolulu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Johnston\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Kiritimati\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Kosrae\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Kwajalein\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Majuro\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Marquesas\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Midway\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Nauru\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Niue\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Norfolk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Noumea\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Pago_Pago\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Palau\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Pitcairn\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Pohnpei\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Ponape\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Port_Moresby\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Rarotonga\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Saipan\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Samoa\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Tahiti\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Tarawa\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Tongatapu\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Truk\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Wake\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Wallis\', \'lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Yap\', \'lib/python3.6/site-packages/pytz/zoneinfo/Poland\', \'lib/python3.6/site-packages/pytz/zoneinfo/Portugal\', \'lib/python3.6/site-packages/pytz/zoneinfo/ROC\', \'lib/python3.6/site-packages/pytz/zoneinfo/ROK\', \'lib/python3.6/site-packages/pytz/zoneinfo/Singapore\', \'lib/python3.6/site-packages/pytz/zoneinfo/Turkey\', \'lib/python3.6/site-packages/pytz/zoneinfo/UCT\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Alaska\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Aleutian\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Arizona\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Central\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/East-Indiana\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Eastern\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Hawaii\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Indiana-Starke\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Michigan\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Mountain\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Pacific\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Pacific-New\', \'lib/python3.6/site-packages/pytz/zoneinfo/US/Samoa\', \'lib/python3.6/site-packages/pytz/zoneinfo/UTC\', \'lib/python3.6/site-packages/pytz/zoneinfo/Universal\', \'lib/python3.6/site-packages/pytz/zoneinfo/W-SU\', \'lib/python3.6/site-packages/pytz/zoneinfo/WET\', \'lib/python3.6/site-packages/pytz/zoneinfo/Zulu\', \'lib/python3.6/site-packages/pytz/zoneinfo/iso3166.tab\', \'lib/python3.6/site-packages/pytz/zoneinfo/localtime\', \'lib/python3.6/site-packages/pytz/zoneinfo/posixrules\', \'lib/python3.6/site-packages/pytz/zoneinfo/zone.tab\', \'lib/python3.6/site-packages/pytz/zoneinfo/zone1970.tab\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pytz-2016.10-py36_0\', type=1))", "defaults::pyyaml-3.12-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'yaml 0.1.6\'), license=\'MIT\', md5=\'6e4c5d6e939a05c058d171cf17dd6944\', name=\'pyyaml\', platform=\'linux\', subdir=\'linux-64\', version=\'3.12\', fn=\'pyyaml-3.12-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyyaml-3.12-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/PyYAML-3.12-py3.6.egg-info\', \'lib/python3.6/site-packages/_yaml.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/yaml/__init__.py\', \'lib/python3.6/site-packages/yaml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/composer.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/constructor.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/cyaml.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/dumper.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/emitter.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/reader.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/representer.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/resolver.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/scanner.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/serializer.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/__pycache__/tokens.cpython-36.pyc\', \'lib/python3.6/site-packages/yaml/composer.py\', \'lib/python3.6/site-packages/yaml/constructor.py\', \'lib/python3.6/site-packages/yaml/cyaml.py\', \'lib/python3.6/site-packages/yaml/dumper.py\', \'lib/python3.6/site-packages/yaml/emitter.py\', \'lib/python3.6/site-packages/yaml/error.py\', \'lib/python3.6/site-packages/yaml/events.py\', \'lib/python3.6/site-packages/yaml/loader.py\', \'lib/python3.6/site-packages/yaml/nodes.py\', \'lib/python3.6/site-packages/yaml/parser.py\', \'lib/python3.6/site-packages/yaml/reader.py\', \'lib/python3.6/site-packages/yaml/representer.py\', \'lib/python3.6/site-packages/yaml/resolver.py\', \'lib/python3.6/site-packages/yaml/scanner.py\', \'lib/python3.6/site-packages/yaml/serializer.py\', \'lib/python3.6/site-packages/yaml/tokens.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyyaml-3.12-py36_0\', type=1))", "defaults::pyzmq-16.0.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'zeromq 4.1.*\'), license=\'LGPL and BSD\', license_family=\'LGPL\', md5=\'1b0f2c15d8c7b0bec87ab0569e9f9d65\', name=\'pyzmq\', platform=\'linux\', subdir=\'linux-64\', version=\'16.0.2\', fn=\'pyzmq-16.0.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/pyzmq-16.0.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/pyzmq-16.0.2-py3.6.egg-info\', \'lib/python3.6/site-packages/zmq/__init__.py\', \'lib/python3.6/site-packages/zmq/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/asyncio/__init__.py\', \'lib/python3.6/site-packages/zmq/asyncio/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/__init__.py\', \'lib/python3.6/site-packages/zmq/auth/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/__pycache__/certs.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/__pycache__/ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/__pycache__/thread.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/asyncio/__init__.py\', \'lib/python3.6/site-packages/zmq/auth/asyncio/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/auth/base.py\', \'lib/python3.6/site-packages/zmq/auth/certs.py\', \'lib/python3.6/site-packages/zmq/auth/ioloop.py\', \'lib/python3.6/site-packages/zmq/auth/thread.py\', \'lib/python3.6/site-packages/zmq/backend/__init__.py\', \'lib/python3.6/site-packages/zmq/backend/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/__pycache__/select.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__init__.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/_cffi.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/_poll.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/devices.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/message.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/socket.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cffi/_cdefs.h\', \'lib/python3.6/site-packages/zmq/backend/cffi/_cffi.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/_poll.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/_verify.c\', \'lib/python3.6/site-packages/zmq/backend/cffi/constants.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/context.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/devices.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/error.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/message.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/socket.py\', \'lib/python3.6/site-packages/zmq/backend/cffi/utils.py\', \'lib/python3.6/site-packages/zmq/backend/cython/__init__.py\', \'lib/python3.6/site-packages/zmq/backend/cython/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/backend/cython/_device.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/_poll.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/_version.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/checkrc.pxd\', \'lib/python3.6/site-packages/zmq/backend/cython/constant_enums.pxi\', \'lib/python3.6/site-packages/zmq/backend/cython/constants.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/constants.pxi\', \'lib/python3.6/site-packages/zmq/backend/cython/context.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/context.pxd\', \'lib/python3.6/site-packages/zmq/backend/cython/error.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/libzmq.pxd\', \'lib/python3.6/site-packages/zmq/backend/cython/message.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/message.pxd\', \'lib/python3.6/site-packages/zmq/backend/cython/socket.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/cython/socket.pxd\', \'lib/python3.6/site-packages/zmq/backend/cython/utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/backend/select.py\', \'lib/python3.6/site-packages/zmq/decorators.py\', \'lib/python3.6/site-packages/zmq/devices/__init__.py\', \'lib/python3.6/site-packages/zmq/devices/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/devices/__pycache__/basedevice.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/devices/__pycache__/monitoredqueue.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/devices/__pycache__/monitoredqueuedevice.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/devices/__pycache__/proxydevice.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/devices/basedevice.py\', \'lib/python3.6/site-packages/zmq/devices/monitoredqueue.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/zmq/devices/monitoredqueue.pxd\', \'lib/python3.6/site-packages/zmq/devices/monitoredqueue.py\', \'lib/python3.6/site-packages/zmq/devices/monitoredqueuedevice.py\', \'lib/python3.6/site-packages/zmq/devices/proxydevice.py\', \'lib/python3.6/site-packages/zmq/error.py\', \'lib/python3.6/site-packages/zmq/eventloop/__init__.py\', \'lib/python3.6/site-packages/zmq/eventloop/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/__pycache__/future.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/__pycache__/ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/__pycache__/zmqstream.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/future.py\', \'lib/python3.6/site-packages/zmq/eventloop/ioloop.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__init__.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/concurrent.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/stack_context.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/concurrent.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/ioloop.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/log.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__init__.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/auto.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/posix.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/auto.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/common.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/interface.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/posix.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/platform/windows.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/stack_context.py\', \'lib/python3.6/site-packages/zmq/eventloop/minitornado/util.py\', \'lib/python3.6/site-packages/zmq/eventloop/zmqstream.py\', \'lib/python3.6/site-packages/zmq/green/__init__.py\', \'lib/python3.6/site-packages/zmq/green/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/__pycache__/device.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/__pycache__/poll.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/core.py\', \'lib/python3.6/site-packages/zmq/green/device.py\', \'lib/python3.6/site-packages/zmq/green/eventloop/__init__.py\', \'lib/python3.6/site-packages/zmq/green/eventloop/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/eventloop/__pycache__/ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/eventloop/__pycache__/zmqstream.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/green/eventloop/ioloop.py\', \'lib/python3.6/site-packages/zmq/green/eventloop/zmqstream.py\', \'lib/python3.6/site-packages/zmq/green/poll.py\', \'lib/python3.6/site-packages/zmq/log/__init__.py\', \'lib/python3.6/site-packages/zmq/log/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/log/__pycache__/handlers.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/log/handlers.py\', \'lib/python3.6/site-packages/zmq/ssh/__init__.py\', \'lib/python3.6/site-packages/zmq/ssh/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/ssh/__pycache__/forward.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/ssh/__pycache__/tunnel.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/ssh/forward.py\', \'lib/python3.6/site-packages/zmq/ssh/tunnel.py\', \'lib/python3.6/site-packages/zmq/sugar/__init__.py\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/attrsettr.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/context.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/poll.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/socket.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/stopwatch.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/tracker.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/sugar/attrsettr.py\', \'lib/python3.6/site-packages/zmq/sugar/constants.py\', \'lib/python3.6/site-packages/zmq/sugar/context.py\', \'lib/python3.6/site-packages/zmq/sugar/frame.py\', \'lib/python3.6/site-packages/zmq/sugar/poll.py\', \'lib/python3.6/site-packages/zmq/sugar/socket.py\', \'lib/python3.6/site-packages/zmq/sugar/stopwatch.py\', \'lib/python3.6/site-packages/zmq/sugar/tracker.py\', \'lib/python3.6/site-packages/zmq/sugar/version.py\', \'lib/python3.6/site-packages/zmq/tests/__init__.py\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_auth.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_cffi_backend.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_context.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_device.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_error.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_etc.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_future.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_includes.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_log.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_message.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_monitor.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_monqueue.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_multipart.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_pair.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_poll.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_pubsub.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_reqrep.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_retry_eintr.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_security.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_socket.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_ssh.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_version.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_win32_shim.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_z85.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/__pycache__/test_zmqstream.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/asyncio/__init__.py\', \'lib/python3.6/site-packages/zmq/tests/asyncio/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/asyncio/__pycache__/_test_asyncio.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/asyncio/__pycache__/test_asyncio.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/tests/asyncio/_test_asyncio.py\', \'lib/python3.6/site-packages/zmq/tests/asyncio/test_asyncio.py\', \'lib/python3.6/site-packages/zmq/tests/test_auth.py\', \'lib/python3.6/site-packages/zmq/tests/test_cffi_backend.py\', \'lib/python3.6/site-packages/zmq/tests/test_constants.py\', \'lib/python3.6/site-packages/zmq/tests/test_context.py\', \'lib/python3.6/site-packages/zmq/tests/test_decorators.py\', \'lib/python3.6/site-packages/zmq/tests/test_device.py\', \'lib/python3.6/site-packages/zmq/tests/test_error.py\', \'lib/python3.6/site-packages/zmq/tests/test_etc.py\', \'lib/python3.6/site-packages/zmq/tests/test_future.py\', \'lib/python3.6/site-packages/zmq/tests/test_imports.py\', \'lib/python3.6/site-packages/zmq/tests/test_includes.py\', \'lib/python3.6/site-packages/zmq/tests/test_ioloop.py\', \'lib/python3.6/site-packages/zmq/tests/test_log.py\', \'lib/python3.6/site-packages/zmq/tests/test_message.py\', \'lib/python3.6/site-packages/zmq/tests/test_monitor.py\', \'lib/python3.6/site-packages/zmq/tests/test_monqueue.py\', \'lib/python3.6/site-packages/zmq/tests/test_multipart.py\', \'lib/python3.6/site-packages/zmq/tests/test_pair.py\', \'lib/python3.6/site-packages/zmq/tests/test_poll.py\', \'lib/python3.6/site-packages/zmq/tests/test_pubsub.py\', \'lib/python3.6/site-packages/zmq/tests/test_reqrep.py\', \'lib/python3.6/site-packages/zmq/tests/test_retry_eintr.py\', \'lib/python3.6/site-packages/zmq/tests/test_security.py\', \'lib/python3.6/site-packages/zmq/tests/test_socket.py\', \'lib/python3.6/site-packages/zmq/tests/test_ssh.py\', \'lib/python3.6/site-packages/zmq/tests/test_version.py\', \'lib/python3.6/site-packages/zmq/tests/test_win32_shim.py\', \'lib/python3.6/site-packages/zmq/tests/test_z85.py\', \'lib/python3.6/site-packages/zmq/tests/test_zmqstream.py\', \'lib/python3.6/site-packages/zmq/utils/__init__.py\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/constant_names.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/garbage.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/interop.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/jsonapi.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/monitor.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/sixcerpt.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/strtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/win32.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/__pycache__/z85.cpython-36.pyc\', \'lib/python3.6/site-packages/zmq/utils/buffers.pxd\', \'lib/python3.6/site-packages/zmq/utils/compiler.json\', \'lib/python3.6/site-packages/zmq/utils/config.json\', \'lib/python3.6/site-packages/zmq/utils/constant_names.py\', \'lib/python3.6/site-packages/zmq/utils/garbage.py\', \'lib/python3.6/site-packages/zmq/utils/getpid_compat.h\', \'lib/python3.6/site-packages/zmq/utils/interop.py\', \'lib/python3.6/site-packages/zmq/utils/ipcmaxlen.h\', \'lib/python3.6/site-packages/zmq/utils/jsonapi.py\', \'lib/python3.6/site-packages/zmq/utils/monitor.py\', \'lib/python3.6/site-packages/zmq/utils/pyversion_compat.h\', \'lib/python3.6/site-packages/zmq/utils/sixcerpt.py\', \'lib/python3.6/site-packages/zmq/utils/strtypes.py\', \'lib/python3.6/site-packages/zmq/utils/win32.py\', \'lib/python3.6/site-packages/zmq/utils/z85.py\', \'lib/python3.6/site-packages/zmq/utils/zmq_compat.h\', \'lib/python3.6/site-packages/zmq/utils/zmq_constants.h\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/pyzmq-16.0.2-py36_0\', type=1))", "defaults::qt-5.6.2-3": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'3\', build_number=3, depends=(\'dbus\', \'fontconfig 2.12.*\', \'freetype 2.5.*\', \'gst-plugins-base\', \'icu 54.*\', \'jpeg 9*\', \'libgcc\', \'libpng >=1.6.27,<1.7\', \'libxcb\', \'openssl 1.0*\', \'zlib 1.2*\'), license=\'LGPLv3\', license_family=\'LGPL\', md5=\'d65d31d5c5fce58f9b02414c2a092edc\', name=\'qt\', platform=\'linux\', subdir=\'linux-64\', version=\'5.6.2\', fn=\'qt-5.6.2-3.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/qt-5.6.2-3.tar.bz2\', files=(\'include/qt/QtCore/QCommandLineOption\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmlnullablevalue_p.h\', \'include/qt/QtQml/QJSValue\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_formwindowcommand_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamergltexturerenderer_p.h\', \'lib/libQt5XcbQpa.so\', \'include/qt/QtWidgets/QSpinBox\', \'lib/cmake/Qt5Test/Qt5TestConfigVersion.cmake\', \'include/qt/QtX11Extras/qx11info_x11.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodeviewinterface_p.h\', \'include/qt/QtCore/QStringData\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4internalclass_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlayoutengine_p.h\', \'mkspecs/irix-cc-64/qplatformdefs.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothdeviceinfo_p.h\', \'include/qt/QtPrintSupport/QtPrintSupport\', \'include/qt/QtMultimedia/QCameraImageProcessing\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtokenizer_p.h\', \'mkspecs/linux-clang/qplatformdefs.h\', \'lib/libQt5X11Extras.so.5.6.2\', \'include/qt/QtCore/QMutex\', \'qml/QtQuick/Controls/Private/ContentItem.qml\', \'include/qt/QtGui/QPixmap\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpmultipart_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qqnametest_p.h\', \'mkspecs/linux-icc/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcontext2d_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtreatas_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4functionobject_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodewidget_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QICOPlugin.cmake\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qplaintextedit_p.h\', \'include/qt/QtGui/QStyleHints\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_dnditem_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcommentconstructor_p.h\', \'doc/global/template/style/offline.css\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstvideorenderersink_p.h\', \'lib/libQt5Bluetooth.so.5.6.2\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptcompletiontask_p.h\', \'include/qt/QtWidgets/QHeaderView\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessauthenticationmanager_p.h\', \'qml/QtQuick/Dialogs/Private/qmldir\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodeviewinterface_p_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qaction_p.h\', \'include/qt/QtWidgets/QWhatsThis\', \'qml/QtBluetooth/plugins.qmltypes\', \'qml/QtQuick/Controls/Private/TextHandle.qml\', \'include/qt/QtGui/qtextdocument.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickborderimage_p_p.h\', \'mkspecs/macx-clang/Info.plist.dSYM.in\', \'include/qt/QtNetwork/QSslEllipticCurve\', \'include/qt/QtMultimedia/QMediaService\', \'include/qt/QtDesigner/qextensionmanager.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qtslib_p.h\', \'include/qt/QtCore/QMultiHash\', \'mkspecs/common/mac/qplatformdefs.h\', \'include/qt/QtGui/qrgba64.h\', \'include/qt/QtDesigner/customwidget.h\', \'include/qt/QtXml/QDomNotation\', \'include/qt/QtCore/qarraydata.h\', \'include/qt/QtGui/QOpenGLFunctions_4_4_Core\', \'translations/qtwebsockets_ja.qm\', \'translations/qtscript_de.qm\', \'lib/cmake/Qt5OpenGL/Qt5OpenGLConfigVersion.cmake\', \'include/qt/QtQuick/QSGSimpleMaterialComparableMaterial\', \'include/qt/QtWebSockets/qtwebsocketsversion.h\', \'qml/QtQuick/Controls/Styles/Base/images/spinner_small.png\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/promotionmodel_p.h\', \'include/qt/QtNetwork/qssl.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qmacmime_p.h\', \'include/qt/QtWidgets/QStyleOptionHeader\', \'include/qt/QtCore/QScopedArrayPointer\', \'include/qt/QtCore/qthreadstorage.h\', \'mkspecs/modules/qt_lib_webkitwidgets_private.pri\', \'include/qt/QtTest/5.6.2/QtTest/private/qxunittestlogger_p.h\', \'include/qt/QtGui/qopengl.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p.h\', \'translations/qt_sv.qm\', \'lib/libQt5Network.so.5.6\', \'include/qt/QtCore/5.6.2/QtCore/private/qppsattribute_p.h\', \'plugins/qmltooling/libqmldbg_inspector.so\', \'include/qt/QtCore/qjsonvalue.h\', \'include/qt/QtGui/QOpenGLTexture\', \'lib/cmake/Qt5Gui/Qt5Gui_QMinimalIntegrationPlugin.cmake\', \'include/qt/QtWidgets/QApplication\', \'include/qt/QtGui/QOpenGLFunctions_3_3_Compatibility\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultglyphnode_p.h\', \'include/qt/QtCore/QSortFilterProxyModel\', \'qml/QtWebSockets/libdeclarative_qmlwebsockets.so\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickpointdirection_p.h\', \'include/qt/QtGui/QTextFrame\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4serialize_p.h\', \'include/qt/QtGui/qtransform.h\', \'mkspecs/modules/qt_lib_widgets.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxpath10corefunctions_p.h\', \'qml/QtQuick/Controls/TextField.qml\', \'mkspecs/macx-g++/Info.plist.lib\', \'translations/qtconfig_uk.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdelegatingstaticcontext_p.h\', \'include/qt/QtCore/QListData\', \'include/qt/QtGui/QRgba64\', \'lib/libQt5DesignerComponents.so.5.6\', \'include/qt/QtCore/qsemaphore.h\', \'mkspecs/freebsd-clang/qmake.conf\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintengine_raster_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpdf_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickloader_p_p.h\', \'include/qt/QtCore/QXmlStreamAttribute\', \'include/qt/QtUiTools/quiloader.h\', \'lib/pkgconfig/Qt5WebSockets.pc\', \'mkspecs/common/winrt_winphone/assets/logo_30x30.png\', \'include/qt/QtMultimedia/qaudiodecoder.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpicture_p.h\', \'lib/libQt5ScriptTools.so.5\', \'lib/libQt5Svg.so.5\', \'include/qt/QtScriptTools/QtScriptTools\', \'mkspecs/qnx-x86-64-qcc/qplatformdefs.h\', \'mkspecs/common/qcc-base-qnx-x86-64.conf\', \'include/qt/QtOpenGLExtensions/QtOpenGLExtensionsDepends\', \'qml/QtQuick/Controls/Styles/Base/StatusBarStyle.qml\', \'include/qt/QtSvg/QtSvg\', \'qml/QtQuick/Controls/Styles/Base/TextAreaStyle.qml\', \'translations/qt_help_da.qm\', \'include/qt/QtGui/qpagedpaintdevice.h\', \'include/qt/QtScriptTools/qtscripttoolsversion.h\', \'include/qt/QtBluetooth/qbluetoothuuid.h\', \'include/qt/QtWebKit/QWebNotificationData\', \'include/qt/QtCore/qpluginloader.h\', \'include/qt/QtWidgets/QMdiArea\', \'lib/libQt5Qml.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsinglecontainer_p.h\', \'lib/libQt5DesignerComponents.so.5\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaopenglhelper_p.h\', \'include/qt/QtDBus/QDBusConnectionInterface\', \'include/qt/QtX11Extras/QX11Info\', \'include/qt/QtCore/5.6.2/QtCore/private/qfuturewatcher_p.h\', \'lib/cmake/Qt5Core/Qt5CoreConfigExtrasMkspecDir.cmake\', \'mkspecs/features/win32/msvc_mp.prf\', \'include/qt/QtMultimedia/QAudioRecorder\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowscestyle_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qgraphicsshadereffect_p.h\', \'include/qt/QtMultimediaQuick_p/QtMultimediaQuick_pVersion\', \'include/qt/QtScript/qscriptcontext.h\', \'include/qt/QtWidgets/QSplitterHandle\', \'qml/QtQuick/Controls/Styles/Desktop/TableViewStyle.qml\', \'include/qt/QtDesigner/abstractwidgetbox.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_sqlite2_p.h\', \'include/qt/QtCore/qdatastream.h\', \'include/qt/QtWidgets/qstackedlayout.h\', \'include/qt/QtTest/QSpontaneKeyEvent\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4numberobject_p.h\', \'mkspecs/features/android/android_deployment_settings.prf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpathview_p_p.h\', \'translations/assistant_ko.qm\', \'qml/QtQuick/Controls/Styles/Base/MenuStyle.qml\', \'include/qt/QtUiPlugin/qtuipluginversion.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4debugging_p.h\', \'include/qt/QtWidgets/qscroller.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptqobject_p.h\', \'include/qt/QtQml/qqmlscriptstring.h\', \'include/qt/QtCore/QLatin1Char\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgareaallocator_p.h\', \'doc/global/template/images/ico_out.png\', \'lib/libQt5MultimediaQuick_p.so.5.6\', \'include/qt/QtWidgets/QItemEditorFactory\', \'include/qt/QtCore/QReadWriteLock\', \'include/qt/QtWebSockets/qmaskgenerator.h\', \'plugins/imageformats/libqgif.so\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdistancefieldglyphnode_p_p.h\', \'include/qt/QtCore/QFactoryInterface\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qbasicfontdatabase_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmetaobject_p.h\', \'include/qt/QtCore/QJsonParseError\', \'include/qt/QtQuick/QQuickAsyncImageProvider\', \'include/qt/QtXml/QDomEntity\', \'include/qt/QtTest/QtTestWidgets\', \'include/qt/QtWidgets/QStyleOptionTabBarBase\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickfocusscope_p.h\', \'include/qt/QtHelp/QtHelpDepends\', \'mkspecs/features/incredibuild_xge.prf\', \'mkspecs/features/win32/rtti_off.prf\', \'include/qt/QtGui/QPainterPathStroker\', \'include/qt/QtGui/QIcon\', \'include/qt/QtGui/5.6.2/QtGui/private/qdrawhelper_mips_dsp_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/complexwidgets_p.h\', \'lib/libQt5Script.la\', \'lib/pkgconfig/Qt5PrintSupport.pc\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformoffscreensurface.h\', \'include/qt/QtGui/QPicture\', \'mkspecs/features/spec_pre.prf\', \'include/qt/QtBluetooth/qbluetoothtransferrequest.h\', \'include/qt/QtGui/QAccessibleImageInterface\', \'mkspecs/features/resolve_config.prf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerbackend_p.h\', \'include/qt/QtMultimedia/qaudiorecorder.h\', \'include/qt/QtWebKit/qwebpluginfactory.h\', \'include/qt/QtCore/QStandardPaths\', \'mkspecs/common/winrt_winphone/qmake.conf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickspritesequence_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractxmlnodemodel_p.h\', \'mkspecs/features/qt_example_installs.prf\', \'lib/cmake/Qt5Bluetooth/Qt5BluetoothConfigVersion.cmake\', \'include/qt/QtCore/5.6.2/QtCore/private/qanimationgroup_p.h\', \'include/qt/QtGui/QMatrix3x4\', \'mkspecs/irix-cc/qmake.conf\', \'include/qt/QtGui/QMatrix3x3\', \'doc/global/qt-cpp-defines.qdocconf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommandmanager_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/BusyIndicatorStyle.qml\', \'mkspecs/macx-xcode/QtTest.plist\', \'include/qt/QtGui/QHideEvent\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimation_p.h\', \'include/qt/QtCore/QObjectData\', \'mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestcoreelement_p.h\', \'include/qt/QtWidgets/qcheckbox.h\', \'include/qt/QtCore/QSharedDataPointer\', \'translations/assistant_cs.qm\', \'qml/QtQuick/Controls/ComboBox.qml\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qeglstreamconvenience_p.h\', \'qml/QtQuick/Dialogs/libdialogplugin.so\', \'mkspecs/macx-xcode/default.xcscheme\', \'mkspecs/solaris-g++-64/qplatformdefs.h\', \'include/qt/QtMultimedia/QMediaServiceSupportedFormatsInterface\', \'include/qt/QtXmlPatterns/qxmlquery.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpnetworkconnectionchannel_p.h\', \'include/qt/QtQuick/QSGMaterialShader\', \'mkspecs/features/link_pkgconfig.prf\', \'mkspecs/modules/qt_lib_webkit.pri\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtagtype4_p.h\', \'lib/cmake/Qt5Widgets/Qt5WidgetsConfig.cmake\', \'include/qt/QtNetwork/QDnsServiceRecord\', \'mkspecs/devices/linux-nuc-g++/qplatformdefs.h\', \'lib/libQt5Gui.so.5\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qtsvgglobal_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdeviceresourceloader_p.h\', \'lib/libQt5Multimedia.prl\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfbscreen_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtarget_emulator_p.h\', \'bin/pixeltool\', \'mkspecs/common/qcc-base.conf\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/profile1_p.h\', \'include/qt/QtXmlPatterns/qabstracturiresolver.h\', \'include/qt/QtScriptTools/QScriptEngineDebugger\', \'include/qt/QtMultimedia/QMediaAudioProbeControl\', \'include/qt/QtTest/QTestEventList\', \'mkspecs/qnx-aarch64le-qcc/qplatformdefs.h\', \'translations/qtconnectivity_en.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quriloader_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnumericfns_p.h\', \'mkspecs/common/winrt_winphone/assets/logo_store.png\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticleextruder_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractbutton_p.h\', \'lib/libQt5Designer.prl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsequencemappingiterator_p.h\', \'translations/qtdeclarative_fi.qm\', \'doc/global/template/style/doc_search.png\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusargument_p.h\', \'plugins/platforms/libqoffscreen.so\', \'include/qt/QtQml/QQmlExtensionPlugin\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprint_p.h\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerAudioDecoderServicePlugin.cmake\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qndefrecord_p.h\', \'qml/QtQuick/Controls/Switch.qml\', \'include/qt/QtGui/qabstracttextdocumentlayout.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgrenderer_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquicklineextruder_p.h\', \'translations/linguist_zh_CN.qm\', \'mkspecs/macx-clang-32/qmake.conf\', \'include/qt/QtWebChannel/5.6.2/QtWebChannel/private/qmetaobjectpublisher_p.h\', \'include/qt/QtGui/qpixelformat.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunlimitedcontainer_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcomponent_p.h\', \'include/qt/QtHelp/QHelpContentWidget\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qquery_p.h\', \'include/qt/QtGui/QOpenGLDebugMessage\', \'mkspecs/features/win32/idcidl.prf\', \'include/qt/QtScript/QScriptClass\', \'qml/QtQuick/Controls/Styles/Base/images/slider-groove.png\', \'mkspecs/win32-msvc2005/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticcurrentcontext_p.h\', \'include/qt/QtTest/QtTestGui\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstappsrc_p.h\', \'include/qt/QtCore/QTextCodec\', \'include/qt/QtQuick/QSGOpaqueTextureMaterial\', \'mkspecs/macx-icc/Info.plist.lib\', \'include/qt/QtWidgets/qscrollerproperties.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/agent_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemanimation_p.h\', \'lib/libQt5Core.so\', \'include/qt/QtCore/qurlquery.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/sheet_delegate_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljslexer_p.h\', \'include/qt/QtWebChannel/QtWebChannel\', \'include/qt/QtGui/QTextFrameLayoutData\', \'translations/qtconfig_hu.qm\', \'include/qt/QtGui/QOpenGLDebugLogger\', \'include/qt/QtConcurrent/qtconcurrentcompilertest.h\', \'doc/global/qt-module-defaults-online.qdocconf\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickcumulativedirection_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptdeclarativeclass_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglgradientcache_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschemadatetime_p.h\', \'include/qt/QtQuickWidgets/QQuickWidget\', \'include/qt/QtQml/QQmlContext\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qapplication_p.h\', \'include/qt/QtGui/QAccessibleTextUpdateEvent\', \'qml/QtQuick/Controls/Styles/Base/BusyIndicatorStyle.qml\', \'qml/QtQuick/Controls/Styles/Desktop/TextAreaStyle.qml\', \'mkspecs/features/win32/dumpcpp.prf\', \'include/qt/QtDesigner/QDesignerCustomWidgetInterface\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qreceiverdynamiccontext_p.h\', \'include/qt/QtConcurrent/qtconcurrentstoredfunctioncall.h\', \'include/qt/QtCore/QVersionNumber\', \'lib/libQt5WebKitWidgets.prl\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qdeclarativevideooutput_backend_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomicmathematicianlocators_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qt_gui_pch.h\', \'include/qt/QtMultimedia/qcameracapturebufferformatcontrol.h\', \'include/qt/QtMultimedia/QMediaServiceProviderPlugin\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_win_p.h\', \'include/qt/QtNetwork/QTcpSocket\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediarecorder_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticlepainter_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qeffects_p.h\', \'include/qt/QtWidgets/QDataWidgetMapper\', \'include/qt/QtCore/QMutableSetIterator\', \'include/qt/QtHelp/qhelpsearchengine.h\', \'include/qt/QtCore/qfutureinterface.h\', \'qml/QtQuick/Controls/Private/FastGlow.qml\', \'include/qt/QtMultimedia/qmetadatawritercontrol.h\', \'include/qt/QtNetwork/qhostaddress.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qebvextractor_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdcomplextype_p.h\', \'include/qt/QtWidgets/QGraphicsObject\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemaparser_p.h\', \'lib/cmake/Qt5Qml/Qt5Qml_QQmlNativeDebugConnectorFactory.cmake\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4lookup_p.h\', \'qml/QtQuick/Controls/Styles/Base/CalendarStyle.qml\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4global_p.h\', \'include/qt/QtCore/QFutureSynchronizer\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptmessagehandlerinterface_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtypechecker_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschematime_p.h\', \'include/qt/QtScript/QtScriptVersion\', \'include/qt/QtWidgets/qlineedit.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qhits_p.h\', \'qml/QtQuick/Extras/designer/images/dial-icon.png\', \'mkspecs/features/unix/largefile.prf\', \'translations/qtxmlpatterns_cs.qm\', \'translations/qt_sk.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qppmhandler_p.h\', \'include/qt/QtGui/QInputMethod\', \'include/qt/QtCore/QtConfig\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/pluginmanager_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QEvdevMousePlugin.cmake\', \'translations/qtscript_ru.qm\', \'include/qt/QtWebKit/qwebelement.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgtexturematerial_p.h\', \'lib/cmake/Qt5Concurrent/Qt5ConcurrentConfigVersion.cmake\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlabstractbinding_p.h\', \'include/qt/QtWidgets/QCheckBox\', \'translations/qtbase_lv.qm\', \'mkspecs/linux-icc-64/qplatformdefs.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4qobjectwrapper_p.h\', \'include/qt/QtMultimedia/qaudiobuffer.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qnumeric_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldelegatemodel_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qemulationpaintengine_p.h\', \'lib/libQt5Qml.so.5.6.2\', \'qml/QtQuick/Controls/Private/ScrollBar.qml\', \'include/qt/QtWidgets/QStyleOptionFocusRect\', \'include/qt/QtGui/5.6.2/QtGui/private/qrasterizer_p.h\', \'mkspecs/unsupported/nacl-g++/qplatformdefs.h\', \'include/qt/QtSql/qsqlrecord.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptengine_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlboundsignal_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdannotated_p.h\', \'include/qt/QtCore/QScopedPointerPodDeleter\', \'include/qt/QtDBus/QDBusError\', \'include/qt/QtQml/qqmldebug.h\', \'include/qt/QtGui/QOpenGLContext\', \'include/qt/QtCore/5.6.2/QtCore/private/qcoreapplication_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qfragmentmap_p.h\', \'mkspecs/unsupported/linux-host-g++/qmake.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4debugging_p.h\', \'include/qt/QtGui/QMatrix2x4\', \'include/qt/QtWidgets/qmacnativewidget_mac.h\', \'include/qt/QtGui/QMatrix2x2\', \'include/qt/QtDBus/QDBusPendingCall\', \'mkspecs/winrt-arm-msvc2015/qplatformdefs.h\', \'qml/QtQml/StateMachine/plugins.qmltypes\', \'qml/QtWebKit/plugins.qmltypes\', \'include/qt/QtWidgets/qmdisubwindow.h\', \'include/qt/QtMultimediaQuick_p/5.6.2/QtMultimediaQuick_p/private/qdeclarativevideooutput_render_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgrenderloop_p.h\', \'include/qt/QtQuickTest/5.6.2/QtQuickTest/private/qtestoptions_p.h\', \'include/qt/QtDBus/QDBusVariant\', \'include/qt/QtMultimedia/qaudioinput.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/atspiadaptor_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdstatemachine_tpl_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickturbulence_p.h\', \'include/qt/QtConcurrent/qtconcurrentfilter.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qattributenamevalidator_p.h\', \'include/qt/QtHelp/qhelpengine.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4executableallocator_p.h\', \'qml/QtQuick/Controls/ScrollView.qml\', \'include/qt/QtWidgets/QStylePainter\', \'include/qt/QtQml/5.6.2/QtQml/private/qcontinuinganimationgroupjob_p.h\', \'qml/QtGraphicalEffects/RectangularGlow.qml\', \'include/qt/QtWebKit/QWebKitPlatformPlugin\', \'include/qt/QtNetwork/qnetworkproxy.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsignaltransition_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslcontext_openssl_p.h\', \'mkspecs/common/wince/qmake.conf\', \'include/qt/QtWidgets/QItemEditorCreatorBase\', \'include/qt/QtCore/5.6.2/QtCore/private/qipaddress_p.h\', \'include/qt/QtScript/qscriptvalueiterator.h\', \'include/qt/QtQuickTest/QtQuickTestVersion\', \'include/qt/QtGui/QLinearGradient\', \'mkspecs/features/win32/separate_debug_info.prf\', \'lib/libQt5Quick.so.5\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslconfiguration_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpsocket_simulator_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qinputdevicemanager_p.h\', \'include/qt/QtWidgets/QColorDialog\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdfacet_p.h\', \'include/qt/QtMultimedia/QVideoEncoderSettings\', \'mkspecs/modules/qt_lib_opengl.pri\', \'mkspecs/modules/qt_lib_clucene_private.pri\', \'mkspecs/macx-ios-clang/features/qt_config.prf\', \'include/qt/QtUiPlugin/qdesignerexportwidget.h\', \'include/qt/QtNetwork/qnetworkreply.h\', \'qml/QtWebKit/qmldir\', \'mkspecs/features/simd.prf\', \'mkspecs/common/winrt_winphone/assets/logo_70x70.png\', \'include/qt/QtQuick/QSGNodeVisitor\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformwindow_p.h\', \'include/qt/QtCore/qdebug.h\', \'doc/global/template/images/home.png\', \'include/qt/QtQuick/QSGNode\', \'mkspecs/macx-g++40/Info.plist.lib\', \'include/qt/QtConcurrent/QtConcurrentMap\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/util.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qwindowspipereader_p.h\', \'mkspecs/wince60standard-x86-msvc2005/qmake.conf\', \'include/qt/QtXml/qdom.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsengine_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-right@2x.png\', \'lib/libQt5Test.so.5\', \'include/qt/QtNetwork/QDnsDomainNameRecord\', \'include/qt/QtQmlDevTools/QtQmlDevToolsVersion\', \'include/qt/QtQml/QQmlPropertyMap\', \'include/qt/QtXml/QXmlDefaultHandler\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qderivedstring_p.h\', \'lib/libQt5Help.prl\', \'mkspecs/unsupported/vxworks-simpentium-g++/qmake.conf\', \'translations/qt_help_en.qm\', \'qml/QtQuick/PrivateWidgets/qmldir\', \'lib/cmake/Qt5Help/Qt5HelpConfigVersion.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccasterlocator_p.h\', \'lib/libQt5Core.so.5.6\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4targetplatform_p.h\', \'include/qt/QtGui/qaccessibleobject.h\', \'mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri\', \'include/qt/QtGui/5.6.2/QtGui/private/qoutlinemapper_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_propertycommand_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgmaterialshader_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetanimator_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsystemerror_p.h\', \'mkspecs/qmodule.pri\', \'translations/qtscript_hu.qm\', \'mkspecs/common/winrt_winphone/assets/logo_480x800.png\', \'include/qt/QtGui/QWidgetList\', \'include/qt/QtWidgets/QLabel\', \'include/qt/QtCore/qsharedpointer_impl.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlincubator_p.h\', \'include/qt/QtWebSockets/QtWebSockets\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglvertexarrayobject_p.h\', \'include/qt/QtGui/QtGui\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlguard_p.h\', \'qml/QtQuick/Controls/TableView.qml\', \'include/qt/QtQml/qqmlincubator.h\', \'include/qt/QtConcurrent/qtconcurrentthreadengine.h\', \'lib/libQt5CLucene.so\', \'include/qt/QtCore/QJsonValue\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexpressiondispatch_p.h\', \'qml/QtQuick/Controls/StatusBar.qml\', \'include/qt/QtXml/QDomEntityReference\', \'include/qt/QtCore/QFlags\', \'bin/qmlimportscanner\', \'mkspecs/modules/qt_lib_script_private.pri\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4regexpobject_p.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qclucene_global_p.h\', \'translations/qtserialport_en.qm\', \'lib/libQt5Concurrent.la\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmlirbuilder_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstackcontextbase_tpl_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdocumentconstructor_p.h\', \'include/qt/QtScript/qscriptclass.h\', \'lib/libQt5Xml.so.5.6\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimplicitsizeitem_p_p.h\', \'include/qt/QtBluetooth/QBluetoothServer\', \'plugins/designer/libqquickwidget.so\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qrecyclepool_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicksvgparser_p.h\', \'include/qt/QtWidgets/QListWidget\', \'include/qt/QtWidgets/QSplashScreen\', \'qml/QtQuick/Extras/designer/images/dial-icon16.png\', \'include/qt/QtQuick/qquickframebufferobject.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qstringiterator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quserfunction_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4managed_p.h\', \'include/qt/QtGui/qdrag.h\', \'include/qt/QtCore/qcollator.h\', \'include/qt/QtMultimedia/qmediatimerange.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/adapter_p.h\', \'include/qt/QtWidgets/QOpenGLWidget\', \'bin/qhelpgenerator\', \'include/qt/QtCore/QStaticPlugin\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickprofiler_p.h\', \'lib/cmake/Qt5WebSockets/Qt5WebSocketsConfig.cmake\', \'include/qt/QtConcurrent/qtconcurrentfilterkernel.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickrectangle_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qacceltreebuilder_tpl_p.h\', \'include/qt/QtCore/qgenericatomic.h\', \'include/qt/QtWidgets/qstyleplugin.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmarkmeasurement_p.h\', \'include/qt/QtQml/qqmlfileselector.h\', \'qml/QtNfc/plugins.qmltypes\', \'include/qt/QtCore/QBBSystemLocaleData\', \'mkspecs/devices/linux-tegra2-g++/qplatformdefs.h\', \'include/qt/QtNetwork/qtcpserver.h\', \'include/qt/QtScript/QScriptClassPropertyIterator\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcastingplatform_p.h\', \'translations/qt_help_de.qm\', \'lib/libQt5Test.so.5.6\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintengine_p.h\', \'mkspecs/modules/qt_lib_qml.pri\', \'include/qt/QtPrintSupport/QPrintPreviewDialog\', \'include/qt/QtXml/QDomProcessingInstruction\', \'include/qt/QtXmlPatterns/qxmlschema.h\', \'include/qt/QtMultimedia/qcamerainfo.h\', \'mkspecs/modules/qt_lib_openglextensions.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qargumentreference_p.h\', \'mkspecs/unsupported/nacl-g++/qmake.conf\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/localdevicebroadcastreceiver_p.h\', \'include/qt/QtCore/qcompilerdetection.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdeduplicateiterator_p.h\', \'include/qt/QtWebKitWidgets/qwebview.h\', \'include/qt/QtDesigner/QDesignerDnDItemInterface\', \'include/qt/QtWidgets/qstatusbar.h\', \'include/qt/QtWebKitWidgets/qwebpage.h\', \'include/qt/QtGui/QOpenGLVertexArrayObject\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusabstractadaptor_p.h\', \'include/qt/QtNfc/QtNfcVersion\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebugoutputwidget_p.h\', \'mkspecs/unixware-cc/qmake.conf\', \'include/qt/QtMultimedia/QAudioDecoder\', \'include/qt/QtCore/QChildEvent\', \'mkspecs/features/unix/openvg.prf\', \'lib/libQt5Widgets.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qaccessiblewidgets_p.h\', \'translations/qtquick1_ko.qm\', \'include/qt/QtCore/qiterator.h\', \'lib/pkgconfig/Qt5WebKitWidgets.pc\', \'include/qt/QtGui/QStatusTipEvent\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptobject_p.h\', \'mkspecs/modules/qt_lib_qmltest_private.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qacceltree_p.h\', \'doc/global/template/images/blu_dot.png\', \'include/qt/QtTest/qtestaccessible.h\', \'lib/cmake/Qt5Core/Qt5CoreMacros.cmake\', \'include/qt/QtCore/qlockfile.h\', \'include/qt/QtCore/QTimeZone\', \'include/qt/QtMultimedia/qmediacontrol.h\', \'lib/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfigVersion.cmake\', \'include/qt/QtNetwork/qnetworkcookie.h\', \'qml/QtQuick.2/libqtquick2plugin.so\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqlnulldriver_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qgenericunixthemes_p.h\', \'include/qt/QtCore/QGenericArgument\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpsocket_p_p.h\', \'translations/qtxmlpatterns_en.qm\', \'lib/pkgconfig/Qt5OpenGL.pc\', \'include/qt/QtQuick/QQuickImageProvider\', \'include/qt/QtHelp/qhelpindexwidget.h\', \'include/qt/QtGui/qcursor.h\', \'include/qt/QtMultimedia/QAudio\', \'include/qt/QtCore/qvector.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpositioners_p_p.h\', \'doc/global/template/images/arrow.png\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4script_p.h\', \'include/qt/QtNfc/qnearfieldmanager.h\', \'include/qt/QtDesigner/extension_global.h\', \'include/qt/QtCore/QWeakPointer\', \'include/qt/QtX11Extras/QtX11ExtrasVersion\', \'include/qt/QtGui/5.6.2/QtGui/private/qtexttable_p.h\', \'include/qt/QtSql/QSqlDriverPlugin\', \'include/qt/QtDesigner/QDesignerActionEditorInterface\', \'mkspecs/win32-msvc2013/qplatformdefs.h\', \'include/qt/QtGui/qopenglfunctions_4_2_compatibility.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qliteralsequence_p.h\', \'include/qt/QtNetwork/qtcpsocket.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qjsvalue_p.h\', \'include/qt/QtGui/qiconengineplugin.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_objectinspector_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexpressionfactory_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpath_p_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qdebug_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickscreen_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4profiling_p.h\', \'doc/global/template/style/online.css\', \'include/qt/QtQml/5.6.2/QtQml/private/qintrusivelist_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocket_p.h\', \'include/qt/QtCore/Q_PID\', \'mkspecs/features/exceptions.prf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerstackmodel_p.h\', \'include/qt/QtXml/qxml.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractnodetest_p.h\', \'lib/libQt5Sql.prl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsubsequenceiterator_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/shared_settings_p.h\', \'include/qt/QtNetwork/QNetworkSession\', \'include/qt/QtQuick/QQuickTextDocument\', \'include/qt/QtTest/QTestMouseEvent\', \'translations/assistant_zh_TW.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsastfwd_p.h\', \'include/qt/QtMultimedia/qmedianetworkaccesscontrol.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimatedimage_p_p.h\', \'include/qt/QtCore/QDynamicPropertyChangeEvent\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccesscache_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4context_p.h\', \'lib/libQt5XcbQpa.prl\', \'include/qt/QtWidgets/qtoolbutton.h\', \'lib/cmake/Qt5LinguistTools/Qt5LinguistToolsMacros.cmake\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpthreaddelegate_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qvideosurfacegstsink_p.h\', \'include/qt/QtGui/QTextItem\', \'include/qt/QtNetwork/qsslcertificateextension.h\', \'translations/qt_help_pl.qm\', \'include/qt/QtMultimedia/QMediaStreamsControl\', \'include/qt/QtCore/5.6.2/QtCore/private/qiodevice_p.h\', \'include/qt/QtGui/qopenglpixeltransferoptions.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qtquickparticlesglobal_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextcontrol_p_p.h\', \'mkspecs/macx-g++-32/Info.plist.dSYM.in\', \'include/qt/QtQml/qqmlprivate.h\', \'qml/Qt/labs/settings/libqmlsettingsplugin.so\', \'include/qt/QtMultimedia/QMediaGaplessPlaybackControl\', \'translations/linguist_fr.qm\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-left@2x.png\', \'include/qt/QtNetwork/QSslError\', \'qml/QtQuick/Extras/designer/GaugeSpecifics.qml\', \'include/qt/QtCore/QSequentialIterable\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscripterrorlogwidget_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomicmathematicianlocator_p.h\', \'qml/QtQuick/Controls/Private/TextInputWithHandles.qml\', \'include/qt/QtCore/QLineF\', \'include/qt/QtQml/QQmlScriptString\', \'include/qt/QtMultimedia/QMediaObject\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qflickgesture_p.h\', \'include/qt/QtQml/QQmlProperties\', \'include/qt/QtTest/5.6.2/QtTest/private/qcsvbenchmarklogger_p.h\', \'include/qt/QtCore/QString\', \'include/qt/QtCore/QIdentityProxyModel\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4engine_p.h\', \'include/qt/QtQml/qqmlexpression.h\', \'include/qt/QtBluetooth/QLowEnergyHandle\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qprimitives_p.h\', \'include/qt/QtNetwork/QNetworkProxyFactory\', \'lib/cmake/Qt5Gui/Qt5Gui_QIbusPlatformInputContextPlugin.cmake\', \'lib/libQt5OpenGLExtensions.a\', \'lib/libQt5QuickParticles.so\', \'mkspecs/linux-llvm/qplatformdefs.h\', \'include/qt/QtCore/qsharedpointer.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbuiltinatomictypes_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxslt20corefunctions_p.h\', \'qml/QtQuick/Extras/designer/images/circulargauge-icon16.png\', \'include/qt/QtQuick/QQuickPaintedItem\', \'qml/QtQuick/PrivateWidgets/plugins.qmltypes\', \'include/qt/QtNetwork/QSslKey\', \'translations/qtquick1_ja.qm\', \'include/qt/QtMultimedia/qcameraflashcontrol.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4errorobject_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_widget_p.h\', \'include/qt/QtPlatformHeaders/qwindowswindowfunctions.h\', \'include/qt/QtWidgets/QStyleOptionTab\', \'include/qt/QtXmlPatterns/QXmlSchema\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformthemefactory_p.h\', \'include/qt/QtScript/qscriptvalue.h\', \'include/qt/QtMultimedia/qtmultimediaversion.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qreturnorderby_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qemptysequence_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtablewidget_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4property_p.h\', \'include/qt/QtCore/QByteArrayMatcher\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparisonfactory_p.h\', \'lib/libQt5QuickParticles.prl\', \'qml/QtQml/StateMachine/qmldir\', \'include/qt/QtQml/QQmlImageProviderBase\', \'mkspecs/macx-ios-clang/qmake.conf\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebnavigationrequest_p.h\', \'include/qt/QtCore/qfunctions_wince.h\', \'include/qt/QtXml/QtXml\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltypewrapper_p.h\', \'mkspecs/common/gcc-base-mac.conf\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_formwindowmanager_p.h\', \'mkspecs/macx-g++42/qmake.conf\', \'include/qt/QtMultimedia/QAbstractAudioOutput\', \'include/qt/QtBluetooth/QBluetoothDeviceInfo\', \'include/qt/QtGui/QOpenGLFunctions_4_1_Core\', \'mkspecs/features/mac/unsupported/objc_namespace.prf\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_db2_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbustrayicon_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschemacomponent_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qdeletewatcher_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4globalobject_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qindexofiterator_p.h\', \'include/qt/QtWidgets/QSwipeGesture\', \'mkspecs/modules/qt_lib_uitools.pri\', \'mkspecs/android-g++/qplatformdefs.h\', \'include/qt/QtCore/QUrl\', \'translations/qtbase_fr.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdvalidatedxmlnodemodel_p.h\', \'include/qt/QtCore/QPersistentModelIndex\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnodefns_p.h\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvggraphics_p.h\', \'include/qt/QtSql/QSqlIndex\', \'include/qt/QtCore/qdatetime.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/bridge_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/editbox.png\', \'include/qt/QtMultimedia/QAbstractVideoBuffer\', \'qml/QtQuick/Controls/Styles/Base/SwitchStyle.qml\', \'include/qt/QtQml/QJSValueList\', \'include/qt/QtMultimedia/qmediaservice.h\', \'plugins/imageformats/libqsvg.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglcontext_p.h\', \'phrasebooks/german.qph\', \'include/qt/QtCore/qversiontagging.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptscriptdata_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_widgetbox_p.h\', \'include/qt/QtCore/QFinalState\', \'include/qt/QtTest/QTestEvent\', \'include/qt/QtXmlPatterns/QSourceLocation\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslpresharedkeyauthenticator_p.h\', \'include/qt/QtMultimedia/QMediaResourceList\', \'include/qt/QtCore/QSharedMemory\', \'include/qt/QtDesigner/qdesigner_components_global.h\', \'mkspecs/features/qpa/genericunixfontdatabase.prf\', \'include/qt/QtMultimedia/QCameraViewfinderSettingsControl2\', \'include/qt/QtGui/QHelpEvent\', \'qml/QtQuick/Controls/Styles/Base/images/knob.png\', \'mkspecs/irix-g++/qmake.conf\', \'include/qt/QtCore/qtextstream.h\', \'include/qt/QtWidgets/QGraphicsSceneMouseEvent\', \'doc/global/template/images/bg_r.png\', \'include/qt/QtWidgets/qgraphicstransform.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommandexecutor_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/shared_global_p.h\', \'lib/pkgconfig/Qt5OpenGLExtensions.pc\', \'include/qt/QtWidgets/qlistwidget.h\', \'lib/libQt5QuickTest.so.5\', \'mkspecs/winrt-x86-msvc2013/qmake.conf\', \'include/qt/QtQuickParticles/qtquickparticlesversion.h\', \'doc/global/template/images/Qt-logo.png\', \'translations/linguist_ko.qm\', \'include/qt/QtNetwork/QNetworkProxy\', \'doc/global/template/images/bullet_sq.png\', \'include/qt/QtTest/5.6.2/QtTest/private/qsignaldumper_p.h\', \'include/qt/QtQuickTest/qtquicktestversion.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4dataview_p.h\', \'lib/libQt5PlatformSupport.prl\', \'mkspecs/features/qt_docs.prf\', \'lib/libQt5Bootstrap.la\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmarkmetric_p.h\', \'lib/libQt5XcbQpa.so.5.6\', \'include/qt/QtCore/5.6.2/QtCore/private/qfinalstate_p.h\', \'mkspecs/unsupported/vxworks-ppc-g++/qplatformdefs.h\', \'include/qt/QtGui/qscreen.h\', \'include/qt/QtGui/qvector3d.h\', \'include/qt/QtCore/qstatemachine.h\', \'lib/libQt5Svg.la\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebhistory_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qhighdpiscaling_p.h\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusmetaobject_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcleanup_p.h\', \'include/qt/QtWidgets/qsizegrip.h\', \'doc/global/template/images/bullet_dn.png\', \'lib/pkgconfig/Qt5QuickTest.pc\', \'include/qt/QtWebSockets/QWebSocketServer\', \'include/qt/QtPrintSupport/QPageSetupDialog\', \'mkspecs/cygwin-g++/qplatformdefs.h\', \'include/qt/QtWidgets/QtWidgets\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpdatainterface_p.h\', \'mkspecs/modules/qt_lib_webkit_private.pri\', \'include/qt/QtGui/QOpenGLFunctions_2_0\', \'include/qt/QtGui/QOpenGLFunctions_2_1\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/service_p.h\', \'lib/libQt5Concurrent.so.5.6\', \'mkspecs/modules/qt_lib_xmlpatterns.pri\', \'bin/qmleasing\', \'qml/QtTest/libqmltestplugin.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qbasicmouseeventtransition_p.h\', \'include/qt/QtDBus/qtdbusversion.h\', \'include/qt/QtGui/QClipboard\', \'mkspecs/features/static_runtime.prf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdistancefieldglyphnode_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemadebugger_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvariabledeclaration_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qacceltreeresourceloader_p.h\', \'include/qt/QtTest/qtestmouse.h\', \'include/qt/QtCore/QCollatorSortKey\', \'include/qt/QtQuick/qquickitemgrabresult.h\', \'include/qt/QtGui/QOpenGLContextGroup\', \'include/qt/QtCore/qobject.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/signalslotdialog_p.h\', \'mkspecs/modules/qt_lib_websockets_private.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlschema_p.h\', \'mkspecs/features/winrt/default_pre.prf\', \'include/qt/QtMultimedia/qvideodeviceselectorcontrol.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qaccessiblebridgeutils_p.h\', \'include/qt/QtScript/QScriptExtensionInterface\', \'lib/cmake/Qt5WebChannel/Qt5WebChannelConfig.cmake\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommand_p.h\', \'include/qt/QtWidgets/qmainwindow.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/promotiontaskmenu_p.h\', \'include/qt/QtPrintSupport/QPrinterInfo\', \'include/qt/QtWidgets/QStyleOptionViewItem\', \'include/qt/QtWidgets/qstyleoption.h\', \'include/qt/QtWidgets/qgraphicsscene.h\', \'doc/global/template/images/arrow_bc.png\', \'mkspecs/features/qt_functions.prf\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglcustomshaderstage_p.h\', \'include/qt/QtDBus/QDBusMessage\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qgl2pexvertexarray_p.h\', \'include/qt/QtCore/QThreadStorageData\', \'plugins/bearer/libqnmbearer.so\', \'include/qt/QtCore/QHashDummyValue\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemviewtransition_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmladaptormodel_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qdockarealayout_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcommonnamespaces_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlextensionplugin_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qstatictext_p.h\', \'translations/linguist_pl.qm\', \'mkspecs/devices/linux-odroid-xu3-g++/qplatformdefs.h\', \'lib/libQt5Quick.so.5.6\', \'include/qt/QtTest/QTestKeyClicksEvent\', \'include/qt/QtWidgets/QVBoxLayout\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktext_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qdatetimeparser_p.h\', \'lib/pkgconfig/Qt5QuickWidgets.pc\', \'include/qt/QtGui/qopenglfunctions.h\', \'lib/libQt5CLucene.so.5\', \'include/qt/QtGui/QPictureFormatPlugin\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothdevicediscoverytimer_osx_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlmodelsmodule_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschematoken_p.h\', \'lib/libQt5QuickTest.la\', \'mkspecs/devices/linux-rpi3-g++/qplatformdefs.h\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerPlayerServicePlugin.cmake\', \'include/qt/QtGui/QOpenGLFunctions_4_0_Compatibility\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicslayout_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qabstractnetworkcache_p.h\', \'include/qt/QtGui/QExposeEvent\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickborderimage_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcustomparser_p.h\', \'include/qt/QtMultimedia/QCameraInfo\', \'lib/libQt5PrintSupport.so\', \'include/qt/QtTest/QTestKeyEvent\', \'include/qt/QtMultimedia/QMediaServiceProviderFactoryInterface\', \'lib/cmake/Qt5Qml/Qt5Qml_QQmlProfilerServiceFactory.cmake\', \'mkspecs/features/warn_off.prf\', \'include/qt/QtWidgets/QProxyStyle\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcurrentitemstore_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsscenelinearindex_p.h\', \'lib/cmake/Qt5Xml/Qt5XmlConfig.cmake\', \'mkspecs/solaris-cc/qmake.conf\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtchanneldelegate_p.h\', \'include/qt/QtWidgets/QWidgetData\', \'mkspecs/features/qt_build_extra.prf\', \'qml/QtQuick/Controls/Styles/qmldir\', \'include/qt/QtXml/QXmlInputSource\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_inotify_p.h\', \'include/qt/QtNetwork/qnetworkaccessmanager.h\', \'lib/libQt5DBus.so.5\', \'lib/libQt5QuickTest.prl\', \'include/qt/QtMultimedia/QCameraFocus\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickshortcut_p.h\', \'translations/qtscript_he.qm\', \'include/qt/QtGui/QPictureIO\', \'include/qt/QtCore/QPair\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdstatemachinebuilder_p.h\', \'include/qt/QtXml/QXmlErrorHandler\', \'include/qt/QtCore/qdir.h\', \'include/qt/QtGui/qopenglcontext.h\', \'plugins/iconengines/libqsvgicon.so\', \'mkspecs/modules/qt_lib_designer_private.pri\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusmessage_p.h\', \'include/qt/QtCore/qitemselectionmodel.h\', \'include/qt/QtSql/qsqldatabase.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextimagehandler_p.h\', \'include/qt/QtWidgets/qaccessiblewidget.h\', \'qml/QtGraphicalEffects/private/GaussianInnerShadow.qml\', \'translations/assistant_pl.qm\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlfileselector_p.h\', \'include/qt/QtCore/QMutableVectorIterator\', \'mkspecs/qnx-x86-qcc/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemachecker_p.h\', \'include/qt/QtWebChannel/5.6.2/QtWebChannel/private/signalhandler_p.h\', \'include/qt/QtOpenGL/QGLShaderProgram\', \'include/qt/QtGui/QDropEvent\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebdownloaditem_p_p.h\', \'include/qt/QtWidgets/qgesturerecognizer.h\', \'lib/libQt5Designer.la\', \'include/qt/QtDesigner/QDesignerIntegration\', \'lib/pkgconfig/Qt5Multimedia.pc\', \'mkspecs/features/device_config.prf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptenginedebuggerfrontend_p.h\', \'include/qt/QtQml/qqmlfile.h\', \'include/qt/QtWidgets/qscrollbar.h\', \'include/qt/QtWidgets/QTreeWidget\', \'mkspecs/unsupported/vxworks-simpentium-dcc/qmake.conf\', \'mkspecs/common/winrt_winphone/assets/logo_310x310.png\', \'phrasebooks/russian.qph\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qvideoframe_p.h\', \'libexec/QtWebProcess\', \'include/qt/QtDesigner/abstractpropertyeditor.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquickurlschemedelegate_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qcoreglobaldata_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickloader_p.h\', \'include/qt/QtScript/QScriptEngine\', \'include/qt/QtCore/5.6.2/QtCore/private/qtimerinfo_unix_p.h\', \'doc/global/qt-module-defaults.qdocconf\', \'include/qt/QtPlatformHeaders/QXcbScreenFunctions\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmldebug_p.h\', \'include/qt/QtGui/qpaintdevicewindow.h\', \'include/qt/QtDesigner/QDesignerFormWindowManagerInterface\', \'translations/qtmultimedia_ru.qm\', \'phrasebooks/danish.qph\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcompressedwhitespace_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljskeywords_p.h\', \'include/qt/QtGui/QTouchDevice\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsstyle_p_p.h\', \'mkspecs/features/vxworks.prf\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkrequest_p.h\', \'include/qt/QtWidgets/qcolordialog.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintdevicewindow_p.h\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpdbreader_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qlibinputkeyboard_p.h\', \'mkspecs/common/g++-macx.conf\', \'include/qt/QtTest/QTest\', \'include/qt/QtNfc/qnearfieldtarget.h\', \'include/qt/QtGui/QRegion\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglcustomshaderstage_p.h\', \'include/qt/QtWebChannel/5.6.2/QtWebChannel/private/qqmlwebchannelattached_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-up@2x.png\', \'lib/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfigVersion.cmake\', \'include/qt/QtWidgets/qcolumnview.h\', \'include/qt/QtCore/QDataStream\', \'include/qt/QtWidgets/QCompleter\', \'mkspecs/modules/qt_lib_quick_private.pri\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevtouchhandler_p.h\', \'lib/libQt5QuickParticles.la\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_utils_p.h\', \'include/qt/QtPlatformHeaders/qeglnativecontext.h\', \'mkspecs/features/qt_module_headers.prf\', \'include/qt/QtGui/qcolor.h\', \'include/qt/QtGui/QPolygonF\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfbvthandler_p.h\', \'include/qt/QtWidgets/qdrawutil.h\', \'include/qt/QtGui/QKeySequence\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloatcasters_tpl_p.h\', \'lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfigVersion.cmake\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qtoken_p.h\', \'qml/QtQuick/Controls/MenuBar.qml\', \'qml/QtGraphicalEffects/ConicalGradient.qml\', \'doc/global/template/images/Qt-dark_gradient.png\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qindexreader_p.h\', \'include/qt/QtPrintSupport/qprinterinfo.h\', \'include/qt/QtWebKitWidgets/QtWebKitWidgetsDepends\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtsocketlistener_p.h\', \'lib/libQt5XmlPatterns.so.5.6.2\', \'mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri\', \'include/qt/QtCore/5.6.2/QtCore/private/qdir_p.h\', \'include/qt/QtTest/QtTest\', \'mkspecs/haiku-g++/qmake.conf\', \'include/qt/QtWebChannel/QQmlWebChannel\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsscenebsptreeindex_p.h\', \'mkspecs/features/designer_defines.prf\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qcamera_p.h\', \'include/qt/QtGui/QAccessibleBridge\', \'qml/QtQuick/Controls/Styles/Base/ToolButtonStyle.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qpointervaluepair_p.h\', \'include/qt/QtCore/qlinkedlist.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qbytearray_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qitemselectionmodel_p.h\', \'include/qt/QtNetwork/qnetworkrequest.h\', \'translations/qtwebsockets_en.qm\', \'qml/QtQuick/Controls/Styles/Base/CircularTickmarkLabelStyle.qml\', \'lib/libQt5WebKitWidgets.so.5\', \'qml/Qt/labs/folderlistmodel/plugins.qmltypes\', \'mkspecs/devices/linux-nuc-g++/qmake.conf\', \'include/qt/QtCore/qglobal.h\', \'lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfigVersion.cmake\', \'include/qt/QtCore/qpoint.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qsystemtrayicon_p.h\', \'bin/qmllint\', \'include/qt/QtCore/QSize\', \'include/qt/QtMultimediaWidgets/5.6.2/QtMultimediaWidgets/private/qvideowidget_p.h\', \'include/qt/QtMultimedia/qmediarecordercontrol.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4numberobject_p.h\', \'include/qt/QtCore/qflags.h\', \'translations/qt_ca.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstbufferpoolinterface_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qwindowscodec_p.h\', \'mkspecs/qfeatures.pri\', \'include/qt/QtScript/QScriptContextInfoList\', \'mkspecs/qnx-x86-qcc/qmake.conf\', \'lib/libQt5Concurrent.prl\', \'mkspecs/devices/linux-snowball-g++/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdocumentfn_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_polling_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparisonplatform_p.h\', \'include/qt/QtCore/QInternal\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestblacklist_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/spinner_large.png\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbusplatformmenu_p.h\', \'include/qt/QtOpenGL/qtopenglglobal.h\', \'bin/qml\', \'include/qt/QtNfc/5.6.2/QtNfc/private/neard_helper_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktransition_p.h\', \'include/qt/QtCore/qabstracteventdispatcher.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlvme_p.h\', \'include/qt/QtQuick/QtQuickDepends\', \'include/qt/QtMultimedia/qradiotuner.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qreader_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgadaptationlayer_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengltextureglyphcache_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsingletoniterator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstringvaluefns_p.h\', \'include/qt/QtDesigner/QDesignerMetaDataBaseInterface\', \'lib/libQt5XmlPatterns.prl\', \'include/qt/QtGui/QCloseEvent\', \'include/qt/QtMultimediaWidgets/qvideowidget.h\', \'mkspecs/linux-g++/qplatformdefs.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qsimpleresource_p.h\', \'mkspecs/common/posix/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtimezonefns_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtemplatemode_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4typedarray_p.h\', \'include/qt/QtCore/qfiledevice.h\', \'include/qt/QtGui/QAccessibleTableModelChangeEvent\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstracteventdispatcher_p.h\', \'include/qt/QtNfc/QQmlNdefRecord\', \'include/qt/QtQml/qqmlcontext.h\', \'mkspecs/tru64-cxx/qplatformdefs.h\', \'mkspecs/macx-g++42/Info.plist.lib\', \'mkspecs/netbsd-g++/qmake.conf\', \'include/qt/QtWidgets/qundogroup.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptactivationobject_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmachparser_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlayout_p.h\', \'include/qt/QtCore/QtEndian\', \'include/qt/QtCore/5.6.2/QtCore/private/qpropertyanimation_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmlrefcount_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengltextureblitter_p.h\', \'translations/qtmultimedia_hu.qm\', \'include/qt/QtMultimedia/qmediaresource.h\', \'lib/libQt5QuickParticles.so.5.6.2\', \'include/qt/QtPrintSupport/qprintengine.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebpreferences_p.h\', \'include/qt/QtMultimedia/QMediaContainerControl\', \'include/qt/QtMultimedia/QAudioDecoderControl\', \'include/qt/QtCore/QMutableHashIterator\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstracttransition_p.h\', \'include/qt/QtBluetooth/qlowenergycharacteristic.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qemptysequencetype_p.h\', \'include/qt/QtQml/QQmlTypesExtensionInterface\', \'include/qt/QtWidgets/QWidgetItemV2\', \'include/qt/QtWidgets/QStyleOptionGroupBox\', \'include/qt/QtCore/qpair.h\', \'include/qt/QtPlatformHeaders/QXcbWindowFunctions\', \'mkspecs/common/qcc-base-qnx.conf\', \'lib/libQt5Help.so.5\', \'lib/libQt5Quick.prl\', \'doc/global/template/images/horBar.png\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qpagesetupdialog_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticbaseuristore_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimemagicrule_p.h\', \'include/qt/QtGui/QWidgetMapper\', \'include/qt/QtCore/QIODevice\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultpainternode_p.h\', \'include/qt/QtGui/QBrush\', \'include/qt/QtMultimedia/QCameraExposureControl\', \'include/qt/QtGui/QIconEngineV2\', \'include/qt/QtScript/qscriptclasspropertyiterator.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkconfigmanager_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothservicediscoveryagent_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qparallelanimationgroupjob_p.h\', \'include/qt/QtCore/QDebugStateSaver\', \'include/qt/QtSvg/QGraphicsSvgItem\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusabstractinterface_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsystemlibrary_p.h\', \'include/qt/QtGui/QBackingStore\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractitemdelegate_p.h\', \'qml/QtGraphicalEffects/MaskedBlur.qml\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerlocalswidget_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgeneralcomparison_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qblittable_p.h\', \'mkspecs/hpux-g++-64/qmake.conf\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4identifiertable_p.h\', \'include/qt/QtQml/QtQml\', \'include/qt/QtWidgets/QButtonGroup\', \'include/qt/QtMultimedia/qcamerazoomcontrol.h\', \'include/qt/QtCore/QRegExp\', \'include/qt/QtCore/QBasicTimer\', \'include/qt/QtMultimedia/QMediaVideoProbeControl\', \'include/qt/QtCore/qjsondocument.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextnodeengine_p.h\', \'mkspecs/modules/qt_lib_concurrent_private.pri\', \'include/qt/QtGui/QWindowStateChangeEvent\', \'mkspecs/win32-msvc2005/qmake.conf\', \'include/qt/QtGui/5.6.2/QtGui/private/qtriangulator_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglpaintdevice_p.h\', \'lib/libQt5Bootstrap.prl\', \'doc/global/fileextensions.qdocconf\', \'include/qt/QtOpenGL/QGL\', \'include/qt/QtMultimedia/qaudioformat.h\', \'include/qt/QtDesigner/extension.h\', \'include/qt/QtCore/QEventTransition\', \'include/qt/QtNfc/QNearFieldShareTarget\', \'mkspecs/modules/qt_lib_network.pri\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcanvasitem_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsharednetworksession_p.h\', \'lib/cmake/Qt5/Qt5ConfigVersion.cmake\', \'include/qt/QtWidgets/qmouseeventtransition.h\', \'mkspecs/features/mac/default_pre.prf\', \'plugins/qmltooling/libqmldbg_local.so\', \'include/qt/QtTest/5.6.2/QtTest/private/qxctestlogger_p.h\', \'include/qt/QtQuick/QSGGeometryNode\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlxmlhttprequest_p.h\', \'include/qt/QtWidgets/qtoolbox.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctioncall_p.h\', \'include/qt/QtCore/QContiguousCacheData\', \'translations/qtdeclarative_ko.qm\', \'include/qt/QtGui/QPixelFormat\', \'include/qt/QtGui/QAccessibleTextInsertEvent\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4profiling_p.h\', \'include/qt/QtWidgets/qplaintextedit.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qwindow_p.h\', \'include/qt/QtGui/qtexttable.h\', \'include/qt/QtCore/qthreadpool.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qsplitter_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qunicodetools_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpixmapcache_p.h\', \'lib/cmake/Qt5X11Extras/Qt5X11ExtrasConfigVersion.cmake\', \'translations/qmlviewer_sk.qm\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsanchorlayout_p.h\', \'include/qt/QtGui/QOpenGLTimerQuery\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestxunitstreamer_p.h\', \'include/qt/QtMultimedia/QtMultimedia\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintengineex_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/ProgressBarStyle.qml\', \'include/qt/QtGui/5.6.2/QtGui/private/qaccessiblecache_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidget_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamermirtexturerenderer_p.h\', \'include/qt/QtCore/QtContainerFwd\', \'include/qt/QtSql/qsqlresult.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerwidgetfactoryinterface_p.h\', \'translations/qtquick1_it.qm\', \'include/qt/QtCore/qlogging.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggervalue_p.h\', \'doc/global/template/style/gsc.css\', \'include/qt/QtGui/QAccessibleTextInterface\', \'mkspecs/linux-icc-64/qmake.conf\', \'translations/qtserialport_de.qm\', \'include/qt/QtTest/qtest.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengltexturehelper_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qdeletewatcher_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qheaderview_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextinput_p_p.h\', \'include/qt/QtScript/qscriptprogram.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtreewidget_p.h\', \'doc/global/qt-module-defaults-offline.qdocconf\', \'include/qt/QtWebChannel/qtwebchannelversion.h\', \'include/qt/QtGui/qinputmethod.h\', \'include/qt/QtGui/QContextMenuEvent\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qwavedecoder_p.h\', \'include/qt/QtWidgets/qgraphicswidget.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickaccessibleattached_p.h\', \'include/qt/QtSvg/QtSvgDepends\', \'include/qt/QtCore/qcontiguouscache.h\', \'include/qt/QtWidgets/QStyleOptionMenuItem\', \'lib/libQt5Svg.so\', \'mkspecs/devices/common/linux_device_post.conf\', \'translations/designer_cs.qm\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtagtype1_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanager_android_p.h\', \'include/qt/QtWidgets/QGraphicsTextItem\', \'include/qt/QtNetwork/Q_IPV6ADDR\', \'include/qt/QtCore/qatomic_cxx11.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpositioners_p.h\', \'include/qt/QtMultimedia/qcamerainfocontrol.h\', \'include/qt/QtWidgets/QTextEdit\', \'lib/libQt5Designer.so.5.6\', \'include/qt/QtWebKitWidgets/QWebFrame\', \'include/qt/QtCore/QEnableSharedFromThis\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsscene_p.h\', \'include/qt/QtGui/qtextcursor.h\', \'qml/QtQuick/Extras/libqtquickextrasplugin.so\', \'qml/QtQuick/Dialogs/plugins.qmltypes\', \'mkspecs/devices/linux-rasp-pi2-g++/qplatformdefs.h\', \'include/qt/QtWidgets/qstyleditemdelegate.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextodfwriter_p.h\', \'include/qt/QtDesigner/QDesignerCustomWidgetCollectionInterface\', \'qml/QtQuick/Extras/designer/qtquickextras.metainfo\', \'include/qt/QtDBus/qdbusmetatype.h\', \'include/qt/QtWidgets/QStyleOptionDockWidgetV2\', \'include/qt/QtUiTools/5.6.2/QtUiTools/private/quiloader_p.h\', \'include/qt/QtCore/qreadwritelock.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/formwindowbase_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qfixed_p.h\', \'include/qt/QtWebChannel/QWebChannel\', \'include/qt/QtGui/5.6.2/QtGui/private/qevent_p.h\', \'include/qt/QtQml/qqml.h\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgfont_p.h\', \'include/qt/QtConcurrent/QtConcurrentRun\', \'mkspecs/devices/linux-rasp-pi-g++/qplatformdefs.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qhttpheader_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformaccessibility.h\', \'include/qt/QtGui/QOpenGLFunctionsPrivate\', \'include/qt/QtDesigner/QAbstractFormBuilder\', \'include/qt/QtCore/QScopedValueRollback\', \'lib/libQt5Widgets.so.5\', \'translations/qmlviewer_ja.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qjnihelpers_p.h\', \'include/qt/QtCore/qobjectdefs.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qdesktopwidget_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmdiarea_p.h\', \'include/qt/QtCore/qabstractanimation.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptcompletionproviderinterface_p.h\', \'qml/QtQml/Models.2/plugins.qmltypes\', \'include/qt/QtCore/QLockFile\', \'include/qt/QtCore/qfunctions_nacl.h\', \'doc/global/template/images/logo.png\', \'include/qt/QtCore/QList\', \'include/qt/QtWidgets/QStyleOptionTabV2\', \'include/qt/QtWidgets/QStyleOptionTabV3\', \'include/qt/QtMultimedia/qvideoencodersettingscontrol.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qmaintainingreader_tpl_p.h\', \'include/qt/QtWidgets/QUndoGroup\', \'include/qt/QtGui/QActionEvent\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qinsertioniterator_p.h\', \'include/qt/QtCore/qhash.h\', \'mkspecs/macx-ios-clang/Info.plist.app\', \'include/qt/QtDesigner/abstractresourcebrowser.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qwindowsysteminterface_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qkeysequenceedit_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktimeline_p_p.h\', \'lib/cmake/Qt5/Qt5Config.cmake\', \'include/qt/QtTest/QtTestDepends\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlmemoryprofiler_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/dbusconnection_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwizard_win_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomputednamespaceconstructor_p.h\', \'mkspecs/macx-xcode/qplatformdefs.h\', \'mkspecs/linux-g++-64/qplatformdefs.h\', \'include/qt/QtScript/qscriptextensionplugin.h\', \'include/qt/QtDesigner/dynamicpropertysheet.h\', \'include/qt/QtCore/QByteArrayListIterator\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkreplyhttpimpl_p.h\', \'include/qt/QtXml/QDomElement\', \'lib/libQt5Help.la\', \'lib/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfigVersion.cmake\', \'include/qt/QtWidgets/qfontcombobox.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qandroidstyle_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickflickablebehavior_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qfontengine_p.h\', \'include/qt/QtMultimedia/qmediaenumdebug.h\', \'include/qt/QtGui/qoffscreensurface.h\', \'include/qt/QtGui/qquaternion.h\', \'include/qt/QtCore/qmutex.h\', \'qml/QtQuick/Controls/Styles/Base/TableViewStyle.qml\', \'qml/QtQuick/Controls/TableViewColumn.qml\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimagebase_p_p.h\', \'translations/assistant_uk.qm\', \'plugins/imageformats/libqico.so\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qpaintengineex_opengl2_p.h\', \'include/qt/QtWidgets/QGraphicsEllipseItem\', \'include/qt/QtGui/QImage\', \'include/qt/QtCore/qobjectcleanuphandler.h\', \'translations/qt_ar.qm\', \'doc/global/qt-html-templates-offline-simple.qdocconf\', \'translations/qtconfig_sl.qm\', \'include/qt/QtGui/QRegExpValidator\', \'mkspecs/modules/qt_lib_designer.pri\', \'mkspecs/hpux-acc/qmake.conf\', \'include/qt/QtMultimedia/QVideoSurfaceFormat\', \'include/qt/QtMultimedia/QVideoEncoderSettingsControl\', \'include/qt/QtPlatformHeaders/qeglfsfunctions.h\', \'translations/qt_help_sl.qm\', \'include/qt/QtQuick/QSGSimpleMaterial\', \'lib/libQt5Network.prl\', \'include/qt/QtSql/QSqlTableModel\', \'include/qt/QtSql/QSqlRelationalTableModel\', \'include/qt/QtNetwork/QSslCipher\', \'include/qt/QtCore/5.6.2/QtCore/private/qhooks_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicksmoothedanimation_p_p.h\', \'mkspecs/modules/qt_lib_multimediawidgets_private.pri\', \'doc/global/externalsites/external-resources.qdoc\', \'include/qt/QtCore/5.6.2/QtCore/private/qmetaobjectbuilder_p.h\', \'include/qt/QtQuick/QQuickTransform\', \'qml/QtQuick/Controls/StackViewTransition.qml\', \'mkspecs/common/android-base-tail.conf\', \'qml/QtQuick/Controls/Private/ScrollViewHelper.qml\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4compiler_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfbcursor_p.h\', \'include/qt/QtGui/QAccessibleTableInterface\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatforminputcontext.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparingaggregator_tpl_p.h\', \'mkspecs/modules/qt_lib_help.pri\', \'include/qt/QtCore/qstringbuilder.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformsystemtrayicon.h\', \'mkspecs/features/unix/hide_symbols.prf\', \'lib/libQt5Bluetooth.prl\', \'translations/qt_help_uk.qm\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qpagesetupdialog_unix_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qconstructorfunctionsfactory_p.h\', \'include/qt/QtCore/qarraydatapointer.h\', \'qml/QtQuick/XmlListModel/plugins.qmltypes\', \'include/qt/QtGui/QPainterPath\', \'include/qt/QtGui/QPaintDeviceWindow\', \'include/qt/QtScript/qscriptcontextinfo.h\', \'include/qt/QtMultimedia/qcameraimagecapturecontrol.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgabstractrenderer_p.h\', \'include/qt/QtGui/QOpenGLVersionFunctions\', \'include/qt/QtWidgets/qopenglwidget.h\', \'include/qt/QtGui/QPaintDevice\', \'translations/qt_hu.qm\', \'lib/pkgconfig/Qt5Core.pc\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschematypesfactory_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qutfcodec_p.h\', \'include/qt/QtWebKit/qwebsettings.h\', \'include/qt/QtNfc/qndefnfcsmartposterrecord.h\', \'lib/cmake/Qt5Qml/Qt5Qml_QQmlDebugServerFactory.cmake\', \'mkspecs/common/macx.conf\', \'include/qt/QtWidgets/QStandardItemEditorCreator\', \'include/qt/QtDesigner/extrainfo.h\', \'lib/libqgsttools_p.prl\', \'include/qt/QtUiTools/QtUiToolsDepends\', \'mkspecs/hpux-acc-o64/qplatformdefs.h\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_QAlsaPlugin.cmake\', \'include/qt/QtCore/QTemporaryFile\', \'include/qt/QtDesigner/QDesignerFormWindowToolInterface\', \'include/qt/QtGui/QRegularExpressionValidator\', \'include/qt/QtWidgets/QGestureRecognizer\', \'include/qt/QtCore/QByteArrayData\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qacceltreebuilder_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerstackwidgetinterface_p_p.h\', \'lib/pkgconfig/Qt5Designer.pc\', \'include/qt/QtXml/5.6.2/QtXml/private/qxml_p.h\', \'mkspecs/openbsd-g++/qmake.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlscriptstring_p.h\', \'include/qt/QtDesigner/abstractformwindowtool.h\', \'mkspecs/features/create_cmake.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qanytype_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimplicitsizeitem_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qorderedmutexlocker_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraph_p.h\', \'doc/global/html-footer.qdocconf\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanagervirtualbase_p.h\', \'lib/cmake/Qt5DBus/Qt5DBusConfigExtras.cmake\', \'include/qt/QtWidgets/QDirModel\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlstringconverters_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qfontengine_ft_p.h\', \'doc/global/externalsites.qdocconf\', \'include/qt/QtWidgets/qwidgetaction.h\', \'include/qt/QtCore/qanimationgroup.h\', \'qml/QtQuick/Controls/Styles/Base/images/tab_selected.png\', \'lib/libQt5Script.so\', \'mkspecs/modules/qt_lib_multimedia.pri\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticleaffector_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsequencetype_p.h\', \'include/qt/QtGui/QQuaternion\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4isel_util_p.h\', \'include/qt/QtConcurrent/qtconcurrentversion.h\', \'include/qt/QtCore/qatomic_armv7.h\', \'include/qt/QtCore/qxmlstream.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlbind_p.h\', \'translations/qtquick1_fi.qm\', \'lib/cmake/Qt5Multimedia/Qt5MultimediaConfigVersion.cmake\', \'include/qt/QtCore/QtMsgHandler\', \'include/qt/QtWidgets/QStyleHintReturn\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4util_p.h\', \'include/qt/QtMultimedia/QMediaRecorderControl\', \'include/qt/QtQml/qqmlabstracturlinterceptor.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qelementconstructor_p.h\', \'mkspecs/macx-clang-32/Info.plist.dSYM.in\', \'lib/libQt5Svg.so.5.6\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerscriptsmodel_p.h\', \'mkspecs/features/spec_post.prf\', \'include/qt/QtGui/QTextList\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbuscontext_p.h\', \'include/qt/QtCore/QSignalMapper\', \'mkspecs/common/android/qplatformdefs.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothserviceinfo_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qlibinputhandler_p.h\', \'mkspecs/hurd-g++/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcppcastinghelper_p.h\', \'include/qt/QtDesigner/default_extensionfactory.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qrangevariablereference_p.h\', \'lib/libQt5Network.so.5\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgesturemanager_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcommonstyle_p.h\', \'lib/libQt5QuickWidgets.so.5\', \'include/qt/QtDesigner/QDesignerComponents\', \'translations/designer_ru.qm\', \'mkspecs/features/unix/x11inc.prf\', \'include/qt/QtConcurrent/QtConcurrentDepends\', \'qml/QtQuick/Controls/SplitView.qml\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgthreadedrenderloop_p.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprinterinfo_p.h\', \'mkspecs/devices/linux-tegra2-g++/qmake.conf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickscalegrid_p_p.h\', \'translations/qtquickcontrols_uk.qm\', \'include/qt/QtTest/qtestassert.h\', \'translations/qtscript_pl.qm\', \'qml/QtWebKit/experimental/qmldir\', \'mkspecs/features/qt_docs_targets.prf\', \'include/qt/QtCore/QDebug\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_manager_p.h\', \'translations/qtbase_uk.qm\', \'mkspecs/features/qt_build_paths.prf\', \'include/qt/QtDesigner/sdk_global.h\', \'include/qt/QtDesigner/abstractsettings.h\', \'include/qt/QtXml/QXmlAttributes\', \'include/qt/QtXml/QtXmlVersion\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenericpredicate_p.h\', \'include/qt/QtWebKitWidgets/QWebInspector\', \'include/qt/QtGui/qopenglfunctions_4_0_core.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/dbusobjectmanager_p.h\', \'include/qt/QtWidgets/QAbstractButton\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdynamiccontext_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdxpathexpression_p.h\', \'mkspecs/features/default_pre.prf\', \'include/qt/QtDesigner/QDesignerFormWindowInterface\', \'include/qt/QtWidgets/QGraphicsRotation\', \'include/qt/QtCore/qtextcodec.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdocumentcontentvalidator_p.h\', \'mkspecs/macx-llvm/Info.plist.app\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbuiltintypes_p.h\', \'include/qt/QtCore/qcommandlineoption.h\', \'include/qt/QtNetwork/qnetworkfunctions_wince.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickflickable_p.h\', \'doc/global/template/images/ico_note.png\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qprivatelinearbuffer_p.h\', \'qml/QtGraphicalEffects/FastBlur.qml\', \'plugins/qmltooling/libqmldbg_profiler.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qdrawhelper_neon_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qoperandsiterator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlquery_p.h\', \'include/qt/QtPlatformHeaders/qxcbintegrationfunctions.h\', \'include/qt/QtCore/QXmlStreamNotationDeclarations\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickmultipointtoucharea_p.h\', \'lib/libQt5DBus.so.5.6\', \'include/qt/QtWidgets/QMacNativeWidget\', \'mkspecs/features/win32/default_pre.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticnamespacescontainer_p.h\', \'translations/linguist_hu.qm\', \'include/qt/QtGui/QMouseEvent\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_blackberry_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_dockwidget_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qanynodetype_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformsharedgraphicscache.h\', \'mkspecs/macx-ios-clang/qplatformdefs.h\', \'include/qt/QtWebKit/QWebNotificationPresenter\', \'include/qt/QtSql/qsqltablemodel.h\', \'include/qt/QtCore/qfuture.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptcompletiontaskinterface_p.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqldriver_p.h\', \'include/qt/QtGui/QStandardItemModel\', \'include/qt/QtGui/qstylehints.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldelegatemodel_p_p.h\', \'lib/pkgconfig/Qt5Nfc.pc\', \'include/qt/QtMultimedia/QAudioInputSelectorControl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdistinctiterator_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimeglobpattern_p.h\', \'lib/libQt5CLucene.so.5.6.2\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicslayoutstyleinfo_p.h\', \'include/qt/QtX11Extras/QtX11ExtrasDepends\', \'translations/assistant_da.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qtmultimediaquickdefs_p.h\', \'mkspecs/common/winrt_winphone/assets/logo_620x300.png\', \'include/qt/QtMultimedia/QMediaServiceDefaultDeviceInterface\', \'mkspecs/modules/qt_lib_printsupport_private.pri\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextedit_p_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/htmlhighlighter_p.h\', \'include/qt/QtMultimediaQuick_p/5.6.2/QtMultimediaQuick_p/private/qsgvideonode_texture_p.h\', \'include/qt/QtDBus/qdbusconnectioninterface.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qaudiodevicefactory_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdparticlechecker_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4global_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerjob_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickrepeater_p.h\', \'qml/QtBluetooth/qmldir\', \'translations/qtquickcontrols2_uk.qm\', \'include/qt/QtScript/qscriptable.h\', \'include/qt/QtBluetooth/QLowEnergyCharacteristic\', \'mkspecs/linux-lsb-g++/qmake.conf\', \'include/qt/QtDesigner/QFormBuilder\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickrendercontrol_p.h\', \'include/qt/QtScript/QtScript\', \'include/qt/QtPrintSupport/qabstractprintdialog.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformdrag.h\', \'include/qt/QtWidgets/qabstractslider.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4argumentsobject_p.h\', \'include/qt/QtCore/qregularexpression.h\', \'lib/cmake/Qt5LinguistTools/Qt5LinguistToolsConfig.cmake\', \'lib/libQt5XmlPatterns.so.5.6\', \'mkspecs/features/mac/objective_c.prf\', \'include/qt/QtConcurrent/qtconcurrentexception.h\', \'include/qt/QtGui/QAccessibleEditableTextInterface\', \'include/qt/QtQuick/qsgsimpletexturenode.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qmemrotate_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmainwindowlayout_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatforminputcontext_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptdeclarativeobject_p.h\', \'lib/libQt5DesignerComponents.so\', \'include/qt/QtGui/QOpenGLPaintDevice\', \'plugins/qmltooling/libqmldbg_debugger.so\', \'include/qt/QtWidgets/QStyleOptionSizeGrip\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickfontmetrics_p.h\', \'include/qt/QtWidgets/QLayout\', \'include/qt/QtGui/QGenericPluginFactory\', \'lib/libQt5WebChannel.so.5.6\', \'include/qt/QtNetwork/qhttpmultipart.h\', \'include/qt/QtMultimedia/qradiodatacontrol.h\', \'translations/designer_zh_TW.qm\', \'include/qt/QtGui/QScreen\', \'plugins/imageformats/libqwebp.so\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformintegrationfactory_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstvideobuffer_p.h\', \'mkspecs/features/configure.prf\', \'qml/QtQuick/Layouts/qmldir\', \'include/qt/QtCore/5.6.2/QtCore/private/qcollator_p.h\', \'mkspecs/modules/qt_lib_dbus_private.pri\', \'include/qt/QtWidgets/QStyleOptionComboBox\', \'qml/QtQuick/Controls/Private/ModalPopupBehavior.qml\', \'translations/qtconfig_pl.qm\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/devicediscoverybroadcastreceiver_p.h\', \'include/qt/QtDesigner/QDesignerMemberSheetExtension\', \'include/qt/QtDesigner/propertysheet.h\', \'include/qt/QtGui/qgenericmatrix.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatforminputcontextfactory_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimation_p_p.h\', \'include/qt/QtWidgets/QStyleHintReturnMask\', \'include/qt/QtWidgets/QStyleFactory\', \'include/qt/QtNetwork/QLocalServer\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qevaluationcache_tpl_p.h\', \'include/qt/QtGui/qopenglfunctions_4_1_compatibility.h\', \'lib/libQt5Core.so.5\', \'include/qt/QtDesigner/qdesigner_components.h\', \'mkspecs/features/qt_tool.prf\', \'include/qt/QtWidgets/QProgressDialog\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcollationchecker_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicksmoothedanimation_p.h\', \'include/qt/QtDesigner/abstractdnditem.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlconnections_p.h\', \'lib/libQt5Test.so\', \'include/qt/QtGui/qopenglfunctions_4_4_core.h\', \'lib/libqgsttools_p.so.1.0\', \'mkspecs/features/data/mac/objc_namespace.sh\', \'include/qt/QtCore/5.6.2/QtCore/private/qscopedpointer_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaresourceset_p.h\', \'include/qt/QtCLucene/qtcluceneversion.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4function_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltypeloader_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsduserschematype_p.h\', \'bin/qtplugininfo\', \'mkspecs/common/shell-win32.conf\', \'doc/global/qt-html-templates-offline.qdocconf\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qsslserver_p.h\', \'include/qt/QtCore/qlibraryinfo.h\', \'include/qt/QtNfc/QNdefRecord\', \'include/qt/QtNfc/qndefmessage.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4include_p.h\', \'include/qt/QtDesigner/QDesignerExtraInfoExtension\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkcookiejar_p.h\', \'mkspecs/features/lex.prf\', \'mkspecs/macx-ios-clang/Info.plist.lib\', \'mkspecs/devices/linux-mipsel-broadcom-97425-g++/qplatformdefs.h\', \'qml/QtGraphicalEffects/private/FastMaskedBlur.qml\', \'include/qt/QtDBus/QtDBus\', \'translations/qtscript_sk.qm\', \'include/qt/QtWidgets/QDoubleSpinBox\', \'include/qt/QtCore/QCommandLineParser\', \'include/qt/QtCore/QProcessEnvironment\', \'qml/QtQuick/Controls/Menu.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qanimationgroupjob_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qresourceloader_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextdocumentfragment_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/objectmanager_p.h\', \'include/qt/QtWidgets/qmessagebox.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickcustomaffector_p.h\', \'include/qt/QtGui/QAccessibleActionInterface\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparisonplatform_tpl_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamespacebinding_p.h\', \'include/qt/QtSvg/qsvgrenderer.h\', \'include/qt/QtWebKit/QWebSecurityOrigin\', \'include/qt/QtNetwork/QHttpMultiPart\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qqnameconstructor_p.h\', \'qml/QtQuick/Controls/Private/TableViewSelection.qml\', \'include/qt/QtQuickWidgets/5.6.2/QtQuickWidgets/private/qquickwidget_p.h\', \'include/qt/QtWidgets/QStyleOptionComplex\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4util_p.h\', \'mkspecs/macx-g++/qmake.conf\', \'qml/QtGraphicalEffects/Colorize.qml\', \'lib/libQt5WebSockets.so.5.6.2\', \'include/qt/QtCore/QTextDecoder\', \'include/qt/QtXmlPatterns/QtXmlPatternsDepends\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpullbridge_p.h\', \'include/qt/QtBluetooth/qbluetoothlocaldevice.h\', \'mkspecs/freebsd-clang/qplatformdefs.h\', \'mkspecs/linux-clang-libc++/qplatformdefs.h\', \'qml/QtQuick/Controls/Styles/Base/images/rightanglearrow.png\', \'mkspecs/macx-clang-32/Info.plist.lib\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-down.png\', \'include/qt/QtWidgets/qheaderview.h\', \'translations/linguist_de.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcoloroutput_p.h\', \'qml/QtQuick/Extras/designer/images/gauge-icon.png\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qlocalserver_p.h\', \'include/qt/QtWidgets/qstylepainter.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfilesystemmodel_p.h\', \'qml/QtQuick/LocalStorage/libqmllocalstorageplugin.so\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimagebase_p.h\', \'include/qt/QtPlatformHeaders/QtPlatformHeaders\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4memberdata_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qpodvector_p.h\', \'include/qt/QtPrintSupport/qtprintsupportversion.h\', \'lib/libQt5WebKitWidgets.so.5.6.2\', \'include/qt/QtMultimedia/qradiodata.h\', \'qml/QtQuick/Extras/designer/images/delaybutton-icon16.png\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnativesocketengine_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsettings_p.h\', \'include/qt/QtBluetooth/qlowenergyservice.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/deviceprofile_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmedianetworkplaylistprovider_p.h\', \'include/qt/QtWidgets/QMenuBar\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqlquerymodel_p.h\', \'include/qt/QtXml/QXmlNamespaceSupport\', \'include/qt/QtOpenGL/QtOpenGL\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexceptiterator_p.h\', \'include/qt/QtGui/QPdfWriter\', \'translations/designer_fr.qm\', \'include/qt/QtWidgets/QDial\', \'translations/designer_pl.qm\', \'include/qt/QtTest/qtestsystem.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunparsedentitypublicidfn_p.h\', \'include/qt/QtNetwork/QSslConfiguration\', \'mkspecs/wince80colibri-armv7-msvc2012/qmake.conf\', \'include/qt/QtWidgets/qcompleter.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/ui4_p.h\', \'include/qt/QtQml/QtQmlDepends\', \'qml/QtQuick/Controls/Styles/Desktop/MenuStyle.qml\', \'include/qt/QtMultimedia/QVideoDeviceSelectorControl\', \'include/qt/QtWidgets/qfontdialog.h\', \'include/qt/QtNetwork/qsslsocket.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/playlistfileparser_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractduration_p.h\', \'include/qt/QtQml/qqmlextensionplugin.h\', \'lib/cmake/Qt5Svg/Qt5SvgConfigVersion.cmake\', \'include/qt/QtXmlPatterns/QAbstractUriResolver\', \'lib/libQt5Core.prl\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerresponse_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlinstantiator_p_p.h\', \'mkspecs/macx-clang-32/qplatformdefs.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebchannelwebkittransport_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcontextitem_p.h\', \'mkspecs/aix-xlc/qplatformdefs.h\', \'include/qt/QtQml/qjsengine.h\', \'include/qt/QtXmlPatterns/QXmlNamePool\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/abstractintrospection_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/previewmanager_p.h\', \'include/qt/QtWidgets/QDockWidget\', \'include/qt/QtQuick/QQuickFramebufferObject\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/cache_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4isel_masm_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/extensionfactory_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformsessionmanager.h\', \'mkspecs/aix-g++-64/qmake.conf\', \'lib/libQt5Designer.so\', \'qml/QtQuick.2/plugins.qmltypes\', \'include/qt/QtMultimedia/qcameraexposurecontrol.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtextedit_p.h\', \'translations/qtdeclarative_fr.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsimplecontentconstructor_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4arraydata_p.h\', \'include/qt/QtMultimedia/qcameracapturedestinationcontrol.h\', \'include/qt/QtMultimedia/qvideorenderercontrol.h\', \'include/qt/QtQml/qqmlnetworkaccessmanagerfactory.h\', \'include/qt/QtNfc/qndefnfctextrecord.h\', \'include/qt/QtGui/QOffscreenSurface\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptgrammar_p.h\', \'mkspecs/devices/linux-mipsel-broadcom-97425-g++/qmake.conf\', \'include/qt/QtWidgets/qsplitter.h\', \'include/qt/QtNetwork/qudpsocket.h\', \'qml/QtGraphicalEffects/Blend.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qncnameconstructor_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsddocumentation_p.h\', \'include/qt/QtQuick/QQuickTextureFactory\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qoptimizerblocks_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qhistorystate_p.h\', \'include/qt/QtCore/qobjectdefs_impl.h\', \'include/qt/QtGui/qsessionmanager.h\', \'include/qt/QtOpenGL/qglframebufferobject.h\', \'mkspecs/modules/qt_lib_uitools_private.pri\', \'qml/QtQuick/Controls/Styles/Base/SliderStyle.qml\', \'include/qt/QtOpenGL/QGLShader\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qhexbinary_p.h\', \'include/qt/QtGui/QApplicationStateChangeEvent\', \'lib/libQt5Concurrent.so.5.6.2\', \'include/qt/QtGui/qaccessibleplugin.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_win_p.h\', \'include/qt/QtCore/QMapData\', \'mkspecs/features/ctest_testcase_common.prf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommandschedulerfrontend_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslsocket_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qtemporaryfile_p.h\', \'qml/QtQml/Models.2/qmldir\', \'include/qt/QtGui/QFocusEvent\', \'mkspecs/modules/qt_lib_gui_private.pri\', \'include/qt/QtMultimedia/QRadioDataControl\', \'qml/QtQuick/Controls/Private/SystemPaletteSingleton.qml\', \'include/qt/QtScript/QScriptValueIterator\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4jsir_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgbatchrenderer_p.h\', \'include/qt/QtSvg/qtsvgversion.h\', \'include/qt/QtGui/QShowEvent\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicklistview_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qmaintainingreader_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/bluez_data_p.h\', \'include/qt/QtCore/QMultiMap\', \'lib/libQt5OpenGL.so.5\', \'lib/cmake/Qt5Designer/Qt5Designer_QQuickWidgetPlugin.cmake\', \'include/qt/QtCore/QPointF\', \'mkspecs/macx-icc/Info.plist.app\', \'include/qt/QtGui/qopenglfunctions_3_3_core.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_sqlite_p.h\', \'include/qt/QtCore/QtCleanUpFunction\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformintegrationplugin.h\', \'include/qt/QtNetwork/QSslCertificate\', \'doc/global/template/images/header_bg.png\', \'mkspecs/macx-g++40/Info.plist.dSYM.in\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvaluecomparison_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-right.png\', \'mkspecs/solaris-g++-64/qmake.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4persistent_p.h\', \'include/qt/QtScript/QScriptable\', \'include/qt/QtMultimediaWidgets/QVideoWidgetControl\', \'include/qt/QtGui/qpalette.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsoleglobalobject_p.h\', \'include/qt/QtDBus/qdbusmessage.h\', \'include/qt/QtCore/QAnimationDriver\', \'doc/global/externalsites/qtcreator.qdoc\', \'include/qt/QtQuickTest/5.6.2/QtQuickTest/private/quicktestevent_p.h\', \'mkspecs/macx-ios-clang/ios_destinations.sh\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdassertion_p.h\', \'include/qt/QtQuickParticles/QtQuickParticles\', \'include/qt/QtCore/qconfig-minimal.h\', \'mkspecs/features/uic.prf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractspinbox_p.h\', \'mkspecs/macx-g++-32/Info.plist.app\', \'translations/qtbase_fi.qm\', \'qml/QtQuick/Controls/TreeView.qml\', \'lib/cmake/Qt5Qml/Qt5Qml_QLocalClientConnectionFactory.cmake\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/device_p.h\', \'include/qt/QtGui/QKeyEvent\', \'include/qt/QtQmlDevTools/QtQmlDevToolsDepends\', \'include/qt/QtMultimedia/QVideoFrame\', \'translations/qt_fa.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qsgvideonode_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformtheme_p.h\', \'include/qt/QtXml/QDomNamedNodeMap\', \'include/qt/QtCore/qsystemsemaphore.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4jsonobject_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qemptyiterator_p.h\', \'include/qt/QtNetwork/QAbstractNetworkCache\', \'include/qt/QtWidgets/QProgressBar\', \'include/qt/QtCore/QTypeInfoQuery\', \'lib/pkgconfig/Qt5WebChannel.pc\', \'translations/qtxmlpatterns_it.qm\', \'include/qt/QtGui/qiconengine.h\', \'include/qt/QtGui/QFileOpenEvent\', \'qml/QtQuick/Controls/Private/BasicTableView.qml\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupport_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/iconloader_p.h\', \'mkspecs/features/data/cmake/Qt5PluginTarget.cmake.in\', \'mkspecs/solaris-cc-64-stlport/qmake.conf\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qopenglcompositorbackingstore_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qorderby_p.h\', \'include/qt/QtCore/QMimeData\', \'include/qt/QtGui/qgenericpluginfactory.h\', \'mkspecs/features/qt_installs.prf\', \'include/qt/QtCore/qhashfunctions.h\', \'mkspecs/devices/linux-rpi3-vc4-g++/qmake.conf\', \'include/qt/QtGui/5.6.2/QtGui/private/qkeymapper_p.h\', \'translations/qtlocation_ru.qm\', \'doc/global/template/images/bg_ll_blank.png\', \'include/qt/QtCore/5.6.2/QtCore/private/qfactoryloader_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4objectproto_p.h\', \'translations/qtscript_ca.qm\', \'translations/qtbase_ru.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimetypeparser_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qscreen_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemahelper_p.h\', \'include/qt/QtWidgets/QShortcut\', \'include/qt/QtGui/QAccessible\', \'include/qt/QtMultimedia/qmediarecorder.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qqnamevalue_p.h\', \'mkspecs/modules/qt_lib_dbus.pri\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/lowenergynotificationhub_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_membersheet_p.h\', \'doc/global/template/images/bg_l.png\', \'include/qt/QtCore/QItemSelection\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindexreader_clucene_p.h\', \'translations/qtdeclarative_lv.qm\', \'include/qt/QtQuick/QSGVertexColorMaterial\', \'include/qt/QtWebChannel/5.6.2/QtWebChannel/private/variantargument_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptparser_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qandexpression_p.h\', \'lib/libqgsttools_p.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloatmathematician_tpl_p.h\', \'mkspecs/win32-msvc2015/qplatformdefs.h\', \'mkspecs/win32-msvc2010/qmake.conf\', \'mkspecs/features/winrt/package_manifest.prf\', \'include/qt/QtCore/qcoreapplication.h\', \'include/qt/QtWidgets/qlistview.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickopenglinfo_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsltnodetest_p.h\', \'include/qt/QtGui/QOpenGLFunctions_3_2_Compatibility\', \'include/qt/QtCore/qtypetraits.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebscriptworld_p.h\', \'include/qt/QtGui/qopenglfunctions_2_1.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcontext2dtexture_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qattributeconstructor_p.h\', \'include/qt/QtQuick/qtquickversion.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_promotiondialog_p.h\', \'qml/QtQuick/Controls/ToolBar.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qmetatypeswitcher_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpnghandler_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtextnodeconstructor_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxpathhelper_p.h\', \'lib/cmake/Qt5Core/Qt5CoreConfigExtras.cmake\', \'mkspecs/common/bsd/qplatformdefs.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qvectorpath_p.h\', \'bin/uic\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomicstring_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdattributeterm_p.h\', \'include/qt/QtGui/QOpenGLFramebufferObjectFormat\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfileiconprovider_p.h\', \'translations/qt_fi.qm\', \'mkspecs/modules/qt_lib_x11extras_private.pri\', \'include/qt/QtCore/QRunnable\', \'include/qt/QtCore/qfinalstate.h\', \'mkspecs/win32-msvc2012/qplatformdefs.h\', \'include/qt/QtWidgets/QFileIconProvider\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qprocessinginstructionconstructor_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qzipreader_p.h\', \'include/qt/QtConcurrent/QtConcurrentFilter\', \'qml/QtTest/testlogger.js\', \'include/qt/QtSql/qsqlquery.h\', \'include/qt/QtWidgets/qboxlayout.h\', \'lib/cmake/Qt5Svg/Qt5Svg_QSvgIconPlugin.cmake\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickgroupgoal_p.h\', \'lib/libQt5WebKitWidgets.so\', \'lib/libQt5X11Extras.prl\', \'include/qt/QtWidgets/QSizeGrip\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlaccessors_p.h\', \'include/qt/QtQuick/qsgengine.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qstringalgorithms_p.h\', \'include/qt/QtQml/QQmlProperty\', \'lib/libQt5Xml.so.5\', \'include/qt/QtWidgets/QPlainTextDocumentLayout\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4managed_p.h\', \'include/qt/QtMultimediaWidgets/qtmultimediawidgetsversion.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qdatetime_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstractfileengine_p.h\', \'include/qt/QtGui/QDragEnterEvent\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/bytearraytestdata.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qurl_p.h\', \'mkspecs/common/g++.conf\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestelementattribute_p.h\', \'mkspecs/macx-g++40/Info.plist.app\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtemplateparameterreference_p.h\', \'include/qt/QtCore/QXmlStreamEntityDeclaration\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextobject_p.h\', \'include/qt/QtGui/qguiapplication.h\', \'lib/libQt5Multimedia.so.5.6.2\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusxmlparser_p.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qtesttable_p.h\', \'include/qt/QtGui/QResizeEvent\', \'doc/global/template/images/arrow_down.png\', \'include/qt/QtGui/qpaintdevice.h\', \'include/qt/QtCore/QParallelAnimationGroup\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultglyphnode_p_p.h\', \'include/qt/QtWidgets/QTableWidgetItem\', \'include/qt/QtDBus/QtDBusVersion\', \'bin/qdbus\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcanvascontext_p.h\', \'lib/cmake/Qt5Qml/Qt5QmlConfigVersion.cmake\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptedit_p.h\', \'include/qt/QtGui/QTabletEvent\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglshadercache_meego_p.h\', \'include/qt/QtCore/QMutableMapIterator\', \'include/qt/QtCore/QBuffer\', \'qml/QtQuick/Controls/Styles/Desktop/ApplicationWindowStyle.qml\', \'doc/global/template/images/Qt-footer-bg.jpg\', \'include/qt/QtWidgets/QGraphicsGridLayout\', \'include/qt/QtGui/qimageiohandler.h\', \'include/qt/QtXmlPatterns/qtxmlpatternsversion.h\', \'include/qt/QtCore/QFutureInterfaceBase\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfunctionfactory_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnet_unix_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4isel_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/zoomwidget_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreameraudioinputselector_p.h\', \'include/qt/QtBluetooth/QBluetoothLocalDevice\', \'mkspecs/common/nacl/qplatformdefs.h\', \'qml/QtGraphicalEffects/DropShadow.qml\', \'include/qt/QtXmlPatterns/QXmlItem\', \'qml/QtQuick.2/qmldir\', \'include/qt/QtCore/Qt\', \'translations/qtdeclarative_de.qm\', \'include/qt/QtCore/QHashData\', \'include/qt/QtWidgets/qstyle.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qfilter_p.h\', \'include/qt/QtGui/QVector2D\', \'include/qt/QtWidgets/qkeysequenceedit.h\', \'mkspecs/modules/qt_lib_quickwidgets_private.pri\', \'include/qt/QtWidgets/qdesktopwidget.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmemoryvideobuffer_p.h\', \'lib/libQt5WebKitWidgets.la\', \'qml/QtQuick/Controls/Styles/Base/PieMenuStyle.qml\', \'include/qt/QtXml/QDomImplementation\', \'include/qt/QtConcurrent/QtConcurrent\', \'include/qt/QtCore/QLinkedListNode\', \'include/qt/QtXmlPatterns/QXmlResultItems\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdmodelgroup_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qlocalnametest_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4arraydata_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfusionstyle_p_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtreeview_p.h\', \'mkspecs/hpux-acc-64/qplatformdefs.h\', \'bin/qt.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdynamiccontextstore_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QComposePlatformInputContextPlugin.cmake\', \'mkspecs/haiku-g++/qplatformdefs.h\', \'mkspecs/modules/qt_lib_webkitwidgets.pri\', \'translations/qtscript_cs.qm\', \'include/qt/QtCore/QTextBoundaryFinder\', \'include/qt/QtTest/5.6.2/QtTest/private/qplaintestlogger_p.h\', \'include/qt/QtMultimedia/qvideoprobe.h\', \'plugins/platforms/libqxcb.so\', \'include/qt/QtOpenGL/QGLColormap\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4identifiertable_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qargumentconverter_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgyear_p.h\', \'translations/qtxmlpatterns_fr.qm\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsscene_bsp_p.h\', \'translations/linguist_cs.qm\', \'mkspecs/solaris-cc-64/qmake.conf\', \'include/qt/QtCore/5.6.2/QtCore/private/qvariant_p.h\', \'include/qt/QtQmlDevTools/QtQmlDevTools\', \'include/qt/QtCore/5.6.2/QtCore/private/qiconvcodec_p.h\', \'translations/qmlviewer_ru.qm\', \'include/qt/QtCore/QVariantHash\', \'include/qt/QtNfc/qtnfcversion.h\', \'include/qt/QtWidgets/QGraphicsAnchorLayout\', \'include/qt/QtGui/QTextBlock\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qtokenstream_p.h\', \'include/qt/QtWebKitWidgets/QtWebKitWidgetsVersion\', \'mkspecs/features/mac/sdk.prf\', \'qml/QtMultimedia/plugins.qmltypes\', \'translations/qtmultimedia_pl.qm\', \'mkspecs/macx-llvm/qplatformdefs.h\', \'lib/libQt5WebChannel.so.5.6.2\', \'include/qt/QtCore/5.6.2/QtCore/private/qstate_p.h\', \'mkspecs/wince70embedded-armv4i-msvc2008/qplatformdefs.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicssceneindex_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothtransferreply_bluez_p.h\', \'include/qt/QtGui/QGuiApplication\', \'lib/libQt5Gui.so.5.6\', \'translations/qtconfig_ja.qm\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p_p.h\', \'mkspecs/devices/linux-rpi3-vc4-g++/qplatformdefs.h\', \'mkspecs/freebsd-g++/qplatformdefs.h\', \'phrasebooks/french.qph\', \'qml/QtQuick/Extras/designer/images/delaybutton-icon.png\', \'include/qt/QtMultimedia/QCameraControl\', \'include/qt/QtWidgets/QTimeEdit\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformwindow.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4isel_moth_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlnullablevalue_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpathinterpolator_p.h\', \'include/qt/QtCore/qsysinfo.h\', \'include/qt/QtCore/qmap.h\', \'include/qt/QtWidgets/QStyleOptionTitleBar\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschematype_p.h\', \'include/qt/QtNetwork/QDnsMailExchangeRecord\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquicknetworkrequest_p.h\', \'include/qt/QtCore/QJsonValuePtr\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qaccessorfns_p.h\', \'include/qt/QtBluetooth/QtBluetoothDepends\', \'include/qt/QtWidgets/qscrollarea.h\', \'include/qt/QtCore/qstring.h\', \'include/qt/QtGui/qopenglfunctions_1_5.h\', \'include/qt/QtDesigner/abstractformwindowcursor.h\', \'include/qt/QtWidgets/QGridLayout\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunparsedentityurifn_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstate_p_p.h\', \'mkspecs/irix-cc/qplatformdefs.h\', \'include/qt/QtNfc/QtNfc\', \'include/qt/QtWidgets/QAbstractSlider\', \'include/qt/QtWidgets/qmenu.h\', \'include/qt/QtMultimedia/qaudiosystemplugin.h\', \'qml/QtQml/plugins.qmltypes\', \'include/qt/QtBluetooth/qbluetoothtransferreply.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qscrollbar_p.h\', \'include/qt/QtDesigner/QDesignerFormEditorInterface\', \'include/qt/QtGui/QGradient\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlvmemetaobject_p.h\', \'mkspecs/modules/qt_lib_widgets_private.pri\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptstdmessagehandler_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimemagicrulematcher_p.h\', \'mkspecs/common/clang-mac.conf\', \'include/qt/QtCore/qline.h\', \'include/qt/QtMultimedia/qtmultimediadefs.h\', \'include/qt/QtNetwork/QtNetworkDepends\', \'include/qt/QtNetwork/qhostinfo.h\', \'include/qt/QtCore/QRectF\', \'include/qt/QtNetwork/qabstractsocket.h\', \'lib/libQt5QuickParticles.so.5.6\', \'phrasebooks/finnish.qph\', \'include/qt/QtScriptTools/QtScriptToolsVersion\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qscrollerproperties_p.h\', \'mkspecs/macx-g++40/qplatformdefs.h\', \'include/qt/QtWidgets/qformlayout.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimage_p_p.h\', \'include/qt/QtGui/qpixmap.h\', \'translations/designer_uk.qm\', \'qml/QtQuick/Controls/Private/FocusFrame.qml\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtdevicepair_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickfontloader_p.h\', \'include/qt/QtCore/qatomic_gcc.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QTgaPlugin.cmake\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickwindowattached_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qabstractsocketengine_p.h\', \'lib/libQt5PrintSupport.la\', \'include/qt/QtTest/5.6.2/QtTest/private/valgrind_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcachecells_p.h\', \'include/qt/QtConcurrent/qtconcurrentmapkernel.h\', \'include/qt/QtNetwork/qsslerror.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtoolbararealayout_p.h\', \'include/qt/QtQml/QQmlAbstractUrlInterceptor\', \'qml/QtQuick/Extras/designer/CircularGaugeSpecifics.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qtextcodec_p.h\', \'include/qt/QtScript/QtScriptDepends\', \'mkspecs/features/qt.prf\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qspdyprotocolhandler_p.h\', \'include/qt/QtQuick/QSGTexture\', \'mkspecs/hpux-acc/qplatformdefs.h\', \'include/qt/QtGui/QMatrix4x2\', \'include/qt/QtPlatformHeaders/QEGLNativeContext\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptvalueproperty_p.h\', \'include/qt/QtQuick/QSGSimpleMaterialShader\', \'include/qt/QtGui/QPainter\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/struct_marshallers_p.h\', \'translations/designer_sl.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamespacenametest_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qimagepixmapcleanuphooks_p.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestutil_macos_p.h\', \'qml/QtMultimedia/qmldir\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprintengine_win_p.h\', \'include/qt/QtGui/QMatrix\', \'include/qt/QtGui/QPaintEvent\', \'include/qt/QtWebKit/QWebSettings\', \'qml/QtQuick/Extras/designer/DialSpecifics.qml\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgettextcontrol_p.h\', \'include/qt/QtWidgets/QTableView\', \'include/qt/QtWidgets/QStyleOptionDockWidget\', \'doc/global/html-footer-online.qdocconf\', \'include/qt/QtQml/5.6.2/QtQml/private/qfinitestack_p.h\', \'translations/qtwebsockets_fr.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qfileselector_p.h\', \'include/qt/QtWidgets/qgraphicseffect.h\', \'include/qt/QtQml/qqmlinfo.h\', \'lib/libQt5Quick.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qgrayraster_p.h\', \'translations/qtwebengine_ru.qm\', \'lib/libQt5PrintSupport.prl\', \'include/qt/QtCore/qcoreevent.h\', \'include/qt/QtWidgets/QTreeView\', \'include/qt/QtOpenGL/QGLPixelBuffer\', \'include/qt/QtMultimediaWidgets/qgraphicsvideoitem.h\', \'include/qt/QtCore/QScopedPointerDeleter\', \'include/qt/QtMultimedia/QMediaRecorder\', \'include/qt/QtDesigner/abstractintegration.h\', \'include/qt/QtCore/QTextEncoder\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevkeyboardmanager_p.h\', \'mkspecs/devices/common/linux_arm_device_post.conf\', \'include/qt/QtMultimedia/qcameraviewfindersettingscontrol.h\', \'include/qt/QtCore/qsocketnotifier.h\', \'include/qt/QtMultimedia/qvideosurfaceformat.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamespaceconstructor_p.h\', \'doc/global/template/images/page.png\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsglobal_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/qmldir\', \'include/qt/QtCore/QTimeLine\', \'lib/libQt5OpenGL.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpath_p.h\', \'include/qt/QtQuickWidgets/QtQuickWidgetsVersion\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/layoutinfo_p.h\', \'translations/qtconfig_sk.qm\', \'mkspecs/common/gcc-base-unix.conf\', \'include/qt/QtCore/QFutureIterator\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtocodepointsiterator_p.h\', \'include/qt/QtCore/QStringListIterator\', \'include/qt/QtCore/QMutableFutureIterator\', \'include/qt/QtGui/qfont.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstutils_p.h\', \'include/qt/QtCore/QIntegerForSize\', \'mkspecs/lynxos-g++/qmake.conf\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformcursor.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/qpa/qplatformprintplugin.h\', \'include/qt/QtGui/qopenglextrafunctions.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qquickworkerscript_p.h\', \'translations/qtquickcontrols_fi.qm\', \'include/qt/QtGui/QVector4D\', \'include/qt/QtCore/qfileselector.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/dbusproperties_p.h\', \'translations/qmlviewer_uk.qm\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qcups_p.h\', \'include/qt/QtGui/QAccessibleBridgePlugin\', \'mkspecs/unixware-cc/qplatformdefs.h\', \'qml/QtQuick/Extras/designer/images/tumbler-icon.png\', \'include/qt/QtDesigner/abstractwidgetfactory.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerobjectsnapshotdelta_p.h\', \'include/qt/QtWidgets/QFileDialog\', \'mkspecs/modules/qt_lib_nfc_private.pri\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qtextureglyphcache_gl_p.h\', \'translations/qtmultimedia_sk.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbase64binary_p.h\', \'include/qt/QtWidgets/QCommandLinkButton\', \'include/qt/QtCore/QStringMatcher\', \'qml/builtins.qmltypes\', \'mkspecs/devices/linux-imx53qsb-g++/qplatformdefs.h\', \'mkspecs/unsupported/qnx-X11-g++/qplatformdefs.h\', \'plugins/qmltooling/libqmldbg_tcp.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgtkstyle_p.h\', \'translations/qt_ja.qm\', \'include/qt/QtWidgets/QStyleHintReturnVariant\', \'include/qt/QtXml/QDomComment\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpsocket_android_p.h\', \'qml/QtGraphicalEffects/private/GaussianMaskedBlur.qml\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusthreaddebug_p.h\', \'qml/QtQuick/Controls/Styles/Base/StatusIndicatorStyle.qml\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformpixmap.h\', \'mkspecs/blackberry-x86-qcc/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgmonth_p.h\', \'include/qt/QtQuick/qsggeometry.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4dataview_p.h\', \'include/qt/QtQuickWidgets/QtQuickWidgets\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtarget_p.h\', \'include/qt/QtCore/qnamespace.h\', \'mkspecs/winphone-x86-msvc2013/qplatformdefs.h\', \'mkspecs/devices/common/linux_device_pre.conf\', \'include/qt/QtWidgets/qtoolbar.h\', \'include/qt/QtCore/QFileInfoList\', \'mkspecs/devices/linux-imx6-g++/qplatformdefs.h\', \'lib/libQt5Qml.prl\', \'include/qt/QtDBus/qdbusextratypes.h\', \'include/qt/QtNfc/qqmlndefrecord.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4booleanobject_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemview_p.h\', \'doc/global/macros.qdocconf\', \'include/qt/QtNetwork/QSslCertificateExtension\', \'include/qt/QtWidgets/QStyleOptionViewItemV4\', \'include/qt/QtWidgets/QStyleOptionViewItemV2\', \'include/qt/QtWidgets/QStyleOptionViewItemV3\', \'include/qt/QtDBus/QDBusArgument\', \'mkspecs/modules/qt_lib_openglextensions_private.pri\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtoolbarseparator_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/TabViewStyle.qml\', \'include/qt/QtMultimedia/qaudioencodersettingscontrol.h\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpgenerator_p.h\', \'include/qt/QtCore/QFutureWatcher\', \'include/qt/QtNetwork/QNetworkConfiguration\', \'mkspecs/aix-g++-64/qplatformdefs.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qaudiobuffer_p.h\', \'include/qt/QtSql/QSqlField\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdannotation_p.h\', \'translations/qt_uk.qm\', \'include/qt/QtNetwork/QNetworkReply\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemiterator_p.h\', \'mkspecs/modules/qt_lib_qmltest.pri\', \'mkspecs/features/android/android.prf\', \'mkspecs/common/g++-unix.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qfieldlist_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/dummy_helper_p.h\', \'lib/pkgconfig/Qt5Test.pc\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4compileddata_p.h\', \'qml/QtGraphicalEffects/ColorOverlay.qml\', \'include/qt/QtGui/QOpenGLFramebufferObject\', \'include/qt/QtDBus/qdbusvirtualobject.h\', \'include/qt/QtQmlDevTools/qtqmldevtoolsversion.h\', \'mkspecs/features/unix/x11sm.prf\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtagtype3_p.h\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusintrospection_p.h\', \'include/qt/QtWebKit/QWebSpellChecker\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4value_p.h\', \'include/qt/QtSvg/qtsvgglobal.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptobjectsnapshot_p.h\', \'mkspecs/features/qt_module.prf\', \'mkspecs/features/qml_plugin.prf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/rangecontrols_p.h\', \'include/qt/QtHelp/QHelpSearchResultWidget\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylistioplugin_p.h\', \'include/qt/QtCore/qfunctions_vxworks.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformthemeplugin.h\', \'include/qt/QtTest/QSignalSpy\', \'lib/cmake/Qt5Core/Qt5CoreConfig.cmake\', \'include/qt/QtWidgets/QTileRules\', \'include/qt/QtMultimedia/QImageEncoderControl\', \'include/qt/QtCore/5.6.2/QtCore/private/qsystemsemaphore_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgettextcontrol_p_p.h\', \'lib/libQt5OpenGLExtensions.la\', \'mkspecs/unsupported/vxworks-ppc-g++/qmake.conf\', \'qml/QtQuick/Controls/Styles/Base/images/scrollbar-handle-horizontal.png\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdatetimefn_p.h\', \'lib/libQt5XcbQpa.so.5\', \'include/qt/QtGui/qsyntaxhighlighter.h\', \'translations/linguist_sk.qm\', \'include/qt/QtTest/qttestversion.h\', \'translations/qtbase_en.qm\', \'mkspecs/unsupported/android-g++/qplatformdefs.h\', \'include/qt/QtDBus/QDBusAbstractInterface\', \'include/qt/QtMultimediaWidgets/QCameraViewfinder\', \'include/qt/QtCore/qsharedmemory.h\', \'include/qt/QtCore/QVariantComparisonHelper\', \'mkspecs/modules/qt_lib_svg_private.pri\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnativesocketengine_winrt_p.h\', \'include/qt/QtWidgets/QAbstractItemView\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanager_neard_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccasterlocators_p.h\', \'include/qt/QtXml/QDomNode\', \'include/qt/QtOpenGL/qgl.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qyearmonthduration_p.h\', \'include/qt/QtCore/qatomic.h\', \'include/qt/QtDBus/qdbusserver.h\', \'qml/QtQuick/Controls/Styles/Base/DelayButtonStyle.qml\', \'include/qt/QtWidgets/QMacCocoaViewContainer\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/servicemap_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qaudiohelpers_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstractanimation_p.h\', \'include/qt/QtCore/qstringlistmodel.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformscreen.h\', \'include/qt/QtGui/QOpenGLFunctions_4_1_Compatibility\', \'include/qt/QtMultimedia/qmediaplayercontrol.h\', \'lib/libQt5WebSockets.so.5.6\', \'include/qt/QtQuickWidgets/QtQuickWidgetsDepends\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4codegen_p.h\', \'include/qt/QtGui/QOpenGLFunctions_4_3_Core\', \'include/qt/QtMultimedia/qmediaavailabilitycontrol.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerfrontend_p.h\', \'include/qt/QtMultimedia/qaudioinputselectorcontrol.h\', \'include/qt/QtCore/QUuid\', \'qml/QtQuick/Controls/Styles/Desktop/SpinBoxStyle.qml\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformgraphicsbufferhelper.h\', \'include/qt/QtMultimediaQuick_p/QtMultimediaQuick_pDepends\', \'include/qt/QtCore/QCryptographicHash\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcalltemplate_p.h\', \'include/qt/QtCore/QXmlStreamAttributes\', \'include/qt/QtMultimedia/qcameraexposure.h\', \'qml/QtQuick/Controls/Private/ToolMenuButton.qml\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qpaintengine_alpha_p.h\', \'include/qt/QtCore/QObjectCleanupHandler\', \'lib/cmake/Qt5Svg/Qt5SvgConfig.cmake\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_cf_p.h\', \'translations/qtserialport_uk.qm\', \'include/qt/QtWidgets/QStyleOptionTabWidgetFrameV2\', \'include/qt/QtWebKitWidgets/QGraphicsWebView\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_QM3uPlaylistPlugin.cmake\', \'include/qt/QtCore/QTime\', \'plugins/mediaservice/libgstaudiodecoder.so\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbusmenuconnection_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qrgba64_p.h\', \'include/qt/QtDesigner/QDesignerMetaDataBaseItemInterface\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsast_p.h\', \'lib/cmake/Qt5Network/Qt5NetworkConfig.cmake\', \'include/qt/QtNetwork/QDnsHostAddressRecord\', \'include/qt/QtCore/5.6.2/QtCore/private/qtldurl_p.h\', \'translations/qt_help_ko.qm\', \'lib/libQt5Test.la\', \'include/qt/QtPlatformHeaders/QtPlatformHeadersDepends\', \'qml/QtGraphicalEffects/LevelAdjust.qml\', \'mkspecs/common/wince/qplatformdefs.h\', \'include/qt/QtCore/QTypeInfoMerger\', \'include/qt/QtWidgets/qsplashscreen.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qaccessiblequickview_p.h\', \'plugins/mediaservice/libgstmediaplayer.so\', \'include/qt/QtCore/qatomic_armv6.h\', \'include/qt/QtXml/QDomCharacterData\', \'include/qt/QtGui/QPen\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerbackend_p_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qitem_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/textpropertyeditor_p.h\', \'include/qt/QtUiTools/QtUiToolsVersion\', \'include/qt/QtNfc/QtNfcDepends\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmarkvalgrind_p.h\', \'include/qt/QtQuick/qsgtexture.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestresult_p.h\', \'qml/QtQuick/Controls/Styles/Base/DialStyle.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qtools_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qinputmethod_p.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qpaintengine_preview_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlrefcount_p.h\', \'mkspecs/winphone-arm-msvc2013/qplatformdefs.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/grid_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsvistastyle_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4ssa_p.h\', \'qml/QtQuick/Controls/TabView.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qcore_unix_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickmousearea_p_p.h\', \'lib/libQt5CLucene.la\', \'lib/libQt5Nfc.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgtkpainter_p.h\', \'include/qt/QtWidgets/qgraphicsitemanimation.h\', \'include/qt/QtGui/QOpenGLShader\', \'include/qt/QtWidgets/qwhatsthis.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformscreen_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/header.png\', \'qml/QtQuick/Controls/Private/TreeViewItemDelegateLoader.qml\', \'qml/QtQuick/Extras/designer/StatusIndicatorSpecifics.qml\', \'include/qt/QtXml/QDomDocumentFragment\', \'mkspecs/modules/qt_lib_uiplugin.pri\', \'include/qt/QtGui/5.6.2/QtGui/private/qguiapplication_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignerwindowmanager_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/hcimanager_p.h\', \'translations/qtlocation_en.qm\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_oci_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemamerger_p.h\', \'include/qt/QtDBus/QDBusMetaType\', \'mkspecs/wince80colibri-armv7-msvc2012/qplatformdefs.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qeglconvenience_p.h\', \'mkspecs/features/sanitizer.prf\', \'mkspecs/features/qml1_module.prf\', \'qml/QtQuick/Controls/Slider.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qresource_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamedschemacomponent_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptastfwd_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/targetemulator_p.h\', \'bin/xmlpatterns\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/metadatabase_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4instr_moth_p.h\', \'include/qt/QtQuick/qsgsimplerectnode.h\', \'qml/QtQuick/Controls/Styles/Base/ProgressBarStyle.qml\', \'include/qt/QtWidgets/qtabbar.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qhexstring_p.h\', \'include/qt/QtConcurrent/qtconcurrentfunctionwrappers.h\', \'include/qt/QtGui/QIconDragEvent\', \'lib/libQt5Nfc.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpaircontainer_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsgrammar_p.h\', \'mkspecs/common/ios/clang.conf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerstackwidget_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextnode_p.h\', \'include/qt/QtWidgets/qgroupbox.h\', \'mkspecs/features/testcase_targets.prf\', \'mkspecs/modules/qt_lib_bluetooth.pri\', \'lib/libQt5Multimedia.la\', \'translations/qtmultimedia_ca.qm\', \'mkspecs/macx-ios-clang/features/resolve_config.prf\', \'include/qt/QtGui/5.6.2/QtGui/private/qdnd_p.h\', \'include/qt/QtCore/QVector\', \'doc/global/externalsites/rfc.qdoc\', \'include/qt/QtXml/QDomDocument\', \'include/qt/QtPlatformHeaders/qxcbscreenfunctions.h\', \'qml/QtQuick/Controls/Styles/Base/FocusFrameStyle.qml\', \'include/qt/QtSql/QSqlRelation\', \'include/qt/QtWidgets/QGraphicsSceneDragDropEvent\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformmenu.h\', \'qml/QtQuick/Controls/Styles/Flat/qmldir\', \'translations/qt_help_it.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qxpmhandler_p.h\', \'lib/libQt5MultimediaWidgets.so.5.6.2\', \'include/qt/QtNetwork/qsslcertificate.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstractstate_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccaster_p.h\', \'include/qt/QtBluetooth/QtBluetooth\', \'lib/cmake/Qt5QuickTest/Qt5QuickTestConfigVersion.cmake\', \'mkspecs/features/yacc.prf\', \'include/qt/QtTest/qtestevent.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qurltlds_p.h\', \'include/qt/QtTest/QTestDelayEvent\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/connectionedit_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/MenuBarStyle.qml\', \'translations/qtlocation_fr.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideoinputdevicecontrol_p.h\', \'include/qt/QtWidgets/qabstractspinbox.h\', \'include/qt/QtCore/qmetaobject.h\', \'phrasebooks/dutch.qph\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpcollectionhandler_p.h\', \'mkspecs/unsupported/nacl64-g++/qplatformdefs.h\', \'include/qt/QtQuick/QSGFlatColorMaterial\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformnativeinterface.h\', \'include/qt/QtWidgets/QGraphicsBlurEffect\', \'qml/QtQuick/Controls/Private/EditMenu.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_unix_p.h\', \'mkspecs/devices/linux-sh4-stmicro-ST7108-g++/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccomparators_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4regexp_p.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qdocument_p.h\', \'include/qt/QtDBus/qdbusconnection.h\', \'include/qt/QtOpenGL/QGLFunctions\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4mathobject_p.h\', \'include/qt/QtDesigner/abstractnewformwidget.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qanyitemtype_p.h\', \'include/qt/QtGui/QMatrix2x3\', \'include/qt/QtCore/qsignaltransition.h\', \'mkspecs/macx-icc/Info.plist.dSYM.in\', \'mkspecs/linux-clang/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qqnamefns_p.h\', \'lib/libQt5WebChannel.so.5\', \'qml/QtQuick/Controls/Styles/Base/GroupBoxStyle.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlschemavalidator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamespacesupport_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsview_p.h\', \'lib/pkgconfig/Qt5WebKit.pc\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptlexer_p.h\', \'lib/cmake/Qt5Test/Qt5TestConfigExtras.cmake\', \'include/qt/QtGui/qvector4d.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qitemeditorfactory_p.h\', \'translations/qtconnectivity_ru.qm\', \'plugins/designer/libqwebview.so\', \'include/qt/QtPlatformHeaders/qglxnativecontext.h\', \'include/qt/QtGui/QImageWriter\', \'translations/qtlocation_de.qm\', \'include/qt/QtBluetooth/QBluetoothUuid\', \'include/qt/QtWidgets/QGraphicsSimpleTextItem\', \'include/qt/QtGui/QToolBarChangeEvent\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctionavailablefn_p.h\', \'include/qt/QtHelp/qthelpversion.h\', \'qml/QtGraphicalEffects/ZoomBlur.qml\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickbehavior_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerfrontend_p_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsastvisitor_p.h\', \'lib/libQt5QuickTest.so.5.6\', \'include/qt/QtCore/5.6.2/QtCore/private/qisciicodec_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qbuttongroup_p.h\', \'lib/libQt5CLucene.prl\', \'include/qt/QtCore/QChar\', \'mkspecs/common/winrt_winphone/assets/logo_310x150.png\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcastableas_p.h\', \'include/qt/QtGui/QRasterWindow\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcurrentitemcontext_p.h\', \'lib/libQt5QuickTest.so\', \'include/qt/QtWidgets/QGraphicsView\', \'qml/QtNfc/libdeclarative_nfc.so\', \'include/qt/QtGui/qmatrix4x4.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qforclause_p.h\', \'include/qt/QtWebKit/qwebkitglobal.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmdisubwindow_p.h\', \'translations/qtwebsockets_de.qm\', \'translations/qtquick1_cs.qm\', \'translations/qtconnectivity_ko.qm\', \'include/qt/QtGui/QOpenGLBuffer\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/jni_android_p.h\', \'include/qt/QtCore/QForeachContainer\', \'include/qt/QtCore/5.6.2/QtCore/private/qcfsocketnotifier_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qdrawhelper_x86_p.h\', \'qml/QtQuick/Controls/Styles/Base/TumblerStyle.qml\', \'lib/libQt5MultimediaQuick_p.la\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxslttokenizer_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/newformwidget_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothsocket_osx_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanchors_p_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglengineshadersource_p.h\', \'include/qt/QtQuickParticles/QtQuickParticlesDepends\', \'include/qt/QtQml/qqmlpropertymap.h\', \'doc/global/externalsites/qt-webpages.qdoc\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4math_p.h\', \'plugins/qmltooling/libqmldbg_native.so\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestcorelist_p.h\', \'include/qt/QtDesigner/abstractformwindowmanager.h\', \'include/qt/QtDBus/QDBusInterface\', \'include/qt/QtGui/5.6.2/QtGui/private/qpixmap_blitter_p.h\', \'lib/libQt5Qml.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloatmathematician_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickshadereffectsource_p.h\', \'include/qt/QtXml/QXmlParseException\', \'mkspecs/modules/qt_lib_qml_private.pri\', \'include/qt/QtCore/qglobalstatic.h\', \'translations/designer_de.qm\', \'include/qt/QtMultimedia/QAudioOutput\', \'include/qt/QtWidgets/qsystemtrayicon.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldsharetarget_p.h\', \'include/qt/QtWidgets/QRubberBand\', \'lib/cmake/Qt5Bluetooth/Qt5BluetoothConfig.cmake\', \'include/qt/QtCore/QAbstractProxyModel\', \'lib/cmake/Qt5Nfc/Qt5NfcConfigVersion.cmake\', \'qml/QtGraphicalEffects/DirectionalBlur.qml\', \'include/qt/QtXmlPatterns/QAbstractMessageHandler\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qinstanceof_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugconnector_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfontengine_coretext_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4unop_p.h\', \'mkspecs/wince60standard-x86-msvc2005/qplatformdefs.h\', \'include/qt/QtGui/qvalidator.h\', \'lib/libQt5QuickWidgets.prl\', \'include/qt/QtGui/5.6.2/QtGui/private/qdrawhelper_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcardinalityverifier_p.h\', \'include/qt/QtSql/qsql.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolewidget_p.h\', \'include/qt/QtQml/qqmlextensioninterface.h\', \'translations/qtmultimedia_en.qm\', \'include/qt/QtWidgets/QStackedWidget\', \'include/qt/QtGui/5.6.2/QtGui/private/qfont_p.h\', \'include/qt/QtDBus/qdbusabstractadaptor.h\', \'translations/qtquickcontrols_en.qm\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4objectiterator_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qlocale_p.h\', \'bin/qtdiag\', \'include/qt/QtPlatformSupport/QtPlatformSupportDepends\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsequencegeneratingfns_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtemplate_p.h\', \'translations/qtdeclarative_en.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaserviceprovider_p.h\', \'include/qt/QtCore/qabstractnativeeventfilter.h\', \'include/qt/QtGui/qfontmetrics.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qifthenclause_p.h\', \'include/qt/QtGui/QAccessibleTextCursorEvent\', \'translations/qtmultimedia_cs.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstractproxymodel_p.h\', \'include/qt/QtMultimedia/QAudioDeviceInfo\', \'include/qt/QtGui/QOpenGLTimeMonitor\', \'include/qt/QtMultimedia/qmediaaudioprobecontrol.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldata_p.h\', \'include/qt/QtPlatformSupport/qtplatformsupportversion.h\', \'include/qt/QtGui/qopenglfunctions_1_2.h\', \'translations/qtwebengine_uk.qm\', \'include/qt/QtWidgets/QtWidgetsVersion\', \'qml/Qt/labs/folderlistmodel/libqmlfolderlistmodelplugin.so\', \'include/qt/QtCore/5.6.2/QtCore/private/qfileinfo_p.h\', \'bin/lupdate\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qclucenefieldnames_p.h\', \'include/qt/QtOpenGL/qglpixelbuffer.h\', \'include/qt/QtWidgets/QUndoCommand\', \'include/qt/QtHelp/QHelpIndexModel\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qunixeventdispatcher_qpa_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_menu_p.h\', \'include/qt/QtXml/QDomAttr\', \'translations/qtserialport_ru.qm\', \'include/qt/QtQuick/qtquickglobal.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qnoncontiguousbytedevice_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4identifier_p.h\', \'include/qt/QtXmlPatterns/qabstractxmlnodemodel.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_ibase_p.h\', \'qml/QtQuick/Controls/Styles/Base/MenuBarStyle.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtruthpredicate_p.h\', \'translations/qtdeclarative_pl.qm\', \'include/qt/QtCore/qexception.h\', \'plugins/imageformats/libqdds.so\', \'qml/QtQuick/Extras/designer/images/picture-icon.png\', \'doc/global/qt-module-defaults-online-commercial.qdocconf\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhostinfo_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodefinderwidget_p.h\', \'translations/qtwebsockets_ru.qm\', \'include/qt/QtWidgets/QAbstractSpinBox\', \'include/qt/QtWebKit/QWebFullScreenVideoHandler\', \'include/qt/QtMultimediaWidgets/QtMultimediaWidgets\', \'include/qt/QtMultimediaQuick_p/qtmultimediaquick_pversion.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestlog_p.h\', \'include/qt/QtWidgets/QGraphicsDropShadowEffect\', \'include/qt/QtWidgets/QGraphicsAnchor\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickrectangle_p_p.h\', \'lib/libQt5QmlDevTools.la\', \'include/qt/QtGui/qrawfont.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquickwebpage_p_p.h\', \'include/qt/QtWebKitWidgets/qwebinspector.h\', \'include/qt/QtCore/QtPlugin\', \'include/qt/QtWebKitWidgets/5.6.2/QtWebKitWidgets/private/qwebframe_p.h\', \'include/qt/QtMultimedia/qaudiodeviceinfo.h\', \'mkspecs/macx-ios-clang/features/qt_parts.prf\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/formlayoutmenu_p.h\', \'include/qt/QtCore/qeasingcurve.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticlesystem_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemengine_p.h\', \'include/qt/QtConcurrent/qtconcurrentreducekernel.h\', \'mkspecs/solaris-cc-64/qplatformdefs.h\', \'qml/QtQuick/Controls/Styles/Base/images/leftanglearrow.png\', \'include/qt/QtConcurrent/qtconcurrentrunbase.h\', \'include/qt/QtGui/QOpenGLShaderProgram\', \'lib/libQt5PrintSupport.so.5.6\', \'include/qt/QtCore/qlocale.h\', \'translations/qtbase_cs.qm\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgtinydocument_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistmodel_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qresourcedelegator_p.h\', \'lib/libQt5QmlDevTools.prl\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignercustomobjectdata_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitem_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldsharetargetimpl_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qstroker_p.h\', \'bin/qdbuscpp2xml\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevtablet_p.h\', \'include/qt/QtCore/QFunctionPointer\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/actioneditor_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnodenamespaceresolver_p.h\', \'include/qt/QtGui/QAccessibleValueInterface\', \'lib/cmake/Qt5Gui/Qt5GuiConfigVersion.cmake\', \'include/qt/QtWidgets/qtreewidgetitemiterator.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdparticle_p.h\', \'mkspecs/features/qml1_plugin.prf\', \'lib/cmake/Qt5DBus/Qt5DBusConfigVersion.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparingaggregator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcontextnodechecker_p.h\', \'include/qt/QtCore/QTypeInfo\', \'translations/qtwebsockets_uk.qm\', \'mkspecs/features/exclusive_builds_post.prf\', \'mkspecs/solaris-g++/qmake.conf\', \'lib/pkgconfig/Qt5ScriptTools.pc\', \'include/qt/QtNetwork/qnetworkinterface.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/orderdialog_p.h\', \'lib/libQt5DBus.prl\', \'lib/pkgconfig/Qt5DBus.pc\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptvariant_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/button.png\', \'include/qt/QtMultimedia/qmediagaplessplaybackcontrol.h\', \'mkspecs/features/wayland-scanner.prf\', \'include/qt/QtCore/qstringmatcher.h\', \'mkspecs/winrt-x64-msvc2013/qmake.conf\', \'mkspecs/winrt-x64-msvc2015/qplatformdefs.h\', \'include/qt/QtMultimedia/QRadioData\', \'include/qt/QtGui/qdesktopservices.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qstyle_p.h\', \'include/qt/QtGui/qaccessible.h\', \'include/qt/QtCore/qscopedvaluerollback.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qvariantanimation_p.h\', \'lib/libQt5Multimedia.so.5.6\', \'include/qt/QtCore/qresource.h\', \'include/qt/QtNfc/QNdefFilter\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformintegration.h\', \'include/qt/QtMultimedia/QAudioFormat\', \'mkspecs/hpux-acc-o64/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxquerytokenizer_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloat_tpl_p.h\', \'mkspecs/devices/linux-arm-trident-pnx8473-g++/qplatformdefs.h\', \'translations/qt_es.qm\', \'include/qt/QtGui/QShortcutEvent\', \'include/qt/QtWidgets/qerrormessage.h\', \'include/qt/QtGui/QFontDatabase\', \'include/qt/QtQml/QtQmlVersion\', \'include/qt/QtGui/5.6.2/QtGui/private/qpen_p.h\', \'include/qt/QtWidgets/QTableWidgetSelectionRange\', \'lib/libQt5Multimedia.so\', \'include/qt/QtWidgets/QFontComboBox\', \'include/qt/QtCore/QLinkedListIterator\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimatorcontroller_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/gridpanel_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpropertychanges_p.h\', \'include/qt/QtTest/qtestkeyboard.h\', \'include/qt/QtGui/qopenglfunctions_4_3_core.h\', \'plugins/bearer/libqgenericbearer.so\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaresourcepolicyplugin_p.h\', \'include/qt/QtWidgets/QComboBox\', \'include/qt/QtDesigner/QDesignerPromotionInterface\', \'include/qt/QtCore/QStaticArrayData\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccomparator_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qurlinfo_p.h\', \'include/qt/QtDBus/qdbusservicewatcher.h\', \'include/qt/QtCore/QXmlStreamNotationDeclaration\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgwindowsrenderloop_p.h\', \'mkspecs/common/nacl/g++-nacl32.conf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickapplication_p.h\', \'include/qt/QtGui/QScreenOrientationChangeEvent\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdevicediscovery_dummy_p.h\', \'include/qt/QtDBus/QDBusServer\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qabstractvideobuffer_p.h\', \'mkspecs/devices/linux-arm-hisilicon-hix5hd2-g++/qmake.conf\', \'include/qt/QtUiTools/qtuitoolsversion.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4script_p.h\', \'include/qt/QtWidgets/QGraphicsTransform\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/previewconfigurationwidget_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quserfunctioncallsite_p.h\', \'lib/cmake/Qt5Qml/Qt5QmlConfig.cmake\', \'qml/QtQuick/Particles.2/plugins.qmltypes\', \'mkspecs/macx-ios-clang/features/exclusive_builds_post.prf\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebsecurityorigin_p.h\', \'include/qt/QtMultimedia/QCameraImageProcessingControl\', \'include/qt/QtQuick/QSGOpacityNode\', \'include/qt/QtQml/5.6.2/QtQml/private/qanimationjobutil_p.h\', \'lib/libQt5OpenGLExtensions.prl\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpath_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugservice_p.h\', \'include/qt/QtCore/QtGlobal\', \'include/qt/QtGui/QAccessibleTextRemoveEvent\', \'include/qt/QtGui/qtextdocumentfragment.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkreply_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qinteger_p.h\', \'include/qt/QtCore/QUrlTwoFlags\', \'qml/QtQuick/Controls/RadioButton.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljskeywords_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qdockwidget_p.h\', \'qml/QtQuick/Controls/Private/MenuContentScroller.qml\', \'include/qt/QtXmlPatterns/qxmlresultitems.h\', \'include/qt/QtCore/QArrayDataPointerRef\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4math_p.h\', \'mkspecs/common/shell-unix.conf\', \'include/qt/QtCore/QXmlStreamEntityResolver\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/bluez5_helper_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p_p.h\', \'include/qt/QtDBus/qdbusmacros.h\', \'include/qt/QtCore/QArgument\', \'qml/QtQuick/Extras/designer/images/tumbler-icon16.png\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-up.png\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsggeometry_p.h\', \'qml/QtBluetooth/libdeclarative_bluetooth.so\', \'include/qt/QtCore/5.6.2/QtCore/private/qlibrary_p.h\', \'include/qt/QtCore/QAssociativeIterable\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptbreakpointsmodel_p.h\', \'include/qt/QtWebSockets/QWebSocket\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpatternmatchingfns_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/SwitchStyle.qml\', \'include/qt/QtCore/QJsonArray\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qreportcontext_p.h\', \'lib/libQt5Core.so.5.6.2\', \'include/qt/QtWidgets/qtreewidget.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_transfer1_bluez5_p.h\', \'include/qt/QtCore/QHashIterator\', \'include/qt/QtWidgets/qtableview.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qlowenergycontroller_osx_p.h\', \'include/qt/QtGui/QAccessibleStateChangeEvent\', \'lib/cmake/Qt5Quick/Qt5QuickConfig.cmake\', \'include/qt/QtCore/QPluginLoader\', \'include/qt/QtPlatformHeaders/QWGLNativeContext\', \'lib/libQt5WebSockets.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtemplatepattern_p.h\', \'include/qt/QtSql/QSqlResult\', \'include/qt/QtGui/5.6.2/QtGui/private/qdistancefield_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qiconloader_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvariableloader_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglgradientcache_p.h\', \'bin/qmlprofiler\', \'doc/global/template/images/ico_note_attention.png\', \'include/qt/QtDBus/QDBusVirtualObject\', \'include/qt/QtCore/qcryptographichash.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qsearchable_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qftp_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qdeclarativevideooutput_p.h\', \'include/qt/QtCore/QMapIterator\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbuiltinatomictype_p.h\', \'include/qt/QtCore/qtranslator.h\', \'include/qt/QtWidgets/QAccessibleWidget\', \'include/qt/QtBluetooth/QBluetoothAddress\', \'include/qt/QtCore/QAbstractTableModel\', \'mkspecs/features/qt_build_config.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenericnamespaceresolver_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4alloca_p.h\', \'include/qt/QtWebSockets/qwebsockets_global.h\', \'mkspecs/modules/qt_lib_scripttools_private.pri\', \'include/qt/QtDesigner/abstractpromotioninterface.h\', \'mkspecs/unixware-g++/qplatformdefs.h\', \'translations/designer_ko.qm\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickimage_p.h\', \'include/qt/QtGui/qopenglfunctions_4_5_core.h\', \'include/qt/QtWidgets/QStyleOptionTabBarBaseV2\', \'qml/QtGraphicalEffects/LinearGradient.qml\', \'include/qt/QtGui/qopenglfunctions_2_0.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgesture_p.h\', \'include/qt/QtGui/QAccessibleValueChangeEvent\', \'include/qt/QtGui/QTextFragment\', \'include/qt/QtCore/QArrayData\', \'include/qt/QtGui/QtGuiVersion\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformclipboard.h\', \'include/qt/QtWidgets/QAbstractScrollArea\', \'include/qt/QtWebChannel/QtWebChannelDepends\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktext_p_p.h\', \'include/qt/QtCore/qcommandlineparser.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4instr_moth_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quntypedatomic_p.h\', \'include/qt/QtMultimedia/qvideowindowcontrol.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessdebugpipebackend_p.h\', \'include/qt/QtGui/qmatrix.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qvideosurfaceoutput_p.h\', \'include/qt/QtPrintSupport/QPrintDialog\', \'include/qt/QtCore/QStringListModel\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickshadereffectnode_p.h\', \'doc/global/template/images/Qt-header-bg.jpg\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgstyle_p.h\', \'include/qt/QtGui/QTextLength\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qpointervaluepair_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qssl_p.h\', \'mkspecs/features/cmake_functions.prf\', \'include/qt/QtWidgets/qdirmodel.h\', \'qml/QtQuick/LocalStorage/qmldir\', \'lib/libQt5Test.so.5.6.2\', \'include/qt/QtCore/QObjectUserData\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlabel_p.h\', \'lib/cmake/Qt5Widgets/Qt5WidgetsConfigVersion.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticnamespacecontext_p.h\', \'mkspecs/linux-icc-32/qplatformdefs.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickfriction_p.h\', \'qml/QtGraphicalEffects/private/libqtgraphicaleffectsprivate.so\', \'lib/cmake/Qt5Qml/Qt5Qml_QQmlInspectorServiceFactory.cmake\', \'include/qt/QtCore/QRegularExpressionMatch\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p.h\', \'include/qt/QtWebChannel/QWebChannelAbstractTransport\', \'include/qt/QtGui/QOpenGLFunctions_3_2_Core\', \'include/qt/QtCore/QDate\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglengineshadermanager_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/TextFieldStyle.qml\', \'include/qt/QtWidgets/QPinchGesture\', \'translations/qtbase_pl.qm\', \'mkspecs/solaris-cc-stlport/qplatformdefs.h\', \'include/qt/QtWidgets/QStyleOptionSpinBox\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomictype_p.h\', \'phrasebooks/spanish.qph\', \'include/qt/QtWidgets/QMouseEventTransition\', \'include/qt/QtGui/QAccessibleTableCellInterface\', \'include/qt/QtWidgets/QGroupBox\', \'lib/libQt5Gui.la\', \'doc/global/template/images/breadcrumb.png\', \'include/qt/QtGui/QWheelEvent\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4lookup_p.h\', \'include/qt/QtBluetooth/QLowEnergyDescriptor\', \'include/qt/QtWebKit/QWebElementCollection\', \'include/qt/QtQml/5.6.2/QtQml/private/qsequentialanimationgroupjob_p.h\', \'include/qt/QtCore/qatomic_armv5.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qabstractanimationjob_p.h\', \'include/qt/QtGui/QOpenGLFunctions_4_3_Compatibility\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/textbuilder_p.h\', \'include/qt/QtCore/qlist.h\', \'include/qt/QtQml/qjsvalue.h\', \'phrasebooks/norwegian.qph\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlproperty_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qabstractprotocolhandler_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdalternative_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamerbufferprobe_p.h\', \'lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfigVersion.cmake\', \'include/qt/QtMultimedia/QAudioBuffer\', \'include/qt/QtNetwork/qsslpresharedkeyauthenticator.h\', \'include/qt/QtCore/qfactoryinterface.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickimageparticle_p.h\', \'include/qt/QtMultimedia/qcameraviewfindersettings.h\', \'include/qt/QtSql/QSqlDatabase\', \'qml/QtGraphicalEffects/RadialGradient.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qreferencecountedvalue_p.h\', \'include/qt/QtCore/qvarlengtharray.h\', \'include/qt/QtPlatformHeaders/QXcbIntegrationFunctions\', \'include/qt/QtSvg/QSvgWidget\', \'include/qt/QtDesigner/abstractformbuilder.h\', \'include/qt/QtCore/qpropertyanimation.h\', \'mkspecs/macx-ios-clang/features/sdk.prf\', \'mkspecs/linux-pgcc/qplatformdefs.h\', \'translations/qmlviewer_en.qm\', \'qml/QtQuick/Controls/Styles/Base/ButtonStyle.qml\', \'include/qt/QtWebKit/QWebHistory\', \'mkspecs/common/linux.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcombinenodes_p.h\', \'include/qt/QtMultimedia/QAudioSystemFactoryInterface\', \'mkspecs/unsupported/nacl64-g++/qmake.conf\', \'include/qt/QtCore/5.6.2/QtCore/private/qfsfileengine_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccomparatorlocator_p.h\', \'mkspecs/macx-ios-clang/ios_devices.pl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qduration_p.h\', \'include/qt/QtMultimedia/qmediaplayer.h\', \'mkspecs/features/qml_module.prf\', \'mkspecs/features/win32/console.prf\', \'qml/QtQuick/Controls/Private/ColumnMenuContent.qml\', \'include/qt/QtNfc/QNdefNfcIconRecord\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusinterface_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdate_p.h\', \'mkspecs/common/clang.conf\', \'include/qt/QtMultimediaWidgets/qtmultimediawidgetdefs.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qjpeghandler_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothaddress_p.h\', \'include/qt/QtCore/QItemSelectionRange\', \'include/qt/QtMultimedia/qcameracontrol.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsimd_p.h\', \'bin/qlalr\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_agent_p.h\', \'include/qt/QtPrintSupport/QPrintPreviewWidget\', \'mkspecs/modules/qt_lib_websockets.pri\', \'include/qt/QtHelp/QtHelp\', \'include/qt/QtConcurrent/QtConcurrentVersion\', \'include/qt/QtGui/qopenglwindow.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformbackingstore.h\', \'mkspecs/features/win32/openvg.prf\', \'translations/designer_sk.qm\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformtheme.h\', \'qml/QtQuick/Controls/Private/AbstractCheckable.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qparsercontext_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4regexpobject_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qaccessiblequickitem_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediastoragelocation_p.h\', \'include/qt/QtGui/qvector2d.h\', \'lib/cmake/Qt5Network/Qt5Network_QGenericEnginePlugin.cmake\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickrectangleextruder_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistcompositor_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qppsattributeprivate_p.h\', \'translations/qtbase_sk.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4isel_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlistwidget_p.h\', \'lib/pkgconfig/Qt5UiTools.pc\', \'include/qt/QtDesigner/QDesignerDynamicPropertySheetExtension\', \'include/qt/QtDesigner/layoutdecoration.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qwindowsguieventdispatcher_p.h\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbus_symbols_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QEvdevTabletPlugin.cmake\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/spacer_widget_p.h\', \'lib/cmake/Qt5WebSockets/Qt5WebSocketsConfigVersion.cmake\', \'qml/QtQuick/Controls/Styles/Desktop/RadioButtonStyle.qml\', \'lib/libQt5XcbQpa.so.5.6.2\', \'include/qt/QtCore/QJsonValueRefPtr\', \'lib/cmake/Qt5ScriptTools/Qt5ScriptToolsConfig.cmake\', \'mkspecs/modules/qt_lib_quickparticles_private.pri\', \'include/qt/QtMultimedia/qmediastreamscontrol.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothtransferrequest_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qquerytransformparser_p.h\', \'translations/qt_lt.qm\', \'qml/QtQuick/Controls/Styles/Base/images/focusframe.png\', \'include/qt/QtMultimedia/qaudiooutput.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlvaluetype_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/button_down.png\', \'include/qt/QtCore/QFileSelector\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkproxy_p.h\', \'mkspecs/common/c89/qplatformdefs.h\', \'include/qt/QtWebKit/QWebSelectMethod\', \'include/qt/QtDesigner/QDesignerPropertySheetExtension\', \'include/qt/QtWidgets/qmenubar.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qrangeiterator_p.h\', \'plugins/imageformats/libqjpeg.so\', \'include/qt/QtNetwork/QUdpSocket\', \'include/qt/QtBluetooth/qbluetoothsocket.h\', \'include/qt/QtCore/QStringBuilder\', \'include/qt/QtDBus/qdbuspendingcall.h\', \'qml/QtWebChannel/qmldir\', \'lib/cmake/Qt5OpenGLExtensions/Qt5OpenGLExtensionsConfig.cmake\', \'include/qt/QtWidgets/QTapGesture\', \'mkspecs/win32-g++/qmake.conf\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvghandler_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpagedpaintdevice_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdevicediscovery_static_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qjsonparser_p.h\', \'include/qt/QtGui/QFontMetricsF\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_p.h\', \'mkspecs/winrt-x86-msvc2015/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcalltargetdescription_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/propertylineedit_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglframebufferobject_p.h\', \'lib/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfig.cmake\', \'mkspecs/features/resolve_target.prf\', \'bin/qmlplugindump\', \'include/qt/QtXml/qtxmlglobal.h\', \'qml/QtQuick/Controls/Styles/Base/CheckBoxStyle.qml\', \'mkspecs/common/bsd/bsd.conf\', \'include/qt/QtDesigner/abstractobjectinspector.h\', \'include/qt/QtWidgets/QStyleOptionButton\', \'mkspecs/features/qt_plugin.prf\', \'mkspecs/macx-ios-clang/features/testcase.prf\', \'include/qt/QtMultimedia/qmetadatareadercontrol.h\', \'include/qt/QtPlatformHeaders/QGLXNativeContext\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickdirection_p.h\', \'include/qt/QtQuick/qsgtextureprovider.h\', \'include/qt/QtNetwork/qnetworkdiskcache.h\', \'include/qt/QtGui/QOpenGLFunctions_4_4_Compatibility\', \'include/qt/QtOpenGLExtensions/QtOpenGLExtensionsVersion\', \'include/qt/QtGui/QAbstractTextDocumentLayout\', \'lib/cmake/Qt5Xml/Qt5XmlConfigVersion.cmake\', \'mkspecs/aix-g++/qmake.conf\', \'translations/qtlocation_uk.qm\', \'include/qt/QtWidgets/qcolormap.h\', \'mkspecs/macx-ios-clang/Default-568h@2x.png\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qgenericunixeventdispatcher_p.h\', \'include/qt/QtQml/QJSValueIterator\', \'include/qt/QtCore/QTranslator\', \'include/qt/QtMultimedia/QMediaServiceProviderHint\', \'include/qt/QtGui/5.6.2/QtGui/private/qimage_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/plugindialog_p.h\', \'include/qt/QtXmlPatterns/QtXmlPatternsVersion\', \'include/qt/QtCore/qabstracttransition.h\', \'translations/qtconfig_zh_CN.qm\', \'qml/QtQuick/Controls/Private/TextSingleton.qml\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qpixmapfilter_p.h\', \'include/qt/QtGui/qopenglfunctions_3_3_compatibility.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qnativeimage_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qgenericunixfontdatabase_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupportmetainfo_p.h\', \'include/qt/QtCore/QSetIterator\', \'doc/global/template/images/bgrContent.png\', \'plugins/generic/libqevdevtouchplugin.so\', \'lib/cmake/Qt5Gui/Qt5Gui_QWebpPlugin.cmake\', \'include/qt/QtCore/QAtomicPointer\', \'include/qt/QtCore/QMetaObject\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexpressionvariablereference_p.h\', \'include/qt/QtCore/qregexp.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qquickpackage_p.h\', \'include/qt/QtCore/qconfig-nacl.h\', \'include/qt/QtWebSockets/qwebsocketcorsauthenticator.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtokensource_p.h\', \'include/qt/QtSql/qsqldriver.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunioniterator_p.h\', \'include/qt/QtCore/QAbstractItemModel\', \'include/qt/QtCore/5.6.2/QtCore/private/qfutureinterface_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/slider-handle.png\', \'translations/qtquick1_de.qm\', \'translations/qmlviewer_he.qm\', \'include/qt/QtNetwork/qnetworkcookiejar.h\', \'include/qt/QtGui/QDoubleValidator\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qlibinputtouch_p.h\', \'include/qt/QtWidgets/qtablewidget.h\', \'mkspecs/common/g++-base.conf\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintengine_blitter_p.h\', \'phrasebooks/japanese.qph\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickclipnode_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmacstyle_mac_p_p.h\', \'include/qt/QtGui/qopenglbuffer.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_glib_p.h\', \'translations/designer_ja.qm\', \'include/qt/QtMultimedia/QMediaTimeRange\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctionargument_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QJpegPlugin.cmake\', \'include/qt/QtWidgets/QFocusFrame\', \'qml/QtQuick/Controls/Styles/Desktop/CheckBoxStyle.qml\', \'include/qt/QtWidgets/QGraphicsScene\', \'include/qt/QtXmlPatterns/QSimpleXmlNodeModel\', \'include/qt/QtMultimedia/qmediacontent.h\', \'include/qt/QtMultimedia/QVideoWindowControl\', \'mkspecs/common/winrt_winphone/manifests/8.1/AppxManifest.xml.in\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltimer_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptbreakpointswidget_p.h\', \'lib/cmake/Qt5UiPlugin/Qt5UiPluginConfigVersion.cmake\', \'include/qt/QtCore/5.6.2/QtCore/private/qjsonwriter_p.h\', \'include/qt/QtWidgets/qgesture.h\', \'include/qt/QtMultimedia/QAudioEncoderSettings\', \'include/qt/QtSql/QSql\', \'include/qt/QtGui/5.6.2/QtGui/private/qpolygonclipper_p.h\', \'include/qt/QtNetwork/QAbstractSocket\', \'include/qt/QtWidgets/QGesture\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4isel_util_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qdatastream_p.h\', \'mkspecs/features/include_source_dir.prf\', \'include/qt/QtQml/QQmlExtensionInterface\', \'include/qt/QtPrintSupport/qpagesetupdialog.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfirstitempredicate_p.h\', \'mkspecs/devices/linux-rasp-pi-g++/qmake.conf\', \'mkspecs/win32-msvc2008/qmake.conf\', \'include/qt/QtCore/QMarginsF\', \'include/qt/QtWebKitWidgets/QWebView\', \'include/qt/QtGui/QOpenGLWindow\', \'include/qt/QtQml/QQmlFile\', \'include/qt/QtWidgets/QMainWindow\', \'translations/assistant_sk.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideoprobecontrol_p.h\', \'include/qt/QtCore/qtimezone.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlbuiltinfunctions_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_menubar_p.h\', \'include/qt/QtCore/QXmlStreamNamespaceDeclaration\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptengineagent_p.h\', \'include/qt/QtCore/QStaticByteArrayData\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusintegrator_p.h\', \'include/qt/QtOpenGL/qglbuffer.h\', \'mkspecs/macx-clang/Info.plist.app\', \'qml/QtTest/qmldir\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtagtype2_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_toolbar_p.h\', \'lib/libQt5MultimediaWidgets.so\', \'include/qt/QtQml/QQmlFileSelector\', \'include/qt/QtWidgets/QKeyEventTransition\', \'translations/qtconnectivity_de.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qparallelanimationgroup_p.h\', \'include/qt/QtWebChannel/qqmlwebchannel.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qrawfont_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qsidebar_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsglobal_p.h\', \'include/qt/QtWebKit/qwebkitplatformplugin.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsjiscodec_p.h\', \'include/qt/QtGui/QOpenGLFunctions_3_1\', \'include/qt/QtGui/QOpenGLFunctions_3_0\', \'include/qt/QtWidgets/QGraphicsColorizeEffect\', \'qml/QtQuick/Controls/Private/BasicButton.qml\', \'include/qt/QtCore/QThreadStorage\', \'include/qt/QtQuick/QSGTextureMaterial\', \'include/qt/QtMultimedia/QImageEncoderSettings\', \'include/qt/QtNetwork/QtNetworkVersion\', \'include/qt/QtWidgets/qframe.h\', \'lib/libQt5Qml.so.5.6\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qwindowsysteminterface.h\', \'include/qt/QtGui/qpdfwriter.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformservices.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslsocket_mac_p.h\', \'qml/QtQuick/XmlListModel/libqmlxmllistmodelplugin.so\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qlayout_widget_p.h\', \'mkspecs/modules/qt_lib_nfc.pri\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgcontextplugin_p.h\', \'include/qt/QtTest/qbenchmark.h\', \'mkspecs/modules/qt_lib_gui.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractxmlforwarditerator_p.h\', \'include/qt/QtCore/QSystemSemaphore\', \'include/qt/QtDesigner/QDesignerLayoutDecorationExtension\', \'include/qt/QtCore/5.6.2/QtCore/private/qwindowspipewriter_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothserver_p.h\', \'include/qt/QtCore/QResource\', \'include/qt/QtCore/QTextStream\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlvaluetypeproxybinding_p.h\', \'include/qt/QtGui/qrasterwindow.h\', \'include/qt/QtWebKit/QWebHapticFeedbackPlayer\', \'include/qt/QtSql/QSqlDriverCreator\', \'mkspecs/common/qcc-base-qnx-x86.conf\', \'mkspecs/wince60standard-armv4i-msvc2005/qmake.conf\', \'include/qt/QtCore/qversionnumber.h\', \'include/qt/QtXmlPatterns/qxmlnamepool.h\', \'include/qt/QtWidgets/qkeyeventtransition.h\', \'qml/QtGraphicalEffects/Desaturate.qml\', \'include/qt/QtMultimedia/QAbstractAudioInput\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4mathobject_p.h\', \'mkspecs/common/unix.conf\', \'include/qt/QtGui/qtextformat.h\', \'include/qt/QtGui/QImageReader\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtabbar_p.h\', \'lib/libQt5Help.so.5.6.2\', \'translations/qt_zh_TW.qm\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindexwriter_default_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qaccessiblewidgetfactory_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgcontext_p.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmarkevent_p.h\', \'include/qt/QtWebKit/QWebSelectData\', \'translations/assistant_hu.qm\', \'translations/qt_gl.qm\', \'include/qt/QtXml/QDomText\', \'translations/linguist_uk.qm\', \'mkspecs/features/dbuscommon.pri\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcommonstylepixmaps_p.h\', \'include/qt/QtCore/qthread.h\', \'include/qt/QtNfc/QNearFieldManager\', \'qml/QtGraphicalEffects/private/GaussianGlow.qml\', \'include/qt/QtCore/QByteRef\', \'include/qt/QtTest/5.6.2/QtTest/private/qxmltestlogger_p.h\', \'include/qt/QtBluetooth/QLowEnergyController\', \'include/qt/QtMultimedia/qcameraimagecapture.h\', \'include/qt/QtXmlPatterns/qxmlname.h\', \'include/qt/QtNetwork/QNetworkProxyQuery\', \'include/qt/QtMultimedia/QCameraLocksControl\', \'include/qt/QtGui/qtguiversion.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qprocess_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qitemtype_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtdeviceinquiry_p.h\', \'include/qt/QtScript/qscriptengineagent.h\', \'include/qt/QtCore/QWriteLocker\', \'include/qt/QtCore/QStack\', \'include/qt/QtNetwork/qdnslookup.h\', \'translations/qtbase_it.qm\', \'include/qt/QtCore/QStringDataPtr\', \'mkspecs/macx-g++-32/Info.plist.lib\', \'plugins/imageformats/libqtiff.so\', \'include/qt/QtQuick/QSGBasicGeometryNode\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticlegroup_p.h\', \'include/qt/QtCore/qstate.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4compileddata_p.h\', \'include/qt/QtDesigner/abstractformeditorplugin.h\', \'qml/QtQuick/Controls/Styles/Base/BasicTableViewStyle.qml\', \'include/qt/QtGui/QGenericMatrix\', \'include/qt/QtWebKit/QWebTouchModifier\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessfilebackend_p.h\', \'include/qt/QtCore/QAtomicInt\', \'include/qt/QtMultimedia/qmediaobject.h\', \'translations/qtconfig_ko.qm\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetresizehandler_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstvideorendererplugin_p.h\', \'include/qt/QtConcurrent/qtconcurrent_global.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptstring_p.h\', \'include/qt/QtOpenGL/QGLFramebufferObjectFormat\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/resourcebuilder_p.h\', \'translations/qt_zh_CN.qm\', \'include/qt/QtNfc/5.6.2/QtNfc/private/androidjninfc_p.h\', \'include/qt/QtCore/qwaitcondition.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimeprovider_p.h\', \'include/qt/QtWidgets/QDialogButtonBox\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslcertificateextension_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdattributeuse_p.h\', \'translations/qtwebengine_en.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4booleanobject_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugserviceinterfaces_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocketframe_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmltypecompiler_p.h\', \'include/qt/QtGui/QGenericPlugin\', \'doc/global/template/style/theqtcompany.png\', \'mkspecs/macx-g++/Info.plist.app\', \'mkspecs/modules/qt_lib_quickwidgets.pri\', \'qml/QtQuick/Controls/Styles/Desktop/ComboBoxStyle.qml\', \'lib/libQt5WebKit.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctionfactory_p.h\', \'include/qt/QtNetwork/QSslSocket\', \'include/qt/QtCore/QSysInfo\', \'translations/qtquick1_he.qm\', \'include/qt/QtMultimedia/QAbstractVideoFilter\', \'lib/cmake/Qt5Concurrent/Qt5ConcurrentConfig.cmake\', \'include/qt/QtUiPlugin/QtUiPlugin\', \'include/qt/QtCore/qobject_impl.h\', \'include/qt/QtBluetooth/qbluetoothaddress.h\', \'include/qt/QtQuick/QSGTextureProvider\', \'lib/libQt5Designer.so.5.6.2\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktransitionmanager_p_p.h\', \'mkspecs/features/xctest.prf\', \'mkspecs/features/resources.prf\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkreplyimpl_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistwrapper_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommand_p_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsmobilestyle_p.h\', \'include/qt/QtNfc/qndeffilter.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qshapedpixmapdndwindow_p.h\', \'include/qt/QtCore/QtNumeric\', \'translations/qtscript_it.qm\', \'mkspecs/hpux-g++/qplatformdefs.h\', \'qml/QtQuick/Particles.2/qmldir\', \'include/qt/QtGui/QSyntaxHighlighter\', \'mkspecs/unsupported/android-g++/qeglfshooks_surfaceflinger.cpp\', \'include/qt/QtCore/5.6.2/QtCore/private/qdataurl_p.h\', \'include/qt/QtUiTools/QUiLoader\', \'translations/qtquick1_hu.qm\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugservicefactory_p.h\', \'qml/QtQuick/Controls/SpinBox.qml\', \'qml/QtQuick/Extras/qmldir\', \'include/qt/QtQml/QQmlExpression\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistmodelworkeragent_p.h\', \'mkspecs/qnx-armle-v7-qcc/qplatformdefs.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsignaleventgenerator_p.h\', \'mkspecs/devices/linux-arm-trident-pnx8473-g++/qmake.conf\', \'include/qt/QtTest/qtestspontaneevent.h\', \'translations/qtscript_fr.qm\', \'include/qt/QtCore/qchar.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsmemorypool_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qsoundeffect_pulse_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpnetworkrequest_p.h\', \'qml/QtGraphicalEffects/HueSaturation.qml\', \'include/qt/QtCore/QTimerEvent\', \'qml/QtQuick/Window.2/plugins.qmltypes\', \'mkspecs/features/mac/default_post.prf\', \'include/qt/QtGui/QImageIOHandler\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtconnectionmonitor_p.h\', \'include/qt/QtXmlPatterns/QXmlQuery\', \'include/qt/QtQml/qqmllist.h\', \'include/qt/QtQml/QQmlAttachedPropertiesFunc\', \'qml/QtQuick/Controls/Styles/Base/CircularGaugeStyle.qml\', \'mkspecs/unsupported/linux-scratchbox2-g++/qplatformdefs.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickgravity_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcontext2dtile_p.h\', \'include/qt/QtGui/qpagesize.h\', \'include/qt/QtGui/QSurfaceFormat\', \'include/qt/QtXmlPatterns/qtxmlpatternsglobal.h\', \'include/qt/QtGui/qbitmap.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtobexsession_p.h\', \'include/qt/QtScript/QScriptEngineAgent\', \'mkspecs/features/qt_targets.prf\', \'include/qt/QtWidgets/QToolButton\', \'qml/QtQuick/Controls/Private/Style.qml\', \'qml/QtQuick/Controls/Styles/Desktop/ToolBarStyle.qml\', \'include/qt/QtGui/QAccessibleTextSelectionEvent\', \'lib/pkgconfig/Qt5XmlPatterns.pc\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusconnection_p.h\', \'include/qt/QtCore/QSequentialAnimationGroup\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlinstantiator_p.h\', \'lib/libQt5Sql.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractxmlpullprovider_p.h\', \'qml/QtQuick/Controls/Calendar.qml\', \'include/qt/QtCore/QMapDataBase\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothtransferreply_p.h\', \'include/qt/QtDesigner/QDesignerWidgetDataBaseInterface\', \'qml/QtQuick/Controls/Styles/Base/ToggleButtonStyle.qml\', \'include/qt/QtNetwork/QLocalSocket\', \'mkspecs/sco-g++/qmake.conf\', \'plugins/platforminputcontexts/libcomposeplatforminputcontextplugin.so\', \'qml/QtQuick/Controls/Private/qmldir\', \'include/qt/QtTest/qtest_widgets.h\', \'mkspecs/macx-ios-clang/features/default_pre.prf\', \'lib/cmake/Qt5Network/Qt5Network_QConnmanEnginePlugin.cmake\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldirparser_p.h\', \'include/qt/QtCore/QVariantAnimation\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenerateidfn_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qeuckrcodec_p.h\', \'mkspecs/unsupported/linux-scratchbox2-g++/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticcompatibilitycontext_p.h\', \'include/qt/QtCLucene/QtCLucene\', \'include/qt/QtQml/qqmlproperty.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qlowenergycontroller_p.h\', \'include/qt/QtGui/QTextBlockUserData\', \'qml/QtQml/StateMachine/libqtqmlstatemachine.so\', \'qml/QtQuick/Controls/libqtquickcontrolsplugin.so\', \'include/qt/QtMultimedia/QCameraZoomControl\', \'include/qt/QtCore/QMetaEnum\', \'include/qt/QtCore/QCharRef\', \'mkspecs/linux-clang-libc++/qmake.conf\', \'include/qt/QtMultimedia/qaudio.h\', \'include/qt/QtDesigner/QDesignerWidgetDataBaseItemInterface\', \'lib/libQt5Script.so.5.6.2\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmacgesturerecognizer_p.h\', \'qml/Qt/WebSockets/qmldir\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlprofilerdefinitions_p.h\', \'translations/qt_da.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qlayoutpolicy_p.h\', \'include/qt/QtCore/qcontainerfwd.h\', \'include/qt/QtWidgets/QGraphicsLineItem\', \'include/qt/QtMultimedia/QMediaResource\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_promotion_p.h\', \'mkspecs/linux-cxx/qplatformdefs.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qhashedstring_p.h\', \'translations/qtbase_de.qm\', \'qml/QtQuick/Controls/ApplicationWindow.qml\', \'include/qt/QtCore/qatomic_msvc.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4arraybuffer_p.h\', \'lib/libQt5WebKit.so.5.6\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevkeyboard_defaultmap_p.h\', \'include/qt/QtCore/qsortfilterproxymodel.h\', \'include/qt/QtConcurrent/qtconcurrentmap.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsystempropertyfn_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamespaceresolver_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/abstractdialoggui_p.h\', \'include/qt/QtCore/QFuture\', \'lib/libQt5MultimediaWidgets.la\', \'mkspecs/modules/qt_lib_network_private.pri\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qclucene-config_p.h\', \'include/qt/QtDBus/QDBusUnixFileDescriptor\', \'include/qt/QtQuick/qsgmaterial.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomicmathematicians_p.h\', \'include/qt/QtCore/qalgorithms.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscripterrorlogwidgetinterface_p_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpserver_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpserver_simulator_p.h\', \'mkspecs/hpux-g++-64/qplatformdefs.h\', \'include/qt/QtCore/QMutableLinkedListIterator\', \'include/qt/QtGui/qwindow.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdapplicationinformation_p.h\', \'include/qt/QtScriptTools/QtScriptToolsDepends\', \'include/qt/QtGui/qpictureformatplugin.h\', \'mkspecs/win32-msvc2010/qplatformdefs.h\', \'doc/global/html-config.qdocconf\', \'include/qt/QtCore/QByteArrayDataPtr\', \'mkspecs/modules/qt_lib_webchannel_private.pri\', \'translations/qtbase_hu.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qmetaobject_moc_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexpressionsequence_p.h\', \'include/qt/QtQuickWidgets/qtquickwidgetsglobal.h\', \'lib/libQt5Gui.prl\', \'include/qt/QtMultimedia/qcamerafocuscontrol.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptstaticscopeobject_p.h\', \'include/qt/QtWebKitWidgets/5.6.2/QtWebKitWidgets/private/qwebviewaccessible_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qtextstream_p.h\', \'include/qt/QtWidgets/QGraphicsItem\', \'include/qt/QtCore/5.6.2/QtCore/private/qharfbuzz_p.h\', \'translations/qmlviewer_fr.qm\', \'include/qt/QtQuickTest/5.6.2/QtQuickTest/private/quicktestresult_p.h\', \'include/qt/QtCore/qdiriterator.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4property_p.h\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindex_default_p.h\', \'mkspecs/features/win32/qt_dll.prf\', \'lib/pkgconfig/Qt5Xml.pc\', \'qml/QtQuick/Controls/Styles/Base/CircularButtonStyle.qml\', \'mkspecs/aix-xlc-64/qmake.conf\', \'include/qt/QtSql/QSqlDriverCreatorBase\', \'include/qt/QtCore/QAbstractNativeEventFilter\', \'include/qt/QtMultimedia/qcamerafeedbackcontrol.h\', \'include/qt/QtGui/QRawFont\', \'doc/global/template/style/icomoon.svg\', \'include/qt/QtNetwork/qnetworkconfigmanager.h\', \'include/qt/QtDBus/qdbuserror.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qicucodec_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevmousemanager_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptcontext_p.h\', \'mkspecs/features/qt_common.prf\', \'include/qt/QtWebKit/QtWebKit\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworksession_p.h\', \'include/qt/QtSql/QSqlError\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessmanager_p.h\', \'include/qt/QtGui/qpainter.h\', \'include/qt/QtMultimedia/qcameraimageprocessingcontrol.h\', \'include/qt/QtWidgets/QSpacerItem\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsvistastyle_p_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qgenericunixservices_p.h\', \'include/qt/QtWidgets/QGraphicsEffect\', \'mkspecs/devices/linux-imx6-g++/qmake.conf\', \'include/qt/QtDesignerComponents/QtDesignerComponents\', \'mkspecs/modules/qt_lib_xml_private.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtypeavailablefn_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/application_p.h\', \'plugins/sqldrivers/libqsqlite.so\', \'include/qt/QtCore/QScopedPointerObjectDeleteLater\', \'qml/Qt/labs/settings/plugins.qmltypes\', \'translations/qtscript_uk.qm\', \'include/qt/QtMultimedia/QCameraImageCapture\', \'include/qt/QtDBus/qdbuscontext.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtledeviceinquiry_p.h\', \'mkspecs/aix-xlc/qmake.conf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmacstyle_mac_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qsessionmanager_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qdatetimeedit_p.h\', \'include/qt/QtMultimedia/QVideoProbe\', \'qml/QtQuick/Extras/designer/PieMenuSpecifics.qml\', \'include/qt/QtWidgets/QTableWidget\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/formbuilderextra_p.h\', \'include/qt/QtCore/QTextStreamManipulator\', \'include/qt/QtHelp/QHelpEngine\', \'include/qt/QtGui/QPageSize\', \'mkspecs/features/unix/thread.prf\', \'doc/global/config.qdocconf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdnotation_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/simplewidgets_p.h\', \'include/qt/QtMultimedia/QMediaPlayer\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4object_p.h\', \'include/qt/QtHelp/qhelpcontentwidget.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtservicerecord_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcontext_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetbackingstore_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtl2capchannel_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qauthenticator_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/scrollbar-handle-transient.png\', \'doc/global/compat.qdocconf\', \'lib/libQt5DBus.so.5.6.2\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdevicediscovery_udev_p.h\', \'lib/libQt5Sql.so\', \'translations/linguist_zh_TW.qm\', \'mkspecs/macx-g++-32/qplatformdefs.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qterm_p.h\', \'include/qt/QtSql/qtsqlversion.h\', \'include/qt/QtMultimedia/QVideoFilterRunnable\', \'include/qt/QtCore/qatomic_x86.h\', \'lib/libQt5Xml.so.5.6.2\', \'include/qt/QtDesigner/QDesignerResourceBrowserInterface\', \'include/qt/QtWidgets/qshortcut.h\', \'lib/libQt5DesignerComponents.prl\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptvalue_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglpaintdevice_p.h\', \'translations/qt_help_hu.qm\', \'mkspecs/features/dbusadaptors.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpatternistlocale_p.h\', \'include/qt/QtDBus/QtDBusDepends\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsole_p.h\', \'lib/libQt5OpenGL.so.5.6.2\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschematypefactory_p.h\', \'bin/lrelease\', \'include/qt/QtScript/qscriptstring.h\', \'include/qt/QtDesigner/QDesignerFormWindowCursorInterface\', \'lib/libQt5Nfc.so.5.6\', \'include/qt/QtMultimedia/QAudioOutputSelectorControl\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprintdevice_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgday_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/morphmenu_p.h\', \'include/qt/QtGui/qopenglfunctions_1_3.h\', \'lib/libQt5PrintSupport.so.5.6.2\', \'include/qt/QtXml/QXmlLocator\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebelement_p.h\', \'mkspecs/tru64-g++/qplatformdefs.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qwinoverlappedionotifier_p.h\', \'include/qt/QtQml/qqmlpropertyvaluesource.h\', \'include/qt/QtWidgets/QSplitter\', \'translations/qmlviewer_pl.qm\', \'include/qt/QtCore/QAbstractEventDispatcher\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprinter_p.h\', \'include/qt/QtCore/QMutableListIterator\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmultimediautils_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemsmodule_p.h\', \'include/qt/QtGui/qopenglfunctions_3_0.h\', \'bin/qmlscene\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqltablemodel_p.h\', \'mkspecs/features/qt_parts.prf\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldsharemanagerimpl_p.h\', \'mkspecs/devices/linux-arm-amlogic-8726M-g++/qplatformdefs.h\', \'include/qt/QtNetwork/qlocalserver.h\', \'include/qt/QtWidgets/QDesktopWidget\', \'include/qt/QtCore/QTemporaryDir\', \'mkspecs/modules/qt_lib_sql_private.pri\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickshadereffect_p.h\', \'include/qt/QtDesigner/QDesignerTaskMenuExtension\', \'lib/libQt5DBus.so\', \'doc/global/template/style/list_expand.png\', \'lib/cmake/Qt5Sql/Qt5SqlConfig.cmake\', \'include/qt/QtCore/qconfig-small.h\', \'include/qt/QtWidgets/QMdiSubWindow\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlobjectcreator_p.h\', \'mkspecs/win32-g++/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstatechangescript_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qtresourcemodel_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlchangeset_p.h\', \'include/qt/QtWidgets/QStackedLayout\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4engine_p.h\', \'include/qt/QtNetwork/qsslellipticcurve.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4value_p.h\', \'translations/qt_help_zh_TW.qm\', \'include/qt/QtPlatformSupport/QtPlatformSupportVersion\', \'include/qt/QtXmlPatterns/QXmlNodeModelIndex\', \'include/qt/QtWidgets/qitemeditorfactory.h\', \'include/qt/QtWidgets/QGraphicsProxyWidget\', \'phrasebooks/italian.qph\', \'qml/QtQuick/Controls/Private/StackViewSlideDelegate.qml\', \'include/qt/QtQuick/QSGSimpleTextureNode\', \'mkspecs/common/linux-android.conf\', \'include/qt/QtCore/qstringlist.h\', \'doc/global/template/images/Qt-footer_shadow.png\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4sparsearray_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qlocale_tools_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qdatabuffer_p.h\', \'lib/pkgconfig/Qt5MultimediaWidgets.pc\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultrectanglenode_p.h\', \'include/qt/QtCore/QEasingCurve\', \'include/qt/QtUiPlugin/QtUiPluginVersion\', \'include/qt/QtDBus/QDBusConnection\', \'include/qt/QtCore/QMap\', \'include/qt/QtCore/QMetaMethod\', \'include/qt/QtOpenGLExtensions/qtopenglextensionsversion.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_tds_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qboolean_p.h\', \'include/qt/QtPrintSupport/QtPrintSupportVersion\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickellipseextruder_p.h\', \'mkspecs/features/testlib_defines.prf\', \'include/qt/QtMultimedia/QSound\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbuiltinnodetype_p.h\', \'include/qt/QtQml/QQmlError\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccomparatorlocators_p.h\', \'include/qt/QtNfc/QNdefMessage\', \'include/qt/QtMultimediaWidgets/qcameraviewfinder.h\', \'include/qt/QtCore/QMimeType\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_client1_bluez5_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemaresolver_p.h\', \'include/qt/QtPlatformHeaders/qplatformheaderhelper.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsduserschematype_tpl_p.h\', \'mkspecs/qnx-aarch64le-qcc/qmake.conf\', \'qml/QtWebSockets/qmldir\', \'include/qt/QtGui/QOpenGLFunctions_4_5_Core\', \'include/qt/QtGui/qtextlist.h\', \'include/qt/QtPlatformHeaders/QCocoaWindowFunctions\', \'mkspecs/features/winrt/console.prf\', \'include/qt/QtScript/QScriptString\', \'include/qt/QtWidgets/qfocusframe.h\', \'include/qt/QtCore/QModelIndexList\', \'include/qt/QtDesigner/QExtensionFactory\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qhashedstring_p.h\', \'doc/global/template/images/feedbackground.png\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemacontext_p.h\', \'include/qt/QtMultimedia/QAudioInput\', \'qml/QtQuick/Dialogs/qmldir\', \'include/qt/QtGui/QDrag\', \'include/qt/QtCore/qplugin.h\', \'include/qt/QtWidgets/qdatawidgetmapper.h\', \'include/qt/QtGui/QFontInfo\', \'include/qt/QtQml/qqmlerror.h\', \'qml/QtQuick/Extras/designer/images/piemenu-icon.png\', \'include/qt/QtWidgets/QGraphicsRectItem\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllocale_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsengine_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qt_mips_asm_dsp_p.h\', \'mkspecs/common/msvc-desktop.conf\', \'include/qt/QtMultimedia/QAudioEncoderSettingsControl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qanysimpletype_p.h\', \'include/qt/QtMultimedia/QAudioSystemPlugin\', \'include/qt/QtWidgets/qtextbrowser.h\', \'include/qt/QtWidgets/QGraphicsPathItem\', \'lib/libQt5QmlDevTools.a\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptast_p.h\', \'include/qt/QtCore/qsignalmapper.h\', \'include/qt/QtCore/QVarLengthArray\', \'include/qt/QtCore/QFlag\', \'include/qt/QtWidgets/qgraphicsview.h\', \'include/qt/QtCore/qbytearraylist.h\', \'include/qt/QtCore/qhistorystate.h\', \'lib/cmake/Qt5Script/Qt5ScriptConfig.cmake\', \'include/qt/QtWidgets/QToolTip\', \'include/qt/QtWebChannel/qwebchannel.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qprintengine_pdf_p.h\', \'include/qt/QtGui/qopenglvertexarrayobject.h\', \'lib/libQt5Widgets.la\', \'include/qt/QtGui/qimage.h\', \'doc/global/template/images/bg_l_blank.png\', \'include/qt/QtGui/qopenglfunctions_1_4.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qrecursionwatcher_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickmaskextruder_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/rcc_p.h\', \'include/qt/QtGui/QTextTableCell\', \'translations/qt_de.qm\', \'include/qt/QtGui/QScrollPrepareEvent\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_tabwidget_p.h\', \'include/qt/QtNetwork/QIPv6Address\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickwander_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistmodel_p_p.h\', \'include/qt/QtMultimedia/QtMultimediaVersion\', \'include/qt/QtTest/QTestData\', \'lib/cmake/Qt5Designer/Qt5Designer_QWebViewPlugin.cmake\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/actionrepository_p.h\', \'include/qt/QtQml/QQmlIncubator\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qanalyzer_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qmath_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_introspection_p.h\', \'include/qt/QtSvg/QSvgRenderer\', \'include/qt/QtCore/QStorageInfo\', \'include/qt/QtCore/QLine\', \'include/qt/QtWebKit/QtWebKitDepends\', \'include/qt/QtQuick/QQuickWindow\', \'doc/global/html-header-online.qdocconf\', \'include/qt/QtGui/qopenglfunctions_3_2_core.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicseffect_p.h\', \'lib/libQt5MultimediaQuick_p.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnonetype_p.h\', \'include/qt/QtCore/qbasictimer.h\', \'include/qt/QtWidgets/QTabWidget\', \'translations/qtbase_he.qm\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qcupsjobwidget_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/cglconvenience_p.h\', \'mkspecs/features/dbusinterfaces.prf\', \'include/qt/QtGui/QOpenGLFunctions_1_4\', \'mkspecs/linux-g++-32/qmake.conf\', \'include/qt/QtCore/QStringRef\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickgridview_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsequencefns_p.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_psql_p.h\', \'include/qt/QtWebSockets/qwebsocketserver.h\', \'mkspecs/features/exceptions_off.prf\', \'mkspecs/features/win32/rtti.prf\', \'include/qt/QtCore/QContiguousCacheTypedData\', \'include/qt/QtGui/5.6.2/QtGui/private/qbezier_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qletclause_p.h\', \'include/qt/QtMultimedia/qabstractvideofilter.h\', \'include/qt/QtWidgets/qabstractscrollarea.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/uistrings_p.h\', \'include/qt/QtDBus/QDBusObjectPath\', \'include/qt/QtCore/qabstractstate.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4arrayobject_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qthreadpool_p.h\', \'include/qt/QtSvg/QtSvgVersion\', \'mkspecs/solaris-cc-64-stlport/qplatformdefs.h\', \'mkspecs/devices/linux-arm-generic-g++/qplatformdefs.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlabstractprofileradapter_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkconfiguration_p.h\', \'translations/qt_cs.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qsoundeffect_qaudio_p.h\', \'include/qt/QtCore/QThreadPool\', \'qml/QtQuick/Extras/designer/DelayButtonSpecifics.qml\', \'include/qt/QtDesigner/abstractlanguage.h\', \'plugins/bearer/libqconnmanbearer.so\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsastvisitor_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformgraphicsbuffer.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_formbuilder_p.h\', \'mkspecs/linux-g++-32/qplatformdefs.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtcentralmanager_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qcssparser_p.h\', \'lib/libQt5Test.prl\', \'qml/QtQuick/Controls/Private/HoverButton.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qlatincodec_p.h\', \'include/qt/QtGui/QGlyphRun\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebnavigationhistory_p.h\', \'mkspecs/common/angle.conf\', \'include/qt/QtDBus/QDBusAbstractAdaptor\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4compiler_p.h\', \'include/qt/QtCore/qstorageinfo.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlproxymetaobject_p.h\', \'include/qt/QtQuick/QSGDynamicTexture\', \'include/qt/QtPlatformHeaders/QtPlatformHeadersVersion\', \'include/qt/QtMultimedia/QCameraInfoControl\', \'include/qt/QtCore/5.6.2/QtCore/private/qobject_p.h\', \'include/qt/QtCore/QBitArray\', \'include/qt/QtGui/qsurfaceformat.h\', \'include/qt/QtWidgets/QStyledItemDelegate\', \'include/qt/QtCore/qlocale_blackberry.h\', \'qml/QtQuick/Controls/Styles/Desktop/ScrollViewStyle.qml\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qsamplecache_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylistsourcecontrol_p.h\', \'qml/QtQuick/Layouts/plugins.qmltypes\', \'qml/QtGraphicalEffects/RecursiveBlur.qml\', \'qml/QtQuick/Controls/Styles/Desktop/SliderStyle.qml\', \'include/qt/QtCore/QtCoreVersion\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4heap_p.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qtokenizer_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebdatabase_p.h\', \'mkspecs/android-g++/qmake.conf\', \'include/qt/QtCore/QJsonDocument\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslsocket_winrt_p.h\', \'include/qt/QtCore/qtemporaryfile.h\', \'lib/cmake/Qt5XmlPatterns/Qt5XmlPatternsConfig.cmake\', \'include/qt/QtWidgets/QCommonStyle\', \'include/qt/QtCore/QCollator\', \'qml/QtQuick/Controls/Styles/Desktop/RowItemSingleton.qml\', \'include/qt/QtWidgets/qsizepolicy.h\', \'include/qt/QtPlatformHeaders/qcocoawindowfunctions.h\', \'include/qt/QtCore/QScopedPointerArrayDeleter\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpnetworkconnection_p.h\', \'lib/cmake/Qt5Quick/Qt5QuickConfigVersion.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdinstancereader_p.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmarkperfevents_p.h\', \'include/qt/QtGui/QOpenGLFunctions_4_2_Core\', \'lib/cmake/Qt5Qml/Qt5Qml_QTcpServerConnectionFactory.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qquantifiedexpression_p.h\', \'include/qt/QtGui/QNativeGestureEvent\', \'include/qt/QtWidgets/qundostack.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreameraudioprobecontrol_p.h\', \'include/qt/QtCore/qjsonobject.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcommonvalues_p.h\', \'include/qt/QtMultimedia/qmediavideoprobecontrol.h\', \'include/qt/QtGui/QAccessibleEvent\', \'qml/QtQuick/Extras/designer/images/togglebutton-icon.png\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptsyntaxchecker_p.h\', \'include/qt/QtQuick/qquickitem.h\', \'include/qt/QtMultimediaWidgets/QVideoWidget\', \'qml/QtQuick/Controls/Private/StackView.js\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmenu_wince_resource_p.h\', \'include/qt/QtGui/QInputMethodEvent\', \'include/qt/QtDesigner/QtDesignerVersion\', \'mkspecs/features/ctest_testcase.prf\', \'include/qt/QtWidgets/QStyleOptionFrame\', \'translations/qtscript_lv.qm\', \'include/qt/QtGui/QIconEnginePlugin\', \'include/qt/QtCore/QReadLocker\', \'lib/cmake/Qt5Help/Qt5HelpConfigExtras.cmake\', \'qml/QtQuick/Controls/Styles/Base/images/check.png\', \'include/qt/QtQuick/QQuickView\', \'include/qt/QtCore/qrunnable.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatforminputcontextplugin_p.h\', \'lib/libQt5MultimediaQuick_p.so.5\', \'include/qt/QtMultimedia/qcamera.h\', \'include/qt/QtCore/qatomic_unix.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdistancefieldutil_p.h\', \'mkspecs/common/mac.conf\', \'lib/cmake/Qt5DBus/Qt5DBusMacros.cmake\', \'include/qt/QtMultimedia/qsound.h\', \'include/qt/QtCore/qurl.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemmetadata_p.h\', \'include/qt/QtWidgets/QLCDNumber\', \'include/qt/QtQml/QQmlNetworkAccessManagerFactory\', \'include/qt/QtWidgets/QListWidgetItem\', \'lib/cmake/Qt5MultimediaWidgets/Qt5MultimediaWidgetsConfig.cmake\', \'include/qt/QtWebKit/QWebDatabase\', \'include/qt/QtGui/QTextFormat\', \'include/qt/QtMultimedia/qsoundeffect.h\', \'include/qt/QtMultimedia/QMediaControl\', \'include/qt/QtGui/qevent.h\', \'mkspecs/modules/qt_lib_xml.pri\', \'include/qt/QtGui/QTextTableCellFormat\', \'mkspecs/linux-g++-64/qmake.conf\', \'include/qt/QtWidgets/QSystemTrayIcon\', \'include/qt/QtCore/QFileInfo\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdelegatingnamespaceresolver_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljslexer_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qbmphandler_p.h\', \'qml/QtQuick/Window.2/qmldir\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmlthread_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfileinfogatherer_p.h\', \'lib/cmake/Qt5Qml/Qt5Qml_QQmlDebuggerServiceFactory.cmake\', \'mkspecs/common/winrt_winphone/qplatformdefs.h\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_CameraBinServicePlugin.cmake\', \'plugins/qmltooling/libqmldbg_server.so\', \'include/qt/QtGui/QTextObject\', \'lib/cmake/Qt5Gui/Qt5Gui_QWbmpPlugin.cmake\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qtcpsocket_p.h\', \'include/qt/QtCore/QMessageLogger\', \'include/qt/QtGui/5.6.2/QtGui/private/qtexthtmlparser_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloatcasters_p.h\', \'include/qt/QtDesigner/QDesignerContainerExtension\', \'include/qt/QtCore/QJsonValueRef\', \'include/qt/QtCore/QBitRef\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengltexture_p.h\', \'translations/qtquick1_ru.qm\', \'include/qt/QtGui/qpen.h\', \'translations/qtmultimedia_it.qm\', \'lib/cmake/Qt5Script/Qt5ScriptConfigVersion.cmake\', \'include/qt/QtNetwork/QNetworkCookieJar\', \'mkspecs/unsupported/vxworks-ppc-dcc/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupportitems_p.h\', \'include/qt/QtWidgets/QDateTimeEdit\', \'include/qt/QtCore/QSemaphore\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenericdynamiccontext_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlengine_p.h\', \'qml/QtQuick/Controls/Styles/Base/ComboBoxStyle.qml\', \'include/qt/QtGui/QWindow\', \'mkspecs/hurd-g++/qmake.conf\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamerbushelper_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltypecompiler_p.h\', \'qml/QtQuick/Layouts/libqquicklayoutsplugin.so\', \'include/qt/QtWidgets/qfiledialog.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractdatetime_p.h\', \'translations/qtmultimedia_fr.qm\', \'include/qt/QtMultimedia/QMediaPlayerControl\', \'include/qt/QtWidgets/QStyleOptionToolButton\', \'include/qt/QtCore/QFutureInterface\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglshadercache_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideowindow_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventloop_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbooleanfns_p.h\', \'include/qt/QtMultimedia/QMediaPlaylist\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsxpstyle_p_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qrecyclepool_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcompleter_p.h\', \'mkspecs/features/qt_android_deps.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtemplateinvoker_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenericsequencetype_p.h\', \'include/qt/QtCore/QHashFunctions\', \'include/qt/QtGui/qgenericplugin.h\', \'include/qt/QtPlatformHeaders/QWindowsWindowFunctions\', \'include/qt/QtQml/QQmlDebuggingEnabler\', \'translations/qtmultimedia_de.qm\', \'include/qt/QtWidgets/QtWidgetsDepends\', \'lib/libQt5PlatformSupport.la\', \'mkspecs/devices/linux-odroid-xu3-g++/qmake.conf\', \'include/qt/QtWidgets/QToolBar\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerscriptedconsolecommand_p.h\', \'include/qt/QtWidgets/qdialogbuttonbox.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlmetatype_p.h\', \'lib/libQt5DBus.la\', \'qml/QtGraphicalEffects/ThresholdMask.qml\', \'mkspecs/features/qt_app.prf\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquickwebpage_p.h\', \'include/qt/QtGui/QBitmap\', \'qml/QtGraphicalEffects/InnerShadow.qml\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticlesmodule_p.h\', \'include/qt/QtPlatformHeaders/QPlatformHeaderHelper\', \'translations/qtscript_ko.qm\', \'translations/qt_pt.qm\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsstyle_p.h\', \'include/qt/QtCore/qsettings.h\', \'include/qt/QtGui/QStandardItem\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglpaintengine_p.h\', \'include/qt/QtNetwork/QDnsTextRecord\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qoutputvalidator_p.h\', \'lib/libQt5Script.so.5\', \'include/qt/QtCore/5.6.2/QtCore/private/qjson_p.h\', \'mkspecs/qdevice.pri\', \'include/qt/QtGui/5.6.2/QtGui/private/qcursor_p.h\', \'include/qt/QtCore/QObjectList\', \'qml/QtQuick/Controls/Styles/Base/TextFieldStyle.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlboundsignalexpressionpointer_p.h\', \'include/qt/QtDBus/QDBusAbstractInterfaceBase\', \'include/qt/QtWidgets/QDateEdit\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qvideooutputorientationhandler_p.h\', \'include/qt/QtDBus/QDBusSignature\', \'include/qt/QtNfc/QNearFieldShareManager\', \'mkspecs/linux-icc/qmake.conf\', \'include/qt/QtCore/QElapsedTimer\', \'include/qt/QtBluetooth/QtBluetoothVersion\', \'translations/qmlviewer_cs.qm\', \'include/qt/QtCore/qparallelanimationgroup.h\', \'include/qt/QtGui/QScrollEvent\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qremovaliterator_p.h\', \'include/qt/QtMultimedia/QMediaMetaData\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/properties_p.h\', \'lib/libQt5Help.so.5.6\', \'qml/QtQuick/Controls/GroupBox.qml\', \'mkspecs/modules/qt_lib_designercomponents_private.pri\', \'mkspecs/features/unix/x11.prf\', \'translations/assistant_sl.qm\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/corebluetoothwrapper_p.h\', \'include/qt/QtQml/qqmlapplicationengine.h\', \'include/qt/QtTest/QTestAccessibility\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstyledtext_p.h\', \'include/qt/QtCore/QCoreApplication\', \'translations/qt_help_fr.qm\', \'mkspecs/linux-cxx/qmake.conf\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaobject_p.h\', \'include/qt/QtCore/QState\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebugger_p.h\', \'include/qt/QtGui/QTouchEvent\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindexreader_default_p.h\', \'include/qt/QtCore/qfunctions_winrt.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qstandarditemmodel_p.h\', \'include/qt/QtDesigner/membersheet.h\', \'include/qt/QtCore/qprocessordetection.h\', \'include/qt/QtQml/QQmlListProperty\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4jsonobject_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextcursor_p.h\', \'include/qt/QtDBus/QDBusPendingCallWatcher\', \'lib/libQt5Nfc.prl\', \'mkspecs/tru64-g++/qmake.conf\', \'include/qt/QtQuick/QQuickItem\', \'include/qt/QtQml/QQmlPropertyValueSource\', \'translations/assistant_fr.qm\', \'include/qt/QtXmlPatterns/qxmlserializer.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdidcache_p.h\', \'include/qt/QtWidgets/QFormLayout\', \'include/qt/QtMultimedia/QMediaServiceFeaturesInterface\', \'include/qt/QtMultimedia/QAbstractVideoSurface\', \'mkspecs/modules/qt_lib_bluetooth_private.pri\', \'include/qt/QtWidgets/qinputdialog.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbustraytypes_p.h\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qsort_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4function_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextcontrol_p.h\', \'include/qt/QtHelp/QHelpEngineCore\', \'include/qt/QtGui/QImageTextKeyLang\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgnode_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qdrawingprimitive_sse2_p.h\', \'include/qt/QtCore/qabstractproxymodel.h\', \'doc/global/manifest-meta.qdocconf\', \'include/qt/QtQml/qjsvalueiterator.h\', \'include/qt/QtCore/qrefcount.h\', \'include/qt/QtWidgets/QPushButton\', \'qml/QtQuick/Controls/Styles/Desktop/GroupBoxStyle.qml\', \'include/qt/QtBluetooth/QBluetoothTransferRequest\', \'include/qt/QtDesignerComponents/QtDesignerComponentsVersion\', \'include/qt/QtWidgets/qlayoutitem.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideorendererinterface_p.h\', \'include/qt/QtWidgets/QWizard\', \'include/qt/QtCore/qsequentialanimationgroup.h\', \'include/qt/QtWidgets/qgraphicsitem.h\', \'include/qt/QtXmlPatterns/QAbstractXmlReceiver\', \'lib/cmake/Qt5WebKit/Qt5WebKitConfigVersion.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdeepequalfn_p.h\', \'include/qt/QtMultimedia/qcamerafocus.h\', \'include/qt/QtMultimedia/qradiotunercontrol.h\', \'include/qt/QtBluetooth/qbluetoothtransfermanager.h\', \'include/qt/QtXmlPatterns/QXmlName\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4ssa_p.h\', \'include/qt/QtGui/QHoverEvent\', \'mkspecs/winrt-arm-msvc2013/qmake.conf\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_command2_p.h\', \'include/qt/QtMultimediaWidgets/5.6.2/QtMultimediaWidgets/private/qeglimagetexturesurface_p.h\', \'mkspecs/features/default_post.prf\', \'include/qt/QtCore/QPauseAnimation\', \'include/qt/QtCore/QSaveFile\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qstylesheetstyle_p.h\', \'include/qt/QtGui/qpaintengine.h\', \'include/qt/QtMultimediaQuick_p/5.6.2/QtMultimediaQuick_p/private/qdeclarativevideooutput_window_p.h\', \'mkspecs/hpuxi-acc-32/qmake.conf\', \'qml/QtQuick/Controls/Styles/Base/ToolBarStyle.qml\', \'include/qt/QtCore/qscopedpointer.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4regalloc_p.h\', \'translations/designer_en.qm\', \'include/qt/QtWidgets/QGraphicsLinearLayout\', \'translations/qt_pl.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsltsimplecontentconstructor_p.h\', \'include/qt/QtCore/qloggingcategory.h\', \'include/qt/QtNetwork/QNetworkAccessManager\', \'include/qt/QtBluetooth/qbluetoothglobal.h\', \'include/qt/QtNetwork/QSsl\', \'mkspecs/linux-arm-gnueabi-g++/qmake.conf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemanimation_p_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodefinderwidgetinterface_p_p.h\', \'mkspecs/common/nacl/nacl-base.conf\', \'include/qt/QtCore/qshareddata.h\', \'include/qt/QtGui/qopenglfunctions_1_0.h\', \'include/qt/QtCore/qbasicatomic.h\', \'mkspecs/features/moc.prf\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlthread_p.h\', \'qml/QtGraphicalEffects/private/qmldir\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qautoptr_p.h\', \'include/qt/QtGui/QTextDocumentWriter\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpnetworkreply_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtokenvalue_p.h\', \'translations/qtmultimedia_uk.qm\', \'include/qt/QtTest/qbenchmarkmetric.h\', \'mkspecs/sco-g++/qplatformdefs.h\', \'mkspecs/winrt-x86-msvc2013/qplatformdefs.h\', \'include/qt/QtCore/qvariant.h\', \'include/qt/QtCore/QContiguousCache\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsxpstyle_p.h\', \'include/qt/QtSql/qsqlerror.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qunicodetables_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qdefaultmaskgenerator_p.h\', \'include/qt/QtWebKit/qwebdatabase.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qimagescale_p.h\', \'lib/libQt5Svg.so.5.6.2\', \'lib/libQt5XmlPatterns.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctionfactorycollection_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/tag_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qlowenergyserviceprivate_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimationcontroller_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qstylehelper_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpsocketengine_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qtlv_p.h\', \'mkspecs/features/data/android/dx.bat\', \'mkspecs/blackberry-armle-v7-qcc/qplatformdefs.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptsyntaxhighlighter_p.h\', \'include/qt/QtCore/QRegularExpressionMatchIterator\', \'include/qt/QtQuick/QQuickItemGrabResult\', \'include/qt/QtQml/5.6.2/QtQml/private/qjsvalueiterator_p.h\', \'include/qt/QtGui/QOpenGLExtraFunctions\', \'include/qt/QtGui/QAccessiblePlugin\', \'include/qt/QtWidgets/QStyleOptionGraphicsItem\', \'include/qt/QtDesigner/QDesignerObjectInspectorInterface\', \'include/qt/QtGui/5.6.2/QtGui/private/qpainter_p.h\', \'mkspecs/features/unix/opengl.prf\', \'include/qt/QtQuickWidgets/qquickwidget.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultdistancefieldglyphcache_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlbinding_p.h\', \'mkspecs/common/qnx/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcastingplatform_tpl_p.h\', \'include/qt/QtWidgets/QTabBar\', \'translations/linguist_sl.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qabstracttextdocumentlayout_p.h\', \'include/qt/QtCore/QJsonObject\', \'lib/libQt5Concurrent.so.5\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgnode_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4stringobject_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qfinitestack_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsourcelocationreflection_p.h\', \'include/qt/QtCore/qwineventnotifier.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qopenglcompositor_p.h\', \'include/qt/QtDesigner/QDesignerSettingsInterface\', \'include/qt/QtCore/QScopedPointer\', \'include/qt/QtGui/QTextCursor\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextinput_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextutil_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamermessage_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcallsite_p.h\', \'include/qt/QtNetwork/QTcpServer\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxpath20corefunctions_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/spinner_medium.png\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/newactiondialog_p.h\', \'include/qt/QtQuick/QSGMaterialType\', \'include/qt/QtWebChannel/5.6.2/QtWebChannel/private/qwebchannel_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllist_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylistnavigator_p.h\', \'include/qt/QtDBus/QDBusReply\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qrawwebview_p_p.h\', \'include/qt/QtGui/qimagereader.h\', \'include/qt/QtCore/QSignalBlocker\', \'qml/QtQuick/Controls/Styles/Base/images/scrollbar-handle-vertical.png\', \'include/qt/QtWidgets/QAction\', \'include/qt/QtWidgets/qgraphicslinearlayout.h\', \'translations/qtbase_ko.qm\', \'include/qt/QtCore/QLinkedList\', \'bin/qtpaths\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qglxconvenience_p.h\', \'translations/qt_ru.qm\', \'include/qt/QtNetwork/QNetworkConfigurationManager\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticbaseuricontainer_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4argumentsobject_p.h\', \'mkspecs/modules/qt_lib_quick.pri\', \'lib/cmake/Qt5WebKit/Qt5WebKitConfig.cmake\', \'include/qt/QtCore/qfuturesynchronizer.h\', \'qml/QtQuick/XmlListModel/qmldir\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qaccessiblemenu_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsubstringfns_p.h\', \'include/qt/QtWidgets/QGraphicsLayout\', \'include/qt/QtCore/QModelIndex\', \'include/qt/QtPrintSupport/qtprintsupportglobal.h\', \'translations/assistant_ja.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qitemverifier_p.h\', \'qml/QtQuick/Extras/designer/images/statusindicator-icon16.png\', \'mkspecs/features/qgltf.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdwildcard_p.h\', \'include/qt/QtDBus/qdbusunixfiledescriptor.h\', \'include/qt/QtCore/QLinkedListData\', \'include/qt/QtGui/5.6.2/QtGui/private/qfontsubset_p.h\', \'include/qt/QtGui/QInputEvent\', \'mkspecs/macx-ios-clang/features/testcase_targets.prf\', \'mkspecs/aix-g++/qplatformdefs.h\', \'include/qt/QtCore/qbytearray.h\', \'include/qt/QtGui/qopenglfunctions_4_4_compatibility.h\', \'include/qt/QtGui/qopenglversionfunctions.h\', \'mkspecs/devices/linux-jetson-tk1-pro-g++/qplatformdefs.h\', \'lib/libQt5WebChannel.prl\', \'include/qt/QtBluetooth/qbluetooth.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qsimpledrag_p.h\', \'include/qt/QtGui/QtEvents\', \'include/qt/QtGui/QPixmapCache\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcachingiterator_p.h\', \'mkspecs/devices/linux-imx53qsb-g++/qmake.conf\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4variantobject_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimatedimage_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qbig5codec_p.h\', \'mkspecs/features/unix/x11lib.prf\', \'include/qt/QtBluetooth/qlowenergycontroller.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbusmenuadaptor_p.h\', \'include/qt/QtMultimedia/QCameraExposure\', \'include/qt/QtNfc/5.6.2/QtNfc/private/manager_p.h\', \'include/qt/QtMultimediaWidgets/QtMultimediaWidgetsVersion\', \'include/qt/QtWidgets/QItemEditorCreator\', \'translations/qtxmlpatterns_hu.qm\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerresponsehandlerinterface_p.h\', \'include/qt/QtCore/qatomic_ia64.h\', \'include/qt/QtXmlPatterns/QAbstractXmlNodeModel\', \'lib/libQt5OpenGL.prl\', \'doc/global/template/style/cookiebar-x.png\', \'include/qt/QtWebChannel/qwebchannelabstracttransport.h\', \'include/qt/QtCore/qnumeric.h\', \'translations/qt_help_ru.qm\', \'include/qt/QtCore/QLatin1String\', \'include/qt/QtQuick/qsgvertexcolormaterial.h\', \'include/qt/QtX11Extras/QtX11Extras\', \'include/qt/QtPlatformHeaders/qwglnativecontext.h\', \'include/qt/QtConcurrent/qtconcurrentrun.h\', \'include/qt/QtMultimedia/QMediaBindableInterface\', \'include/qt/QtMultimedia/QMediaTimeInterval\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowcontainer_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qfieldlist_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickpointattractor_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebiconimageprovider_p.h\', \'mkspecs/cygwin-g++/qmake.conf\', \'mkspecs/modules/qt_lib_bootstrap_private.pri\', \'include/qt/QtGui/5.6.2/QtGui/private/qicon_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticbaseuricontext_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qmultiitemtype_p.h\', \'include/qt/QtDesigner/QDesignerWidgetBoxInterface\', \'include/qt/QtGui/qglyphrun.h\', \'include/qt/QtWidgets/QGraphicsSceneEvent\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4sqlerrors_p.h\', \'include/qt/QtWidgets/QWizardPage\', \'qml/QtQuick/Extras/designer/images/statusindicator-icon.png\', \'include/qt/QtNetwork/QHostInfo\', \'include/qt/QtQuick/QSGMaterial\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptprogram_p.h\', \'include/qt/QtNetwork/QHttpPart\', \'include/qt/QtWebKitWidgets/qtwebkitwidgetsversion.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtoolbarlayout_p.h\', \'include/qt/QtGui/QAccessibleApplication\', \'include/qt/QtGui/QTextListFormat\', \'include/qt/QtWidgets/qgridlayout.h\', \'include/qt/QtCore/qabstractitemmodel.h\', \'lib/libQt5Core.la\', \'include/qt/QtWidgets/QUndoStack\', \'include/qt/QtCore/5.6.2/QtCore/private/qtsciicodec_p.h\', \'include/qt/QtHelp/qhelpenginecore.h\', \'include/qt/QtXmlPatterns/qabstractmessagehandler.h\', \'qml/QtGraphicalEffects/GammaAdjust.qml\', \'include/qt/QtCore/QByteArrayList\', \'plugins/playlistformats/libqtmultimedia_m3u.so\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qassemblestringfns_p.h\', \'include/qt/QtWebSockets/QWebSocketCorsAuthenticator\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractxmlreceiver_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunaryexpression_p.h\', \'lib/libQt5Script.so.5.6\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qliteral_p.h\', \'mkspecs/features/silent.prf\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglshadercache_meego_p.h\', \'include/qt/QtMultimedia/qabstractvideobuffer.h\', \'mkspecs/irix-cc-64/qmake.conf\', \'lib/libQt5DesignerComponents.la\', \'include/qt/QtWebKitWidgets/QWebPage\', \'include/qt/QtWebKit/QWebHistoryInterface\', \'include/qt/QtCore/qfeatures.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfbwindow_p.h\', \'mkspecs/modules/qt_lib_help_private.pri\', \'include/qt/QtCore/QRegularExpression\', \'include/qt/QtWebKit/qwebhistoryinterface.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslcertificate_p.h\', \'include/qt/QtWidgets/QStyleOptionRubberBand\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemchangelistener_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtracefn_p.h\', \'include/qt/QtOpenGLExtensions/QOpenGLExtensions\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qaxisstep_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommand_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdepthstencilbuffer_p.h\', \'include/qt/QtBluetooth/qbluetoothhostinfo.h\', \'qml/QtGraphicalEffects/private/DropShadowBase.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4vme_moth_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickwindowmodule_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qabstractsocket_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qgb18030codec_p.h\', \'mkspecs/linux-lsb-g++/qplatformdefs.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qcolor_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocketserver_p.h\', \'include/qt/QtGui/QGradientStops\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickvalidator_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsparser_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltypenotavailable_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/layout_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickitemparticle_p.h\', \'include/qt/QtCore/QDateTime\', \'bin/qdoc\', \'include/qt/QtSql/QSqlQueryModel\', \'include/qt/QtCore/qbytearraymatcher.h\', \'include/qt/QtMultimedia/qmultimedia.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qwithparam_p.h\', \'include/qt/QtXml/QXmlDTDHandler\', \'include/qt/QtHelp/QHelpSearchEngine\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimatorjob_p.h\', \'mkspecs/macx-clang/Info.plist.lib\', \'lib/cmake/Qt5Gui/Qt5Gui_QXcbIntegrationPlugin.cmake\', \'lib/libQt5ScriptTools.so\', \'include/qt/QtMultimedia/QCameraFocusControl\', \'qml/QtQuick/Controls/Private/CalendarUtils.js\', \'lib/libQt5Xml.la\', \'lib/libQt5Xml.prl\', \'mkspecs/modules/qt_lib_testlib.pri\', \'include/qt/QtBluetooth/QBluetoothServiceInfo\', \'mkspecs/macx-g++42/Info.plist.dSYM.in\', \'include/qt/QtPlatformHeaders/qcocoanativecontext.h\', \'translations/qtconfig_zh_TW.qm\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qimagevideobuffer_p.h\', \'include/qt/QtCore/QtCore\', \'mkspecs/macx-llvm/Info.plist.lib\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglengineshadermanager_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickage_p.h\', \'mkspecs/devices/linux-jetson-tk1-pro-g++/qmake.conf\', \'lib/libQt5QuickTest.so.5.6.2\', \'include/qt/QtWidgets/qwizard.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qharfbuzzng_p.h\', \'lib/libQt5MultimediaQuick_p.prl\', \'include/qt/QtGui/QTextLayout\', \'include/qt/QtWidgets/QGraphicsItemGroup\', \'include/qt/QtWidgets/QListView\', \'include/qt/QtPrintSupport/qprintdialog.h\', \'qml/QtQuick/Extras/plugins.qmltypes\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquicknetworkreply_p.h\', \'mkspecs/irix-g++/qplatformdefs.h\', \'include/qt/QtGui/QValidator\', \'qml/QtWebChannel/plugins.qmltypes\', \'qml/QtQuick/Controls/plugins.qmltypes\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlapplicationengine_p.h\', \'include/qt/QtWidgets/QGraphicsSceneMoveEvent\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcontextfns_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractslider_p.h\', \'include/qt/QtCore/qsavefile.h\', \'mkspecs/features/java.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpositionalvariablereference_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/invisible_widget_p.h\', \'include/qt/QtScript/QScriptValue\', \'include/qt/QtCore/qconfig-dist.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengl_p.h\', \'qml/QtTest/SignalSpy.qml\', \'include/qt/QtCore/QtMessageHandler\', \'lib/libQt5QuickWidgets.so.5.6\', \'plugins/imageformats/libqtga.so\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstateoperations_p.h\', \'doc/global/html-header-offline.qdocconf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtreewidgetitemiterator_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4binop_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qpauseanimationjob_p.h\', \'include/qt/QtGui/qkeysequence.h\', \'include/qt/QtCore/QFutureWatcherBase\', \'include/qt/QtWidgets/QGraphicsWidget\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickshadereffectmesh_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/needle.png\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsockethandshakeresponse_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qt_widgets_pch.h\', \'include/qt/QtNfc/QNdefNfcTextRecord\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimedatabase_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractscrollarea_p.h\', \'include/qt/QtXmlPatterns/QtXmlPatterns\', \'bin/fixqt4headers.pl\', \'include/qt/QtGui/qopenglfunctions_4_0_compatibility.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformfontdatabase.h\', \'include/qt/QtTest/5.6.2/QtTest/private/linux_perf_event_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickview_p.h\', \'mkspecs/qnx-armle-v7-qcc/qmake.conf\', \'include/qt/QtGui/qwindowdefs.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/widgetdatabase_p.h\', \'include/qt/QtXmlPatterns/qxmlschemavalidator.h\', \'include/qt/QtWidgets/qtabwidget.h\', \'include/qt/QtXmlPatterns/QXmlSerializer\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qrawwebview_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QGifPlugin.cmake\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgshadersourcebuilder_p.h\', \'mkspecs/modules/qt_lib_svg.pri\', \'qml/QtQuick/Controls/qmldir\', \'include/qt/QtCore/5.6.2/QtCore/private/qt_pch.h\', \'mkspecs/features/win32/qt_config.prf\', \'include/qt/QtDesigner/formbuilder.h\', \'include/qt/QtMultimedia/QRadioTuner\', \'include/qt/QtScriptTools/qscriptenginedebugger.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvaluefactory_p.h\', \'include/qt/QtXml/QDomDocumentType\', \'include/qt/QtCore/qstack.h\', \'include/qt/QtTest/qtesteventloop.h\', \'include/qt/QtCore/qendian.h\', \'include/qt/QtWidgets/QScrollerProperties\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickvaluetypes_p.h\', \'lib/cmake/Qt5Network/Qt5NetworkConfigVersion.cmake\', \'include/qt/QtWidgets/qmdiarea.h\', \'include/qt/QtBluetooth/qlowenergydescriptor.h\', \'translations/designer_zh_CN.qm\', \'include/qt/QtCore/qbitarray.h\', \'include/qt/QtMultimediaWidgets/5.6.2/QtMultimediaWidgets/private/qpaintervideosurface_p.h\', \'include/qt/QtGui/QOpenGLFunctions\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommandschedulerinterface_p.h\', \'include/qt/QtWidgets/qtooltip.h\', \'include/qt/QtXmlPatterns/QXmlSchemaValidator\', \'include/qt/QtWebChannel/QtWebChannelVersion\', \'mkspecs/features/file_copies.prf\', \'include/qt/QtGui/QTextBlockGroup\', \'include/qt/QtMultimedia/qaudiooutputselectorcontrol.h\', \'include/qt/QtDesigner/qdesignerexportwidget.h\', \'include/qt/QtNfc/qnearfieldsharetarget.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4typedarray_p.h\', \'include/qt/QtCore/qmessageauthenticationcode.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolehistorianinterface_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4dateobject_p.h\', \'include/qt/QtCore/QBasicMutex\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerevent_p.h\', \'qml/QtQuick/Controls/TextArea.qml\', \'include/qt/QtCore/qsize.h\', \'mkspecs/macx-icc/qmake.conf\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpincharea_p.h\', \'include/qt/QtQml/qqmlparserstatus.h\', \'include/qt/QtDesigner/QDesignerOptionsPageInterface\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qorexpression_p.h\', \'include/qt/QtWidgets/QWidgetAction\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qparentnodeaxis_p.h\', \'include/qt/QtDBus/QDBusContext\', \'include/qt/QtWebKit/QWebPluginFactory\', \'include/qt/QtWidgets/QStylePlugin\', \'include/qt/QtSql/QSqlDriver\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcontextwrapper_p.h\', \'qml/QtGraphicalEffects/BrightnessContrast.qml\', \'translations/qt_help_zh_CN.qm\', \'include/qt/QtMultimedia/qmediabindableinterface.h\', \'translations/assistant_de.qm\', \'include/qt/QtCore/QSocketNotifier\', \'translations/qtxmlpatterns_ko.qm\', \'include/qt/QtMultimedia/qmediaplaylist.h\', \'include/qt/QtMultimedia/QMetaDataReaderControl\', \'lib/libQt5Bootstrap.a\', \'include/qt/QtWidgets/QGestureEvent\', \'lib/libQt5ScriptTools.so.5.6\', \'doc/global/template/style/icomoon.woff\', \'mkspecs/features/testcocoon.prf\', \'include/qt/QtCore/5.6.2/QtCore/private/qjni_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlprofiler_p.h\', \'include/qt/QtSql/QSqlRecord\', \'mkspecs/macx-clang/qplatformdefs.h\', \'include/qt/QtOpenGL/qglshaderprogram.h\', \'include/qt/QtMultimedia/QAbstractPlanarVideoBuffer\', \'qml/QtGraphicalEffects/Glow.qml\', \'qml/QtQuick/Controls/Styles/Flat/libqtquickextrasflatplugin.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtableview_p.h\', \'include/qt/QtCore/qresultstore.h\', \'include/qt/QtNfc/qndefrecord.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qderivedinteger_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickitemview_p_p.h\', \'translations/qtquick1_uk.qm\', \'include/qt/QtCore/QThread\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptglobalobject_p.h\', \'qml/QtQuick/LocalStorage/plugins.qmltypes\', \'include/qt/QtCore/QEvent\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicksprite_p.h\', \'mkspecs/lynxos-g++/qplatformdefs.h\', \'include/qt/QtCore/QMetaClassInfo\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetitemdata_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocketprotocol_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdsimpletype_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcommonsequencetypes_p.h\', \'include/qt/QtBluetooth/QBluetoothSocket\', \'doc/global/template/images/sprites-combined.png\', \'include/qt/QtCore/5.6.2/QtCore/private/qcorecmdlineargs_p.h\', \'include/qt/QtWidgets/QErrorMessage\', \'include/qt/QtCore/QTextStreamFunction\', \'include/qt/QtCore/qmath.h\', \'include/qt/QtCore/qeventtransition.h\', \'include/qt/QtCore/QSizeF\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_objectpush1_bluez5_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglextensions_p.h\', \'include/qt/QtGui/QMatrix3x2\', \'doc/global/template/style/icomoon.eot\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qaggregator_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebpreferences_p_p.h\', \'include/qt/QtGui/QAccessibleObject\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_client_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4globalobject_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggereventhandlerinterface_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptbreakpointswidgetinterface_p_p.h\', \'include/qt/QtHelp/QHelpGlobal\', \'mkspecs/common/gcc-base.conf\', \'lib/libQt5Nfc.la\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4isel_moth_p.h\', \'include/qt/QtWidgets/qwidget.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicksystempalette_p.h\', \'mkspecs/tru64-cxx/qmake.conf\', \'bin/syncqt.pl\', \'mkspecs/hpuxi-g++-64/qplatformdefs.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4registerinfo_p.h\', \'include/qt/QtGui/QConicalGradient\', \'include/qt/QtPlatformHeaders/qtplatformheadersversion.h\', \'include/qt/QtWidgets/qbuttongroup.h\', \'include/qt/QtGui/qopenglframebufferobject.h\', \'include/qt/QtMultimedia/qabstractvideosurface.h\', \'include/qt/QtGui/QTextDocument\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsastfwd_p.h\', \'include/qt/QtWebSockets/QMaskGenerator\', \'include/qt/QtCore/qidentityproxymodel.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlpropertyvalueinterceptor_p.h\', \'include/qt/QtGui/QGradientStop\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhostaddress_p.h\', \'include/qt/QtWidgets/QStyleOptionSlider\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevmousehandler_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsocks5socketengine_p.h\', \'mkspecs/features/qt_clear_installs.prf\', \'include/qt/QtCore/QProcess\', \'plugins/mediaservice/libgstcamerabin.so\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanager_p.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/qpa/qplatformprintersupport.h\', \'include/qt/QtWidgets/QStyleOptionFrameV2\', \'include/qt/QtWidgets/QStyleOptionFrameV3\', \'qml/QtQuick/Controls/Private/TableViewItemDelegateLoader.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticfocuscontext_p.h\', \'qml/QtQuick/PrivateWidgets/libwidgetsplugin.so\', \'include/qt/QtHelp/qhelpsearchquerywidget.h\', \'include/qt/QtPlatformHeaders/QEglFSFunctions\', \'include/qt/QtOpenGL/qglfunctions.h\', \'translations/qtxmlpatterns_ru.qm\', \'include/qt/QtGui/QTextInlineObject\', \'mkspecs/devices/linux-arm-amlogic-8726M-g++/qmake.conf\', \'include/qt/QtScript/qtscriptversion.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkreplyfileimpl_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultlayer_p.h\', \'include/qt/QtUiPlugin/customwidget.h\', \'include/qt/QtWebSockets/QtWebSocketsVersion\', \'translations/qtmultimedia_ko.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengltexturecache_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfontdialog_p.h\', \'include/qt/QtWidgets/QGraphicsOpacityEffect\', \'include/qt/QtTest/qtesttouch.h\', \'include/qt/QtCore/QWaitCondition\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmenubar_p.h\', \'include/qt/QtGui/qopenglfunctions_3_1.h\', \'include/qt/QtXml/QDomNodeList\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfscompleter_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qabstractfloat_p.h\', \'include/qt/QtMultimedia/QCameraFlashControl\', \'mkspecs/macx-g++/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomiccasters_p.h\', \'include/qt/QtGui/QBrushData\', \'lib/libQt5Network.so.5.6.2\', \'lib/libQt5X11Extras.la\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscripttooltipproviderinterface_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggervalueproperty_p.h\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpengine_p.h\', \'include/qt/QtNetwork/qsslcipher.h\', \'translations/qtquickcontrols2_en.qm\', \'qml/Qt/labs/folderlistmodel/qmldir\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptcompletiontaskinterface_p_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcurrentfn_p.h\', \'include/qt/QtOpenGL/QGLFormat\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlimport_p.h\', \'mkspecs/features/win32/stl_off.prf\', \'lib/cmake/Qt5Gui/Qt5Gui_QICNSPlugin.cmake\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglpixelbuffer_p.h\', \'translations/qtquickcontrols_de.qm\', \'include/qt/QtGui/QTransform\', \'include/qt/QtGui/5.6.2/QtGui/private/qinputdevicemanager_p_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgenericstaticcontext_p.h\', \'lib/cmake/Qt5UiTools/Qt5UiToolsConfigVersion.cmake\', \'include/qt/QtXmlPatterns/qsimplexmlnodemodel.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebpermissionrequest_p.h\', \'include/qt/QtCore/QMapNodeBase\', \'include/qt/QtWidgets/QFrame\', \'qml/QtQuick/Controls/Styles/Desktop/StatusBarStyle.qml\', \'include/qt/QtGui/qopenglfunctions_4_3_compatibility.h\', \'include/qt/QtWebKit/QtWebKitVersion\', \'include/qt/QtDBus/QDBusPendingReply\', \'lib/cmake/Qt5Multimedia/Qt5Multimedia_QGstreamerCaptureServicePlugin.cmake\', \'qml/QtTest/plugins.qmltypes\', \'mkspecs/win32-msvc2015/qmake.conf\', \'include/qt/QtCore/QHash\', \'include/qt/QtGui/QIntValidator\', \'include/qt/QtNetwork/QDnsLookup\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdbusmenutypes_p.h\', \'include/qt/QtWebSockets/qwebsocket.h\', \'include/qt/QtWidgets/QStyleOptionTabWidgetFrame\', \'include/qt/QtNetwork/QNetworkDiskCache\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtoolbar_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_stackedbox_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdroparea_p.h\', \'include/qt/QtOpenGL/QGLBuffer\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlirbuilder_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/obex_transfer_p.h\', \'include/qt/QtCore/qmimedatabase.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugstatesdelegate_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextedit_p.h\', \'include/qt/QtNfc/QNearFieldTarget\', \'include/qt/QtCore/5.6.2/QtCore/private/qxmlstream_p.h\', \'include/qt/QtQuick/qquickpainteditem.h\', \'mkspecs/winrt-x86-msvc2015/qmake.conf\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qrecursionwatcher_p.h\', \'include/qt/QtMultimedia/QAudioRoleControl\', \'mkspecs/devices/linux-rasp-pi2-g++/qmake.conf\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothsocket_p.h\', \'include/qt/QtScript/qscriptextensioninterface.h\', \'include/qt/QtPlatformHeaders/qxcbwindowfunctions.h\', \'include/qt/QtWidgets/qslider.h\', \'bin/xmlpatternsvalidator\', \'mkspecs/features/no_debug_info.prf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qemptycontainer_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4sparsearray_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qxmlutils_p.h\', \'lib/cmake/Qt5Gui/Qt5Gui_QEvdevKeyboardPlugin.cmake\', \'qml/QtGraphicalEffects/private/GaussianDirectionalBlur.qml\', \'include/qt/QtHelp/QHelpIndexWidget\', \'include/qt/QtWidgets/qprogressdialog.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qbearerplugin_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfocus_p.h\', \'include/qt/QtWidgets/QAbstractItemDelegate\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdidentityconstraint_p.h\', \'qml/QtQuick/Controls/Private/EditMenu_base.qml\', \'include/qt/QtWidgets/qabstractbutton.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickspritegoal_p.h\', \'lib/cmake/Qt5Test/Qt5TestConfig.cmake\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercommandschedulerjob_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/progress-indeterminate.png\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qcoretextfontdatabase_p.h\', \'include/qt/QtGui/qpagelayout.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpincharea_p_p.h\', \'include/qt/QtWidgets/qgraphicsgridlayout.h\', \'lib/libQt5Widgets.prl\', \'mkspecs/hpux-acc-64/qmake.conf\', \'mkspecs/win32-msvc2013/qmake.conf\', \'include/qt/QtCore/5.6.2/QtCore/private/qtimezoneprivate_p.h\', \'qml/QtGraphicalEffects/OpacityMask.qml\', \'include/qt/QtQml/5.6.2/QtQml/private/qv8engine_p.h\', \'bin/qcollectiongenerator\', \'phrasebooks/swedish.qph\', \'include/qt/QtDesigner/QDesignerExportWidget\', \'include/qt/QtBluetooth/qtbluetoothversion.h\', \'include/qt/QtWidgets/QWidgetItem\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothlocaldevice_p.h\', \'include/qt/QtDesigner/QDesignerFormEditorPluginInterface\', \'doc/global/template/images/spinner.gif\', \'mkspecs/macx-icc/qplatformdefs.h\', \'lib/cmake/Qt5OpenGL/Qt5OpenGLConfig.cmake\', \'plugins/generic/libqevdevtabletplugin.so\', \'include/qt/QtGui/qpicture.h\', \'include/qt/QtNfc/qnearfieldsharemanager.h\', \'include/qt/QtWidgets/QInputDialog\', \'mkspecs/features/egl.prf\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4runtime_p.h\', \'include/qt/QtGui/QOpenGLPixelTransferOptions\', \'include/qt/QtWidgets/QActionGroup\', \'include/qt/QtMultimedia/QCameraViewfinderSettings\', \'lib/pkgconfig/Qt5Network.pc\', \'lib/libQt5Xml.so\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickcustomparticle_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbuiltinnodetype_tpl_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlnotifier_p.h\', \'include/qt/QtSql/QSqlQuery\', \'include/qt/QtOpenGL/qglcolormap.h\', \'include/qt/QtMultimedia/qaudiorolecontrol.h\', \'include/qt/QtUiTools/QtUiTools\', \'lib/cmake/Qt5Gui/Qt5Gui_QOffscreenIntegrationPlugin.cmake\', \'include/qt/QtMultimedia/qcameraimageprocessing.h\', \'include/qt/QtWidgets/QItemDelegate\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdattributereference_p.h\', \'lib/libQt5QuickParticles.so.5\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4vme_moth_p.h\', \'include/qt/QtWidgets/qactiongroup.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qsimplex_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/CalendarStyle.qml\', \'mkspecs/devices/linux-rpi3-g++/qmake.conf\', \'include/qt/QtBluetooth/QBluetoothHostInfo\', \'include/qt/QtNfc/qnfcglobal.h\', \'include/qt/QtCore/QFileSystemWatcher\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/agent_p.h\', \'include/qt/QtSvg/QSvgGenerator\', \'lib/cmake/Qt5Designer/Qt5DesignerConfig.cmake\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvariablereference_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qeglplatformcontext_p.h\', \'doc/global/qt-html-templates-online.qdocconf\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4internalclass_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextdocument_p.h\', \'include/qt/QtGui/qpolygon.h\', \'translations/designer_hu.qm\', \'include/qt/QtCore/qpauseanimation.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideorenderer_p.h\', \'doc/global/template/images/box_bg.png\', \'lib/cmake/Qt5UiTools/Qt5UiToolsConfig.cmake\', \'include/qt/QtGui/5.6.2/QtGui/private/qfontengine_qpf2_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qbitfield_p.h\', \'lib/libQt5Network.so\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsitem_p.h\', \'include/qt/QtDBus/qdbuspendingreply.h\', \'include/qt/QtDesigner/QtDesigner\', \'mkspecs/solaris-cc/qplatformdefs.h\', \'include/qt/QtCore/qmetatype.h\', \'include/qt/QtWidgets/qdockwidget.h\', \'doc/global/includes/examples-run.qdocinc\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticcompatibilitystore_p.h\', \'include/qt/QtCore/QMargins\', \'bin/qhelpconverter\', \'include/qt/QtBluetooth/qbluetoothserviceinfo.h\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindexreader_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qflagpointer_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qlocalsocket_p.h\', \'include/qt/QtWebSockets/qwebsocketprotocol.h\', \'qml/QtQuick/Particles.2/libparticlesplugin.so\', \'mkspecs/solaris-g++/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimator_p.h\', \'mkspecs/common/winrt_winphone/assets/logo_71x71.png\', \'mkspecs/irix-g++-64/qplatformdefs.h\', \'include/qt/QtCore/QTimer\', \'lib/libQt5Concurrent.so\', \'include/qt/QtMultimedia/qimageencodercontrol.h\', \'include/qt/QtGui/QRadialGradient\', \'lib/cmake/Qt5Widgets/Qt5WidgetsMacros.cmake\', \'lib/libQt5QuickWidgets.so.5.6.2\', \'include/qt/QtDesigner/abstractactioneditor.h\', \'include/qt/QtDesigner/QDesignerNewFormWidgetInterface\', \'lib/libQt5Sql.la\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcolumnview_p.h\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocketcorsauthenticator_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qtwebsecurityorigin_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/adapter1_bluez5_p.h\', \'include/qt/QtPrintSupport/QtPrintSupportDepends\', \'include/qt/QtDesigner/QtDesignerDepends\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommandjob_p.h\', \'include/qt/QtDesigner/taskmenu.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextformat_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebkittest_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4assembler_p.h\', \'include/qt/QtWebKit/qtwebkitversion.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpixmapcache_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgyearmonth_p.h\', \'include/qt/QtWidgets/QScroller\', \'plugins/generic/libqtuiotouchplugin.so\', \'include/qt/QtWidgets/qabstractitemdelegate.h\', \'include/qt/QtDBus/qdbusinterface.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_propertyeditor_p.h\', \'include/qt/QtMultimedia/QCamera\', \'qml/QtQuick/Controls/Styles/Base/CommonStyleHelper.qml\', \'mkspecs/features/exclusive_builds.prf\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusconnectionmanager_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfontconfigdatabase_p.h\', \'include/qt/QtCore/QXmlStreamReader\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qitemmappingiterator_p.h\', \'include/qt/QtGui/qstatictext.h\', \'include/qt/QtPlatformHeaders/QCocoaNativeContext\', \'mkspecs/freebsd-g++/qmake.conf\', \'include/qt/QtCore/QMessageAuthenticationCode\', \'mkspecs/macx-g++42/Info.plist.app\', \'include/qt/QtQml/5.6.2/QtQml/private/qjsengine_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgdefaultimagenode_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicswidget_p.h\', \'include/qt/QtDesigner/abstractformwindow.h\', \'lib/libQt5Nfc.so.5.6.2\', \'translations/qt_he.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qstorageinfo_p.h\', \'include/qt/QtCore/QSet\', \'include/qt/QtGui/QColor\', \'mkspecs/macx-g++-32/qmake.conf\', \'include/qt/QtNetwork/QNetworkInterface\', \'mkspecs/macx-g++40/qmake.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4arraybuffer_p.h\', \'doc/global/template/images/btn_prev.png\', \'include/qt/QtGui/qopenglext.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qstatemachine_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpserver_p_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_kqueue_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccesscachebackend_p.h\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/qpa/qplatformprintdevice.h\', \'include/qt/QtCore/QPointer\', \'bin/moc\', \'include/qt/QtMultimedia/QCameraFocusZone\', \'lib/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfig.cmake\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpnetworkheader_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qkeysequence_p.h\', \'include/qt/QtCore/QMimeDatabase\', \'include/qt/QtGui/QSessionManager\', \'mkspecs/features/qt_config.prf\', \'include/qt/QtGui/5.6.2/QtGui/private/qgridlayoutengine_p.h\', \'translations/qtscript_fi.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qintersectiterator_p.h\', \'include/qt/QtWidgets/QMenu\', \'include/qt/QtWidgets/QColumnView\', \'lib/pkgconfig/Qt5Svg.pc\', \'include/qt/QtWidgets/qgraphicslayout.h\', \'include/qt/QtDesigner/QDesignerLanguageExtension\', \'include/qt/QtWidgets/QGraphicsSceneResizeEvent\', \'include/qt/QtWidgets/qtwidgetsversion.h\', \'include/qt/QtWebKitWidgets/QWebHitTestResult\', \'mkspecs/modules/qt_lib_sql.pri\', \'include/qt/QtWebKit/qwebhistory.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmimetype_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlineedit_p.h\', \'mkspecs/common/ios/GLES2/gl2.h\', \'include/qt/QtQuickWidgets/qtquickwidgetsversion.h\', \'mkspecs/darwin-g++/qmake.conf\', \'include/qt/QtWidgets/QScrollBar\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptxmlparser_p.h\', \'include/qt/QtMultimedia/QtMultimediaDepends\', \'lib/libQt5Quick.so.5.6.2\', \'mkspecs/wince70embedded-armv4i-msvc2008/qmake.conf\', \'include/qt/QtQuickParticles/QtQuickParticlesVersion\', \'include/qt/QtDesigner/QDesignerIntegrationInterface\', \'include/qt/QtNetwork/QtNetwork\', \'mkspecs/macx-llvm/qmake.conf\', \'include/qt/QtCore/QAnimationGroup\', \'translations/qtquickcontrols_fr.qm\', \'include/qt/QtGui/QTextLine\', \'lib/libQt5CLucene.so.5.6\', \'include/qt/QtWidgets/qmaccocoaviewcontainer_mac.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmutexpool_p.h\', \'lib/libQt5XmlPatterns.so\', \'include/qt/QtCore/qstandardpaths.h\', \'lib/libQt5X11Extras.so\', \'mkspecs/common/aix/qplatformdefs.h\', \'mkspecs/features/win32/stl.prf\', \'include/qt/QtBluetooth/QBluetoothTransferReply\', \'include/qt/QtWidgets/qapplication.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4regexp_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomizer_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdattributegroup_p.h\', \'include/qt/QtMultimedia/QMultimedia\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qundostack_p.h\', \'include/qt/QtWidgets/QTapAndHoldGesture\', \'include/qt/QtSql/QtSql\', \'include/qt/QtWidgets/QHBoxLayout\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdecimal_p.h\', \'include/qt/QtOpenGL/QGLContext\', \'include/qt/QtGui/qfontdatabase.h\', \'qml/QtQuick/Controls/BusyIndicator.qml\', \'mkspecs/common/sanitize.conf\', \'include/qt/QtXmlPatterns/qxmlformatter.h\', \'lib/libQt5Script.prl\', \'translations/qt_ko.qm\', \'include/qt/QtNetwork/qsslkey.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_formeditorcommand_p.h\', \'include/qt/QtTest/qsignalspy.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsproxywidget_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimator_p_p.h\', \'translations/qtdeclarative_sk.qm\', \'include/qt/QtScript/QScriptSyntaxCheckResult\', \'include/qt/QtX11Extras/qtx11extrasversion.h\', \'include/qt/QtWidgets/QStyleOptionToolBoxV2\', \'mkspecs/linux-kcc/qmake.conf\', \'include/qt/QtCore/5.6.2/QtCore/private/qsharedmemory_p.h\', \'include/qt/QtWidgets/qrubberband.h\', \'include/qt/QtGui/QOpenGLFunctions_ES2\', \'include/qt/QtCore/qfile.h\', \'translations/linguist_ru.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlpatternistcli_p.h\', \'qml/QtQuick/Extras/designer/PictureSpecifics.qml\', \'qml/QtQuick/Controls/Styles/Base/images/groupbox.png\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qgl_p.h\', \'bin/qdbusxml2cpp\', \'qml/QtGraphicalEffects/Displace.qml\', \'lib/pkgconfig/Qt5Quick.pc\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4sequenceobject_p.h\', \'lib/cmake/Qt5Sql/Qt5SqlConfigVersion.cmake\', \'translations/linguist_ja.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qoptimizerframework_p.h\', \'lib/cmake/Qt5Gui/Qt5GuiConfig.cmake\', \'include/qt/QtCore/QListSpecialMethods\', \'include/qt/QtWidgets/qitemdelegate.h\', \'include/qt/QtCore/QVariantList\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4heap_p.h\', \'include/qt/QtQuick/QSGTransformNode\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4alloca_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qfunctionsignature_p.h\', \'include/qt/QtBluetooth/qbluetoothserver.h\', \'doc/global/template/images/bullet_gt.png\', \'plugins/generic/libqevdevmouseplugin.so\', \'qml/QtQuick/Controls/Styles/Base/HandleStyle.qml\', \'qml/QtGraphicalEffects/GaussianBlur.qml\', \'include/qt/QtUiPlugin/QDesignerCustomWidgetCollectionInterface\', \'include/qt/QtCore/QSignalTransition\', \'plugins/mediaservice/libgstmediacapture.so\', \'include/qt/QtCore/QScopedPointerDeleteLater\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qapplytemplate_p.h\', \'doc/global/template/scripts/extras.js\', \'include/qt/QtWidgets/qgraphicsanchorlayout.h\', \'include/qt/QtMultimedia/QVideoRendererControl\', \'lib/cmake/Qt5Multimedia/Qt5MultimediaConfig.cmake\', \'include/qt/QtGui/5.6.2/QtGui/private/qtouchdevice_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptbreakpointswidgetinterface_p.h\', \'include/qt/QtPrintSupport/qprinter.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebloadrequest_p.h\', \'mkspecs/android-clang/qplatformdefs.h\', \'lib/libQt5WebSockets.la\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickrepeater_p_p.h\', \'lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfig.cmake\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/shared_enums_p.h\', \'qml/QtQml/Models.2/libmodelsplugin.so\', \'include/qt/QtScript/QScriptProgram\', \'include/qt/QtXml/QXmlSimpleReader\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylist_p.h\', \'include/qt/QtGui/qclipboard.h\', \'include/qt/QtGui/qbrush.h\', \'mkspecs/common/ios.conf\', \'include/qt/QtWidgets/QGraphicsSceneHelpEvent\', \'include/qt/QtNfc/qndefnfcurirecord.h\', \'qml/QtQuick/Controls/Private/TabBar.qml\', \'qml/QtQuick/Extras/designer/images/piemenu-icon16.png\', \'include/qt/QtCore/QStaticAssertFailure\', \'include/qt/QtWidgets/qlabel.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgrendernode_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkdiskcache_p.h\', \'include/qt/QtGui/qpixmapcache.h\', \'mkspecs/macx-xcode/WorkspaceSettings.xcsettings\', \'qml/QtQuick/Controls/Button.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qelementavailablefn_p.h\', \'include/qt/QtMultimedia/qmediaserviceproviderplugin.h\', \'include/qt/QtTest/qtestdata.h\', \'include/qt/QtWidgets/QDialog\', \'lib/libQt5Bluetooth.la\', \'include/qt/QtGui/QTextBlockFormat\', \'include/qt/QtCore/QSettings\', \'include/qt/QtWidgets/qdatetimeedit.h\', \'lib/libQt5WebChannel.so\', \'translations/qt_en.qm\', \'qml/QtQuick/Controls/Private/MenuContentItem.qml\', \'include/qt/QtOpenGL/qtopenglversion.h\', \'include/qt/QtXml/QtXmlDepends\', \'qml/QtTest/TestCase.qml\', \'include/qt/QtDesigner/QAbstractExtensionManager\', \'doc/global/template/style/list_arrow.png\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_taskmenu_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qppsobject_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickutilmodule_p.h\', \'include/qt/QtWidgets/qdial.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4objectproto_p.h\', \'translations/qmlviewer_fi.qm\', \'mkspecs/unsupported/vxworks-simpentium-g++/qplatformdefs.h\', \'include/qt/QtQuick/qquickview.h\', \'include/qt/QtGui/QTextDocumentFragment\', \'mkspecs/wince60standard-armv4i-msvc2005/qplatformdefs.h\', \'include/qt/QtMultimedia/QCameraCaptureDestinationControl\', \'include/qt/QtMultimedia/qmediaencodersettings.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcastas_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextengine_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdstatemachine_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/itemviews_p.h\', \'include/qt/QtWebKitWidgets/qgraphicswebview.h\', \'translations/linguist_en.qm\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebdownloaditem_p.h\', \'include/qt/QtCore/qlibrary.h\', \'include/qt/QtTest/5.6.2/QtTest/private/callgrind_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothserver_osx_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/properties_p.h\', \'lib/libQt5Gui.so\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsparser_p.h\', \'include/qt/QtCore/QUrlQuery\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4mm_p.h\', \'mkspecs/common/qcc-base-qnx-armle-v7.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlpropertycache_p.h\', \'mkspecs/hpuxi-acc-32/qplatformdefs.h\', \'include/qt/QtGui/qpainterpath.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpaintengine_pic_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qbytedata_p.h\', \'lib/libQt5WebSockets.so\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptclassobject_p.h\', \'translations/qtxmlpatterns_pl.qm\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcomponentattached_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothtransferreply_osx_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4jsir_p.h\', \'include/qt/QtGui/qopengltexture.h\', \'include/qt/QtCore/QVectorIterator\', \'include/qt/QtSql/QSqlRelationalDelegate\', \'include/qt/QtQuickTest/quicktest.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qgmonthday_p.h\', \'mkspecs/features/win32/windeployqt.prf\', \'include/qt/QtCore/qtypeinfo.h\', \'mkspecs/unsupported/vxworks-ppc-dcc/qmake.conf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscripterrorlogwidgetinterface_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexternalvariableloader_p.h\', \'qml/QtGraphicalEffects/private/FastGlow.qml\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsocketdataprocessor_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmutex_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstaticcontext_p.h\', \'include/qt/QtWidgets/QToolBox\', \'bin/qmltestrunner\', \'include/qt/QtGui/qopengldebug.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtsdpinquiry_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4variantobject_p.h\', \'bin/assistant\', \'include/qt/QtNetwork/qtnetworkversion.h\', \'include/qt/QtQuick/QSGAbstractRenderer\', \'mkspecs/modules/qt_lib_testlib_private.pri\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnamepool_p.h\', \'qml/QtQuick/Controls/Styles/Base/TreeViewStyle.qml\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformdialoghelper.h\', \'include/qt/QtCore/QtAlgorithms\', \'mkspecs/common/winrt_winphone/assets/logo_44x44.png\', \'mkspecs/common/winrt_winphone/manifests/10.0/AppxManifest.xml.in\', \'include/qt/QtSql/qsqlrelationaltablemodel.h\', \'include/qt/QtCore/QAtomicInteger\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlmodelindexvaluetype_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquicktargetdirection_p.h\', \'include/qt/QtGui/QPaintEngineState\', \'include/qt/QtCore/QGenericReturnArgument\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlexpression_p.h\', \'lib/libQt5Gui.so.5.6.2\', \'include/qt/QtCore/qmimedata.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qpatternplatform_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomicmathematician_p.h\', \'include/qt/QtOpenGL/QtOpenGLVersion\', \'include/qt/QtGui/QImageCleanupFunction\', \'include/qt/QtGui/QtGuiDepends\', \'lib/libQt5Widgets.so.5.6\', \'include/qt/QtCore/5.6.2/QtCore/private/qppsobjectprivate_p.h\', \'include/qt/QtCore/qfuturewatcher.h\', \'mkspecs/devices/linux-arm-hisilicon-hix5hd2-g++/qplatformdefs.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerjobschedulerinterface_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothhostinfo_p.h\', \'include/qt/QtCore/QStateMachine\', \'include/qt/QtGui/QPlatformSurfaceEvent\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qbitfield_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4context_p.h\', \'include/qt/QtQml/QQmlInfo\', \'include/qt/QtGui/QDesktopServices\', \'include/qt/QtXmlPatterns/qabstractxmlreceiver.h\', \'include/qt/QtDesigner/container.h\', \'include/qt/QtGui/QPagedPaintDevice\', \'lib/cmake/Qt5Gui/Qt5Gui_QTiffPlugin.cmake\', \'include/qt/QtTest/5.6.2/QtTest/private/cycle_p.h\', \'translations/qtdeclarative_uk.qm\', \'include/qt/QtMultimedia/QSoundEffect\', \'include/qt/QtCore/5.6.2/QtCore/private/qcrashhandler_p.h\', \'include/qt/QtGui/qfontinfo.h\', \'include/qt/QtGui/QImageIOPlugin\', \'mkspecs/features/precompile_header.prf\', \'include/qt/QtTest/5.6.2/QtTest/private/qabstracttestlogger_p.h\', \'include/qt/QtCore/QHistoryState\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpserver_android_p.h\', \'qml/QtQuick/Controls/Private/CalendarHeaderModel.qml\', \'include/qt/QtGui/qopenglfunctions_1_1.h\', \'include/qt/QtGui/QDragMoveEvent\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideowidget_p.h\', \'lib/libQt5Sql.so.5.6\', \'lib/libqgsttools_p.so.1.0.0\', \'include/qt/QtQuick/qquickwindow.h\', \'lib/libQt5Qml.la\', \'include/qt/QtBluetooth/QLowEnergyService\', \'include/qt/QtGui/QCursor\', \'mkspecs/devices/linux-sh4-stmicro-ST7540-g++/qplatformdefs.h\', \'qml/QtQuick/Controls/Styles/Desktop/TreeViewStyle.qml\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstategroup_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qabstractlayoutstyleinfo_p.h\', \'plugins/platforminputcontexts/libibusplatforminputcontextplugin.so\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebnavigationhistory_p_p.h\', \'include/qt/QtSvg/qsvgwidget.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qresolveurifn_p.h\', \'lib/cmake/Qt5Qml/Qt5QmlConfigExtras.cmake\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtarget_neard_p.h\', \'include/qt/QtCore/QAbstractAnimation\', \'lib/libQt5Bluetooth.so\', \'mkspecs/macx-clang-32/Info.plist.app\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglqueryhelper_p.h\', \'qml/QtMultimedia/libdeclarative_multimedia.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qzipwriter_p.h\', \'mkspecs/features/data/dummy.cpp\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/serveracceptancethread_p.h\', \'mkspecs/features/declarative_debug.prf\', \'include/qt/QtCore/5.6.2/QtCore/private/qeucjpcodec_p.h\', \'include/qt/QtQuick/QtQuickVersion\', \'lib/libQt5X11Extras.so.5\', \'include/qt/QtDesigner/QDesignerWidgetFactoryInterface\', \'include/qt/QtCore/5.6.2/QtCore/private/qsimplecodec_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qcssutil_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfunctions_fake_env_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdatetimefns_tpl_p.h\', \'include/qt/QtGui/QMoveEvent\', \'lib/pkgconfig/Qt5Concurrent.pc\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4include_p.h\', \'mkspecs/hpuxi-acc-64/qplatformdefs.h\', \'include/qt/QtNetwork/QHostAddress\', \'include/qt/QtMultimedia/QMediaServiceCameraInfoInterface\', \'mkspecs/features/plugin_bundle.prf\', \'include/qt/QtMultimediaWidgets/QGraphicsVideoItem\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickangledirection_p.h\', \'lib/libQt5Bluetooth.so.5\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnodebuilder_p.h\', \'mkspecs/features/qpa/basicunixfontdatabase.prf\', \'include/qt/QtNetwork/qauthenticator.h\', \'mkspecs/features/unix/separate_debug_info.prf\', \'translations/qtxmlpatterns_uk.qm\', \'include/qt/QtSql/qsqlquerymodel.h\', \'include/qt/QtWidgets/qwidgetsfunctions_wince.h\', \'include/qt/QtHelp/QHelpContentItem\', \'include/qt/QtCore/5.6.2/QtCore/private/qfsfileengine_iterator_p.h\', \'include/qt/QtWidgets/qspinbox.h\', \'qml/QtQuick/Dialogs/Private/libdialogsprivateplugin.so\', \'include/qt/QtGui/QEnterEvent\', \'include/qt/QtNfc/5.6.2/QtNfc/private/androidmainnewintentlistener_p.h\', \'mkspecs/modules/qt_lib_printsupport.pri\', \'include/qt/QtGui/QWindowList\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qprojectedexpression_p.h\', \'include/qt/QtCore/QDirIterator\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickevents_p_p.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldsharemanager_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlresultitems_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolecommandgroupdata_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qpodvector_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessbackend_p.h\', \'include/qt/QtQuick/QSGEngine\', \'include/qt/QtGui/QVector3D\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qllcpsocket_p.h\', \'include/qt/QtWebKit/QWebHistoryItem\', \'include/qt/QtCore/qelapsedtimer.h\', \'include/qt/QtWidgets/QAbstractGraphicsShapeItem\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qtresourceeditordialog_p.h\', \'include/qt/QtCore/QItemSelectionModel\', \'lib/cmake/Qt5UiPlugin/Qt5UiPluginConfig.cmake\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpsearchindexwriter_clucene_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpathclipper_p.h\', \'lib/cmake/Qt5Core/Qt5CTestMacros.cmake\', \'include/qt/QtOpenGL/QGLFramebufferObject\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/iconselector_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qarithmeticexpression_p.h\', \'qml/QtQuick/Controls/Styles/Base/HandleStyleHelper.qml\', \'include/qt/QtCLucene/QtCLuceneVersion\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkcookie_p.h\', \'qml/QtQuick/Controls/CheckBox.qml\', \'include/qt/QtCore/qconfig-large.h\', \'include/qt/QtSql/qsqlfield.h\', \'lib/cmake/Qt5Widgets/Qt5WidgetsConfigExtras.cmake\', \'include/qt/QtQuick/QQuickRenderControl\', \'include/qt/QtCore/5.6.2/QtCore/private/qjiscodec_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickflickable_p_p.h\', \'include/qt/QtCore/qcache.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4qobjectwrapper_p.h\', \'include/qt/QtCore/QQueue\', \'doc/global/template/images/btn_next.png\', \'include/qt/QtMultimedia/QCameraCaptureBufferFormatControl\', \'include/qt/QtWidgets/QCalendarWidget\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdreference_p.h\', \'qml/QtMultimedia/Video.qml\', \'include/qt/QtCore/QWinEventNotifier\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qfield_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qasn1element_p.h\', \'include/qt/QtCore/qmargins.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpathview_p.h\', \'plugins/audio/libqtaudio_alsa.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qrbtree_p.h\', \'include/qt/QtCore/QSharedPointer\', \'include/qt/QtTest/qtestcase.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qdialog_p.h\', \'mkspecs/linux-pgcc/qmake.conf\', \'include/qt/QtMultimedia/QCameraFocusZoneList\', \'include/qt/QtQml/QQmlIncubationController\', \'lib/libqgsttools_p.so.1\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qlistview_p.h\', \'lib/pkgconfig/Qt5Script.pc\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4identifier_p.h\', \'include/qt/QtDesigner/uilib_global.h\', \'mkspecs/linux-llvm/qmake.conf\', \'mkspecs/winrt-x64-msvc2015/qmake.conf\', \'include/qt/QtCore/QXmlStreamEntityDeclarations\', \'include/qt/QtDesigner/abstractmetadatabase.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qbenchmark_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsequentialanimationgroup_p.h\', \'include/qt/QtWidgets/QMessageBox\', \'lib/cmake/Qt5Help/Qt5HelpConfig.cmake\', \'include/qt/QtQuick/QSGClipNode\', \'include/qt/QtCore/QUnhandledException\', \'qml/QtWebKit/experimental/libqmlwebkitexperimentalplugin.so\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4mm_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowsmobilestyle_p_p.h\', \'include/qt/QtNetwork/QSslPreSharedKeyAuthenticator\', \'mkspecs/devices/linux-beagleboard-g++/qmake.conf\', \'include/qt/QtQml/QQmlApplicationEngine\', \'include/qt/QtWebSockets/5.6.2/QtWebSockets/private/qwebsockethandshakerequest_p.h\', \'include/qt/QtCore/QNoDebug\', \'include/qt/QtQuickTest/quicktestglobal.h\', \'include/qt/QtMultimedia/QAbstractAudioDeviceInfo\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljavascriptexpression_p.h\', \'translations/qtconnectivity_uk.qm\', \'include/qt/QtXml/QDomCDATASection\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qbasictypesfactory_p.h\', \'mkspecs/features/data/unix/findclasslist.pl\', \'lib/cmake/Qt5WebChannel/Qt5WebChannelConfigVersion.cmake\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslcipher_p.h\', \'phrasebooks/hungarian.qph\', \'mkspecs/blackberry-armle-v7-qcc/qmake.conf\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgfunctions_wince_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediacontrol_p.h\', \'mkspecs/macx-g++/Info.plist.dSYM.in\', \'include/qt/QtTest/QTestEventLoop\', \'qml/QtQuick/Extras/designer/images/gauge-icon16.png\', \'include/qt/QtCore/QAbstractTransition\', \'mkspecs/hpuxi-acc-64/qmake.conf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerscriptswidgetinterface_p_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpainterpath_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/ButtonStyle.qml\', \'include/qt/QtCore/qjsonarray.h\', \'translations/qt_help_sk.qm\', \'qml/QtQuick/Controls/Private/Control.qml\', \'include/qt/QtGui/qopengltimerquery.h\', \'include/qt/QtCore/QArrayDataPointer\', \'include/qt/QtGui/QPageLayout\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4arrayobject_p.h\', \'include/qt/QtOpenGL/QGLWidget\', \'include/qt/QtCore/5.6.2/QtCore/private/qloggingregistry_p.h\', \'include/qt/QtGui/QPaintEngine\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptbreakpointdata_p.h\', \'translations/qtserialport_ja.qm\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglframebufferobject_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtrfcommchannel_p.h\', \'include/qt/QtBluetooth/QBluetoothDeviceDiscoveryAgent\', \'include/qt/QtWidgets/qcommonstyle.h\', \'include/qt/QtCore/QLoggingCategory\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystemwatcher_fsevents_p.h\', \'lib/cmake/Qt5Svg/Qt5Svg_QSvgPlugin.cmake\', \'include/qt/QtWidgets/qtextedit.h\', \'qml/QtQuick/Controls/Private/EditMenu_ios.qml\', \'include/qt/QtWidgets/QStyleOptionProgressBarV2\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/lib_pch.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvalidate_p.h\', \'translations/assistant_zh_CN.qm\', \'include/qt/QtCore/qatomic_bootstrap.h\', \'include/qt/QtWebKit/QWebElement\', \'mkspecs/common/winrt_winphone/manifests/8.1_wp/AppxManifest.xml.in\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldtarget_android_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglshadercache_p.h\', \'include/qt/QtNetwork/QAuthenticator\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-down@2x.png\', \'include/qt/QtCore/QGlobalStatic\', \'mkspecs/features/link_ltcg.prf\', \'include/qt/QtDBus/QDBusServiceWatcher\', \'include/qt/QtCore/qmimetype.h\', \'mkspecs/irix-g++-64/qmake.conf\', \'mkspecs/common/msvc-base.conf\', \'include/qt/QtWidgets/QBoxLayout\', \'lib/libQt5MultimediaWidgets.so.5.6\', \'include/qt/QtGui/QOpenGLFunctions_3_3_Core\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupportstates_p.h\', \'include/qt/QtDBus/qdbusreply.h\', \'mkspecs/win32-icc/qplatformdefs.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnodesort_p.h\', \'mkspecs/modules/qt_lib_scripttools.pri\', \'lib/cmake/Qt5Gui/Qt5Gui_QDDSPlugin.cmake\', \'lib/cmake/Qt5Core/Qt5CoreConfigVersion.cmake\', \'include/qt/QtWidgets/QSlider\', \'include/qt/QtWidgets/qcombobox.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qanyuri_p.h\', \'include/qt/QtConcurrent/qtconcurrentiteratekernel.h\', \'lib/cmake/Qt5Nfc/Qt5NfcConfig.cmake\', \'include/qt/QtWidgets/QColormap\', \'include/qt/QtPrintSupport/QAbstractPrintDialog\', \'mkspecs/linux-kcc/qplatformdefs.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanagerimpl_p.h\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquicktrailemitter_p.h\', \'include/qt/QtGui/QTextImageFormat\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4persistent_p.h\', \'include/qt/QtQuick/QSGRootNode\', \'include/qt/QtWidgets/QTreeWidgetItem\', \'lib/libQt5PrintSupport.so.5\', \'include/qt/QtQml/qtqmlglobal.h\', \'include/qt/QtGui/qopengles2ext.h\', \'include/qt/QtCore/QMutableByteArrayListIterator\', \'mkspecs/winrt-x64-msvc2013/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickmousearea_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qintrusivelist_p.h\', \'include/qt/QtGui/QPalette\', \'mkspecs/darwin-g++/qplatformdefs.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qcore_mac_p.h\', \'mkspecs/devices/linux-snowball-g++/qmake.conf\', \'include/qt/QtGui/qregion.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qacceliterators_p.h\', \'include/qt/QtGui/QInputMethodQueryEvent\', \'include/qt/QtCore/qrect.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qcosmeticstroker_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qdevicediscovery_p.h\', \'lib/libQt5ScriptTools.prl\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmllistaccessor_p.h\', \'include/qt/QtMultimedia/qmediametadata.h\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbuspendingcall_p.h\', \'include/qt/QtMultimedia/QMetaDataWriterControl\', \'include/qt/QtCore/qpointer.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qatomictypedispatch_p.h\', \'lib/libQt5Designer.so.5\', \'include/qt/QtHelp/QHelpSearchQueryWidget\', \'include/qt/QtSql/QtSqlVersion\', \'mkspecs/features/ctest_testcase_installed.prf\', \'lib/libQt5OpenGL.la\', \'mkspecs/hpux-g++/qmake.conf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicslayoutitem_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschemaparsercontext_p.h\', \'include/qt/QtBluetooth/qbluetoothdeviceinfo.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebplugindatabase_p.h\', \'include/qt/QtNfc/QNdefNfcSmartPosterRecord\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qscrollarea_p.h\', \'include/qt/QtMultimedia/qmediacontainercontrol.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/plaintexteditor_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggeragent_p.h\', \'include/qt/QtGui/QTextCharFormat\', \'include/qt/QtWidgets/QStyleOption\', \'translations/qmlviewer_ko.qm\', \'translations/qtdeclarative_ru.qm\', \'include/qt/QtCore/QtMath\', \'include/qt/QtHelp/5.6.2/QtHelp/private/qhelpprojectdata_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qstyleanimation_p.h\', \'translations/qtbase_ca.qm\', \'include/qt/QtWidgets/qlcdnumber.h\', \'include/qt/QtWidgets/QTreeWidgetItemIterator\', \'mkspecs/features/unix/bsymbolic_functions.prf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwindowscestyle_p_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylistcontrol_p.h\', \'include/qt/QtPlatformSupport/QtPlatformSupport\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4runtime_p.h\', \'lib/libQt5X11Extras.so.5.6\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdattribute_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/device1_bluez5_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevkeyboardhandler_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/inputstreamthread_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4string_p.h\', \'translations/qtscript_ja.qm\', \'include/qt/QtDesigner/abstractoptionspage.h\', \'include/qt/QtCore/QMutexLocker\', \'include/qt/QtBluetooth/QBluetoothServiceDiscoveryAgent\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaservice_p.h\', \'include/qt/QtMultimedia/QMediaServiceSupportedDevicesInterface\', \'include/qt/QtNetwork/QNetworkCacheMetaData\', \'include/qt/QtCore/QFileDevice\', \'bin/rcc\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfiledialog_p.h\', \'include/qt/QtWidgets/QStyle\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptfunction_p.h\', \'include/qt/QtCore/QSharedData\', \'include/qt/QtCore/QAbstractState\', \'include/qt/QtCore/qt_windows.h\', \'include/qt/QtGui/QOpenGLFunctions_4_2_Compatibility\', \'include/qt/QtCore/QDeferredDeleteEvent\', \'mkspecs/devices/linux-archos-gen8-g++/qmake.conf\', \'qml/QtQuick/Controls/Private/MenuItemSubControls.qml\', \'include/qt/QtCore/QXmlStreamStringRef\', \'mkspecs/android-clang/qmake.conf\', \'include/qt/QtCore/qfilesystemwatcher.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qshortcutmap_p.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaplaylistprovider_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktextmetrics_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsorttuple_p.h\', \'phrasebooks/polish.qph\', \'translations/qtquick1_ca.qm\', \'lib/libQt5WebKit.so.5\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qmenu_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qxbmhandler_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qpathsimplifier_p.h\', \'lib/libQt5WebKit.prl\', \'include/qt/QtGui/qmovie.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxslttokenlookup_p.h\', \'mkspecs/netbsd-g++/qplatformdefs.h\', \'include/qt/QtWidgets/qstylefactory.h\', \'qml/QtNfc/qmldir\', \'include/qt/QtGui/QMatrix4x3\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qdnslookup_p.h\', \'include/qt/QtGui/QMatrix4x4\', \'lib/cmake/Qt5X11Extras/Qt5X11ExtrasConfig.cmake\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquicktranslate_p.h\', \'translations/qtmultimedia_fi.qm\', \'mkspecs/modules/qt_lib_qmldevtools_private.pri\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/androidbroadcastreceiver_p.h\', \'include/qt/QtQuickTest/QtQuickTestDepends\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquickwebview_p.h\', \'lib/libQt5Svg.prl\', \'qml/QtQuick/Dialogs/Private/plugins.qmltypes\', \'include/qt/QtPrintSupport/qprintpreviewdialog.h\', \'translations/qtquickcontrols_ja.qm\', \'translations/qtquick1_sk.qm\', \'include/qt/QtGui/QFontMetrics\', \'include/qt/QtDBus/qdbusabstractinterface.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdaytimeduration_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qtquickglobal_p.h\', \'mkspecs/modules/qt_lib_webchannel.pri\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmltypenamecache_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qebvtype_p.h\', \'include/qt/QtGui/QDragLeaveEvent\', \'include/qt/QtCore/qtextboundaryfinder.h\', \'lib/cmake/Qt5PrintSupport/Qt5PrintSupportConfigVersion.cmake\', \'qml/QtQuick/Controls/Private/style.js\', \'mkspecs/features/qt_helper_lib.prf\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_qsettings_p.h\', \'qml/QtQuick/Extras/designer/ToggleButtonSpecifics.qml\', \'doc/global/template/style/icomoon.ttf\', \'qml/QtQuick/Controls/Styles/Base/images/check@2x.png\', \'include/qt/QtWidgets/QTextBrowser\', \'include/qt/QtWidgets/qlayout.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qframe_p.h\', \'mkspecs/modules/qt_lib_platformsupport_private.pri\', \'mkspecs/modules/qt_lib_multimediawidgets.pri\', \'include/qt/QtGui/5.6.2/QtGui/private/qglyphrun_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcardinality_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quntypedatomicconverter_p.h\', \'include/qt/QtCore/QMessageLogContext\', \'mkspecs/modules/qt_lib_x11extras.pri\', \'include/qt/QtGui/QRgb\', \'mkspecs/features/build_pass.prf\', \'mkspecs/macx-xcode/qmake.conf\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextdocumentlayout_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qtcpserver_p.h\', \'doc/global/template/images/Qt-gradient.png\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerlocalsmodel_p.h\', \'include/qt/QtWidgets/QGraphicsItemAnimation\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/servicediscoverybroadcastreceiver_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetaction_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qstandardgestures_p.h\', \'lib/cmake/Qt5Sql/Qt5Sql_QSQLiteDriverPlugin.cmake\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4serialize_p.h\', \'mkspecs/devices/linux-sh4-stmicro-ST7540-g++/qmake.conf\', \'include/qt/QtCore/QMetaType\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgengine_p.h\', \'mkspecs/win32-icc/qmake.conf\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerscriptswidget_p.h\', \'include/qt/QtCore/QEventLoopLocker\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexternalvariablereference_p.h\', \'include/qt/QtWidgets/QFontDialog\', \'include/qt/QtQuick/qsgflatcolormaterial.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodewidgetinterface_p.h\', \'translations/qt_sl.qm\', \'mkspecs/features/win32/opengl.prf\', \'include/qt/QtXml/QXmlEntityResolver\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdidchelper_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlvaluetypewrapper_p.h\', \'include/qt/QtCore/QXmlStreamWriter\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgtkglobal_p.h\', \'mkspecs/features/qlalr.prf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qabstractitemview_p.h\', \'lib/libQt5DesignerComponents.so.5.6.2\', \'include/qt/QtCore/QPropertyAnimation\', \'include/qt/QtCore/QtPluginMetaDataFunction\', \'include/qt/QtWidgets/qcalendarwidget.h\', \'qml/QtGraphicalEffects/RadialBlur.qml\', \'include/qt/QtCore/QObject\', \'include/qt/QtSql/QtSqlDepends\', \'qml/QtQuick/Extras/designer/images/togglebutton-icon16.png\', \'include/qt/QtDesigner/QExtensionManager\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlobjectmodel_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qtriangulatingstroker_p.h\', \'include/qt/QtCore/QReturnArgument\', \'include/qt/QtOpenGL/QGLFunctionsPrivate\', \'include/qt/QtGui/QOpenGLFunctions_1_3\', \'include/qt/QtGui/QOpenGLFunctions_1_2\', \'include/qt/QtGui/QOpenGLFunctions_1_1\', \'include/qt/QtGui/QOpenGLFunctions_1_0\', \'include/qt/QtGui/QOpenGLFunctions_1_5\', \'include/qt/QtCore/QVariantMap\', \'include/qt/QtSvg/5.6.2/QtSvg/private/qsvgstructure_p.h\', \'include/qt/QtNetwork/qnetworksession.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupportpropertychanges_p.h\', \'include/qt/QtNetwork/qnetworkconfiguration.h\', \'include/qt/QtXml/QXmlDeclHandler\', \'mkspecs/macx-ios-clang/features/default_post.prf\', \'mkspecs/win32-msvc2012/qmake.conf\', \'include/qt/QtWidgets/QWidget\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qerrorfn_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4executableallocator_p.h\', \'include/qt/QtQuick/QQuickImageResponse\', \'lib/cmake/Qt5Gui/Qt5Gui_QEvdevTouchScreenPlugin.cmake\', \'include/qt/QtCore/QHashNode\', \'translations/qtxmlpatterns_de.qm\', \'lib/libQt5MultimediaWidgets.prl\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnumerictype_p.h\', \'include/qt/QtCore/qeventloop.h\', \'lib/libQt5Network.la\', \'include/qt/QtCore/5.6.2/QtCore/private/qthread_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetwindow_p.h\', \'translations/qt_fr.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4object_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtutility_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/testwindow.h\', \'include/qt/QtGui/QWidgetSet\', \'mkspecs/winrt-arm-msvc2013/qplatformdefs.h\', \'include/qt/QtGui/qimagewriter.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcoloringmessagehandler_p.h\', \'include/qt/QtGui/qstandarditemmodel.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qsavefile_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlcompiler_p.h\', \'mkspecs/blackberry-x86-qcc/qmake.conf\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstcodecsinfo_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qgifhandler_p.h\', \'include/qt/QtScript/QScriptValueList\', \'include/qt/QtCore/QDir\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4codegen_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebugoutputwidgetinterface_p.h\', \'lib/cmake/Qt5Network/Qt5Network_QNetworkManagerEnginePlugin.cmake\', \'include/qt/QtWidgets/QKeySequenceEdit\', \'include/qt/QtWidgets/qprogressbar.h\', \'include/qt/QtGui/QTextOption\', \'include/qt/QtCore/5.6.2/QtCore/private/qreadwritelock_p.h\', \'mkspecs/sco-cc/qplatformdefs.h\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qndefnfcsmartposterrecord_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdtypechecker_p.h\', \'doc/global/template/images/page_bg.png\', \'qml/QtQuick/Controls/Styles/Base/GaugeStyle.qml\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdatetimefns_p.h\', \'include/qt/QtCore/qprocess.h\', \'translations/assistant_en.qm\', \'include/qt/QtCore/quuid.h\', \'mkspecs/macx-ios-clang/xcodebuild.mk\', \'include/qt/QtXmlPatterns/qsourcelocation.h\', \'include/qt/QtDesigner/abstractformeditor.h\', \'include/qt/QtQuick/qsgsimplematerial.h\', \'mkspecs/macx-ios-clang/Info.plist.dSYM.in\', \'include/qt/QtTest/QtTestVersion\', \'include/qt/QtGui/qopenglfunctions_3_2_compatibility.h\', \'include/qt/QtCore/QStaticStringData\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdocumentprojector_p.h\', \'include/qt/QtCore/QIncompatibleFlag\', \'include/qt/QtDesigner/QDesignerPropertyEditorInterface\', \'lib/pkgconfig/Qt5Widgets.pc\', \'include/qt/QtMultimediaWidgets/qvideowidgetcontrol.h\', \'include/qt/QtNetwork/QNetworkAddressEntry\', \'lib/cmake/Qt5Gui/Qt5Gui_QTuioTouchPlugin.cmake\', \'include/qt/QtWidgets/qpushbutton.h\', \'include/qt/QtCore/QFile\', \'mkspecs/hpuxi-g++-64/qmake.conf\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlglobal_p.h\', \'include/qt/QtWebKit/qwebsecurityorigin.h\', \'mkspecs/linux-arm-gnueabi-g++/qplatformdefs.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4memberdata_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qtqmlglobal_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/dialoggui_p.h\', \'include/qt/QtOpenGL/QtOpenGLDepends\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/quntyped_p.h\', \'translations/qt_help_cs.qm\', \'include/qt/QtMultimediaWidgets/QtMultimediaWidgetsDepends\', \'qml/QtQuick/Controls/Private/SourceProxy.qml\', \'include/qt/QtWidgets/QGraphicsPolygonItem\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_widgetitem_p.h\', \'qml/QtQuick/Controls/Styles/Base/ApplicationWindowStyle.qml\', \'include/qt/QtWidgets/QStyleOptionToolBox\', \'qml/QtGraphicalEffects/private/FastInnerShadow.qml\', \'include/qt/QtWidgets/QPlainTextEdit\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4string_p.h\', \'mkspecs/devices/linux-arm-amlogic-8726M-g++/qeglfshooks_8726m.cpp\', \'include/qt/QtCore/QtCoreDepends\', \'translations/qtbase_ja.qm\', \'include/qt/QtGui/QStaticText\', \'include/qt/QtWidgets/qradiobutton.h\', \'include/qt/QtPrintSupport/qprintpreviewwidget.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparestringfns_p.h\', \'include/qt/QtXml/qtxmlversion.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunparsedtextfn_p.h\', \'include/qt/QtNfc/QNdefNfcUriRecord\', \'include/qt/QtScript/qscriptengine.h\', \'mkspecs/modules/qt_lib_xmlpatterns_private.pri\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qxlibeglintegration_p.h\', \'mkspecs/winrt-arm-msvc2015/qmake.conf\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/csshighlighter_p.h\', \'qml/QtQuick/Controls/Styles/Desktop/ToolButtonStyle.qml\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslkey_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunresolvedvariablereference_p.h\', \'include/qt/QtSql/qsqldriverplugin.h\', \'plugins/platforms/libqminimal.so\', \'include/qt/QtGui/5.6.2/QtGui/private/qpixmap_raster_p.h\', \'bin/linguist\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qgstreamervideooverlay_p.h\', \'doc/global/template/images/bg_ul_blank.png\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qtquick2_p.h\', \'include/qt/QtCore/qset.h\', \'include/qt/QtGui/qrgb.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qwidgetlinecontrol_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qqmljsmemorypool_p.h\', \'include/qt/QtHelp/QHelpSearchQuery\', \'include/qt/QtQuick/qsgabstractrenderer.h\', \'include/qt/QtMultimedia/qcameralockscontrol.h\', \'include/qt/QtQuick/qquickrendercontrol.h\', \'include/qt/QtWidgets/qfilesystemmodel.h\', \'mkspecs/unixware-g++/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qexpression_p.h\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptable_p.h\', \'include/qt/QtGui/qopenglfunctions_es2.h\', \'doc/global/includes-online/search.qdoc\', \'include/qt/QtDesigner/qtdesignerversion.h\', \'include/qt/QtQml/qqmlengine.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggercodeview_p.h\', \'mkspecs/modules/qt_lib_script.pri\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qflagpointer_p.h\', \'include/qt/QtPrintSupport/QPrinter\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4errorobject_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qbearerengine_p.h\', \'mkspecs/common/ios/qmake.conf\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qxdgnotificationproxy_p.h\', \'include/qt/QtWidgets/qabstractitemview.h\', \'include/qt/QtMultimedia/QMediaAvailabilityControl\', \'include/qt/QtCore/QRect\', \'include/qt/QtQuick/QSGSimpleRectNode\', \'include/qt/QtConcurrent/qtconcurrentmedian.h\', \'include/qt/QtTest/5.6.2/QtTest/private/qtestelement_p.h\', \'mkspecs/modules/qt_lib_concurrent.pri\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qindexwriter_p.h\', \'include/qt/QtGui/QTextTableFormat\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qstatusnotifieritemadaptor_p.h\', \'lib/libQt5XmlPatterns.la\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanager_simulator_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qstackcontextbase_p.h\', \'lib/libQt5WebKit.so.5.6.2\', \'include/qt/QtMultimedia/QCameraImageCaptureControl\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgnodeupdater_p.h\', \'qml/QtWebChannel/libdeclarative_webchannel.so\', \'include/qt/QtCore/qtemporarydir.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediapluginloader_p.h\', \'include/qt/QtWidgets/QRadioButton\', \'translations/qt_help_ja.qm\', \'include/qt/QtCore/5.6.2/QtCore/private/qelfparser_p.h\', \'include/qt/QtGui/qopenglshaderprogram.h\', \'mkspecs/common/android-base-head.conf\', \'include/qt/QtSql/qsqlindex.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4stringobject_p.h\', \'translations/qt_help_gl.qm\', \'mkspecs/devices/linux-archos-gen8-g++/qplatformdefs.h\', \'include/qt/QtNetwork/qsslconfiguration.h\', \'doc/global/template/images/bullet_up.png\', \'qml/QtGraphicalEffects/qmldir\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qmediaresourcepolicy_p.h\', \'include/qt/QtQml/QQmlParserStatus\', \'include/qt/QtMultimediaQuick_p/5.6.2/QtMultimediaQuick_p/private/qsgvideonode_rgb_p.h\', \'include/qt/QtCore/QMetaProperty\', \'include/qt/QtCore/QMapNode\', \'lib/libQt5Multimedia.so.5\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformopenglcontext.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qschemanumeric_p.h\', \'include/qt/QtWidgets/QStyleOptionProgressBar\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickcontext2dcommandbuffer_p.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqlcachedresult_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkinterface_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnodecomparison_p.h\', \'include/qt/QtCore/QtDebug\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qsequencereceiver_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfile_p.h\', \'include/qt/QtHelp/qhelp_global.h\', \'include/qt/QtCore/QVariant\', \'lib/libQt5ScriptTools.so.5.6.2\', \'lib/pkgconfig/Qt5Bluetooth.pc\', \'mkspecs/sco-cc/qmake.conf\', \'include/qt/QtDesignerComponents/5.6.2/QtDesignerComponents/private/lib_pch.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qlibinputpointer_p.h\', \'include/qt/QtDBus/QDBusPendingReplyData\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_mysql_p.h\', \'include/qt/QtGui/QOpenGLVersionProfile\', \'include/qt/QtGui/QMovie\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusutil_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfunctions_p.h\', \'include/qt/QtWidgets/qtreeview.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qpodlist_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfbbackingstore_p.h\', \'include/qt/QtWebSockets/QtWebSocketsDepends\', \'mkspecs/devices/linux-sh4-stmicro-ST7108-g++/qplatformdefs.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickaccessiblefactory_p.h\', \'qml/QtQuick/Controls/Label.qml\', \'include/qt/QtCore/5.6.2/QtCore/private/qresource_iterator_p.h\', \'include/qt/QtQuick/qquickimageprovider.h\', \'include/qt/QtCore/QLocale\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4dateobject_p.h\', \'include/qt/QtWidgets/qcommandlinkbutton.h\', \'mkspecs/features/qmltestcase.prf\', \'include/qt/QtQuick/qsgnode.h\', \'include/qt/QtQuickTest/QtQuickTest\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qhttpprotocolhandler_p.h\', \'include/qt/QtTest/qtest_global.h\', \'lib/pkgconfig/Qt5X11Extras.pc\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qunparsedtextavailablefn_p.h\', \'include/qt/QtCore/qsystemdetection.h\', \'include/qt/QtGui/qicon.h\', \'include/qt/QtSvg/qsvggenerator.h\', \'include/qt/QtGui/QPolygon\', \'include/qt/QtScript/QScriptContextInfo\', \'include/qt/QtGui/qopenglpaintdevice.h\', \'include/qt/QtXml/QXmlLexicalHandler\', \'include/qt/QtCore/QLibrary\', \'include/qt/QtGui/QTextTable\', \'include/qt/QtCore/5.6.2/QtCore/private/qjpunicode_p.h\', \'mkspecs/qnx-x86-64-qcc/qmake.conf\', \'mkspecs/winphone-x86-msvc2013/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qaggregatefns_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopenglversionfunctionsfactory_p.h\', \'include/qt/QtUiPlugin/QDesignerCustomWidgetInterface\', \'mkspecs/linux-g++/qmake.conf\', \'lib/libQt5XcbQpa.la\', \'include/qt/QtCore/QLatin1Literal\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qfusionstyle_p.h\', \'mkspecs/devices/linux-mipsel-broadcom-97425-g++/qdirectfbeglhooks_bcm97425.cpp\', \'include/qt/QtWidgets/QFileSystemModel\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qnetworkaccessdelegator_p.h\', \'mkspecs/modules/qt_lib_multimedia_private.pri\', \'mkspecs/features/mac/rez.prf\', \'plugins/imageformats/libqicns.so\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerconsolewidgetinterface_p.h\', \'doc/global/template/scripts/main.js\', \'include/qt/QtGui/qopenglfunctions_4_1_core.h\', \'include/qt/QtGui/qtouchdevice.h\', \'translations/qtquick1_pl.qm\', \'mkspecs/devices/linux-arm-generic-g++/qmake.conf\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qpushbutton_p.h\', \'translations/qtquick1_fr.qm\', \'mkspecs/openbsd-g++/qplatformdefs.h\', \'include/qt/QtDesignerComponents/qtdesignercomponentsversion.h\', \'include/qt/QtSvg/qgraphicssvgitem.h\', \'include/qt/QtGui/QAbstractUndoItem\', \'include/qt/QtGui/QWhatsThisClickedEvent\', \'include/qt/QtGui/qtextobject.h\', \'lib/libQt5MultimediaWidgets.so.5\', \'include/qt/QtNfc/5.6.2/QtNfc/private/adapter_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdvalidatinginstancereader_p.h\', \'include/qt/QtHelp/QtHelpVersion\', \'include/qt/QtGui/qbackingstore.h\', \'mkspecs/common/nacl/g++-nacl64.conf\', \'mkspecs/macx-llvm/Info.plist.dSYM.in\', \'mkspecs/macx-ios-clang/features/xcodebuild.prf\', \'include/qt/QtCore/QtPluginInstanceFunction\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextdocument_p.h\', \'include/qt/QtMultimedia/QMediaNetworkAccessControl\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerstandardwidgetfactory_p.h\', \'include/qt/QtCore/qtimeline.h\', \'include/qt/QtWidgets/QUndoView\', \'include/qt/QtWidgets/QSizePolicy\', \'include/qt/QtWidgets/QScrollArea\', \'lib/libQt5Quick.la\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerlocalswidgetinterface_p.h\', \'include/qt/QtCore/qtcoreversion.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_toolbox_p.h\', \'mkspecs/features/qfeatures.prf\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4domerrors_p.h\', \'mkspecs/unsupported/android-g++/qmake.conf\', \'mkspecs/macx-ios-clang/LaunchScreen.xib\', \'lib/pkgconfig/Qt5Sql.pc\', \'qml/QtQuick/Window.2/libwindowplugin.so\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickspriteengine_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qeglpbuffer_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qvalidationerror_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickpainteditem_p.h\', \'mkspecs/wince70embedded-x86-msvc2008/qmake.conf\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcomparescaseaware_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/richtexteditor_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsgrammar_p.h\', \'include/qt/QtCore/QCache\', \'include/qt/QtGui/QSurface\', \'include/qt/QtWidgets/qgraphicsproxywidget.h\', \'mkspecs/features/testcase.prf\', \'qml/QtWebSockets/plugins.qmltypes\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qbasickeyeventtransition_p.h\', \'lib/cmake/Qt5Designer/Qt5DesignerConfigVersion.cmake\', \'include/qt/QtWidgets/QStatusBar\', \'include/qt/QtWidgets/QPanGesture\', \'include/qt/QtGui/qtextoption.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfilesystementry_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdelement_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkreplydataimpl_p.h\', \'include/qt/QtGui/5.6.2/QtGui/qpa/qplatformsurface.h\', \'qml/QtQml/qmldir\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickv4particledata_p.h\', \'include/qt/QtHelp/QHelpContentModel\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickstate_p.h\', \'include/qt/QtTest/QEventSizeOfChecker\', \'include/qt/QtWidgets/QStyleOptionToolBar\', \'include/qt/QtCore/5.6.2/QtCore/private/qfiledevice_p.h\', \'include/qt/QtXml/QXmlReader\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qqmldesignermetaobject_p.h\', \'include/qt/QtQuick/QtQuick\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickwindow_p.h\', \'include/qt/QtCore/qfileinfo.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggerjob_p_p.h\', \'include/qt/QtGui/qopenglfunctions_4_2_core.h\', \'include/qt/QtWebKitWidgets/5.6.2/QtWebKitWidgets/private/qwebpage_p.h\', \'mkspecs/macx-ios-clang/features/qt.prf\', \'include/qt/QtCore/qiodevice.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlopenmetaobject_p.h\', \'include/qt/QtCore/qbuffer.h\', \'translations/qtdeclarative_ja.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qdelegatingdynamiccontext_p.h\', \'include/qt/QtGui/QTextObjectInterface\', \'qml/QtQuick/Controls/Styles/Desktop/FocusFrameStyle.qml\', \'mkspecs/devices/linux-beagleboard-g++/qplatformdefs.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qevdevtouchmanager_p.h\', \'lib/libQt5WebSockets.prl\', \'include/qt/QtGui/qopenglfunctions_4_5_compatibility.h\', \'mkspecs/modules/qt_lib_core.pri\', \'include/qt/QtGui/QTextFrameFormat\', \'include/qt/QtWebKitWidgets/5.6.2/QtWebKitWidgets/private/qwebinspector_p.h\', \'mkspecs/wince70embedded-x86-msvc2008/qplatformdefs.h\', \'plugins/generic/libqevdevkeyboardplugin.so\', \'qml/QtQuick/Controls/Styles/Base/images/arrow-left.png\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventdispatcher_winrt_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/cp949codetbl_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/codedialog_p.h\', \'mkspecs/modules/qt_lib_core_private.pri\', \'include/qt/QtQml/QQmlTypeInfo\', \'include/qt/QtCore/QExplicitlySharedDataPointer\', \'mkspecs/unsupported/qnx-X11-g++/qmake.conf\', \'include/qt/QtWidgets/qgraphicslayoutitem.h\', \'include/qt/QtQml/QQmlEngine\', \'include/qt/QtGui/5.6.2/QtGui/private/qfontengineglyphcache_p.h\', \'translations/qtxmlpatterns_ja.qm\', \'include/qt/QtGui/qtextdocumentwriter.h\', \'include/qt/QtDesignerComponents/QtDesignerComponentsDepends\', \'include/qt/QtScript/QScriptExtensionPlugin\', \'mkspecs/features/qml_debug.prf\', \'include/qt/QtGui/qwindowdefs_win.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qabstractitemmodel_p.h\', \'include/qt/QtNetwork/QNetworkRequest\', \'include/qt/QtCore/5.6.2/QtCore/private/qtimezoneprivate_data_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qrangeexpression_p.h\', \'include/qt/QtMultimediaQuick_p/5.6.2/QtMultimediaQuick_p/private/qsgvideonode_yuv_p.h\', \'include/qt/QtOpenGL/5.6.2/QtOpenGL/private/qglengineshadersource_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qeventtransition_p.h\', \'include/qt/QtWidgets/QGraphicsSceneWheelEvent\', \'qml/QtQuick/Extras/designer/images/picture-icon16.png\', \'include/qt/QtQml/QJSEngine\', \'include/qt/QtDBus/5.6.2/QtDBus/private/dbus_minimal_p.h\', \'include/qt/QtMultimedia/QAudioProbe\', \'include/qt/QtQuick/qquicktextdocument.h\', \'include/qt/QtGui/QOpenGLFunctions_4_5_Compatibility\', \'include/qt/QtOpenGLExtensions/qopenglextensions.h\', \'lib/cmake/Qt5DBus/Qt5DBusConfig.cmake\', \'include/qt/QtGui/QIconEngine\', \'include/qt/QtCore/5.6.2/QtCore/private/qringbuffer_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4scopedvalue_p.h\', \'lib/pkgconfig/Qt5Help.pc\', \'include/qt/QtScript/5.6.2/QtScript/private/qscriptastvisitor_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicstransform_p.h\', \'include/qt/QtWidgets/QLayoutItem\', \'bin/designer\', \'include/qt/QtMultimedia/qvideoframe.h\', \'include/qt/QtCore/qisenum.h\', \'include/qt/QtWidgets/qgraphicssceneevent.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmlplatform_p.h\', \'bin/qmlmin\', \'include/qt/QtPrintSupport/5.6.2/QtPrintSupport/private/qabstractprintdialog_p.h\', \'qml/QtQuick/Controls/Styles/Base/TabViewStyle.qml\', \'include/qt/QtWidgets/qstackedwidget.h\', \'include/qt/QtQml/qtqmlversion.h\', \'include/qt/QtDesigner/abstractwidgetdatabase.h\', \'include/qt/QtGui/QFont\', \'mkspecs/features/gcov.prf\', \'lib/pkgconfig/Qt5Qml.pc\', \'lib/libQt5ScriptTools.la\', \'include/qt/QtBluetooth/qbluetoothservicediscoveryagent.h\', \'mkspecs/features/data/cmake/Qt5ConfigVersion.cmake.in\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/widgetfactory_p.h\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qwebscriptworld.h\', \'lib/cmake/Qt5Gui/Qt5GuiConfigExtras.cmake\', \'include/qt/QtX11Extras/qtx11extrasglobal.h\', \'include/qt/QtWidgets/QLineEdit\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qproxystyle_p.h\', \'mkspecs/winphone-arm-msvc2013/qmake.conf\', \'include/qt/QtWidgets/QGraphicsPixmapItem\', \'include/qt/QtCLucene/5.6.2/QtCLucene/private/qqueryparser_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qmetatype_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4functionobject_p.h\', \'include/qt/QtTest/qtest_gui.h\', \'translations/qtconfig_ru.qm\', \'include/qt/QtMultimedia/QCameraFeedbackControl\', \'lib/cmake/Qt5QuickTest/Qt5QuickTestConfig.cmake\', \'include/qt/QtUiPlugin/QtUiPluginDepends\', \'lib/libQt5QuickWidgets.la\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qlazilyallocated_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickflipable_p.h\', \'include/qt/QtCore/QByteArray\', \'include/qt/QtGui/qaccessiblebridge.h\', \'lib/libQt5Widgets.so.5.6.2\', \'include/qt/QtQuickParticles/5.6.2/QtQuickParticles/private/qquickparticleemitter_p.h\', \'include/qt/QtQuick/qsgtexturematerial.h\', \'include/qt/QtXml/QXmlContentHandler\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/constant_mappings_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanimatedsprite_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmljsast_p.h\', \'include/qt/QtBluetooth/qbluetoothdevicediscoveryagent.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdesignersupportproperties_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdterm_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qscroller_p.h\', \'bin/qdbusviewer\', \'qml/QtQuick/Controls/Tab.qml\', \'include/qt/QtWidgets/QGraphicsSceneContextMenuEvent\', \'include/qt/QtWebKitWidgets/qwebframe.h\', \'include/qt/QtCore/qqueue.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsql_odbc_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qnetworkaccessftpbackend_p.h\', \'qml/QtQuick/Controls/ToolButton.qml\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qtoolbarextension_p.h\', \'include/qt/QtUiPlugin/QDesignerExportWidget\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/actionprovider_p.h\', \'include/qt/QtCore/QLibraryInfo\', \'include/qt/QtGui/qtextlayout.h\', \'include/qt/QtCore/QException\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/qbluetoothdevicediscoveryagent_p.h\', \'include/qt/QtWebKitWidgets/QtWebKitWidgets\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qbsptree_p.h\', \'include/qt/QtCore/QMutableStringListIterator\', \'lib/libQt5UiTools.la\', \'bin/qmake\', \'doc/global/template/style/offline-simple.css\', \'include/qt/QtMultimedia/qaudioprobe.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxmlserializer_p.h\', \'include/qt/QtCore/qconfig-medium.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qxsdschema_p.h\', \'include/qt/QtWidgets/qundoview.h\', \'include/qt/QtSql/qsqlrelationaldelegate.h\', \'include/qt/QtGui/qsurface.h\', \'translations/qtquickcontrols_ru.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtriplecontainer_p.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslsocket_openssl_p.h\', \'include/qt/QtQml/qqmlcomponent.h\', \'include/qt/QtWidgets/QGraphicsLayoutItem\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgtkstyle_p_p.h\', \'qml/Qt/labs/settings/qmldir\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qtokenrevealer_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qevaluationcache_p.h\', \'qml/QtQuick/Controls/Styles/Base/SpinBoxStyle.qml\', \'mkspecs/unsupported/linux-host-g++/qplatformdefs.h\', \'mkspecs/win32-msvc2008/qplatformdefs.h\', \'lib/libQt5PlatformSupport.a\', \'plugins/imageformats/libqwbmp.so\', \'include/qt/QtXmlPatterns/QXmlFormatter\', \'translations/assistant_ru.qm\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcombobox_p.h\', \'translations/qtscript_en.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qtqmldevtoolsglobal_p.h\', \'include/qt/QtGui/QAccessibleInterface\', \'lib/libQt5Help.so\', \'include/qt/QtCore/5.6.2/QtCore/private/qlocale_data_p.h\', \'include/qt/QtCore/QStringList\', \'mkspecs/features/warn_on.prf\', \'mkspecs/solaris-cc-stlport/qmake.conf\', \'lib/pkgconfig/Qt5Gui.pc\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgtk2painter_p.h\', \'translations/qmlviewer_hu.qm\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4sequenceobject_p.h\', \'lib/libQt5UiTools.prl\', \'mkspecs/features/data/cmake/ExtraSourceIncludes.cmake.in\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/stylesheeteditor_p.h\', \'lib/libQt5OpenGL.so.5.6\', \'include/qt/QtDBus/qdbusargument.h\', \'include/qt/QtGui/QOpenGLExtraFunctionsPrivate\', \'lib/libQt5UiTools.a\', \'include/qt/QtCore/5.6.2/QtCore/private/qtranslator_p.h\', \'qml/QtQuick/Controls/Styles/Base/images/tab.png\', \'include/qt/QtWidgets/qaction.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_propertysheet_p.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qqmldebugpluginmanager_p.h\', \'lib/libQt5WebChannel.la\', \'mkspecs/features/benchmark.prf\', \'mkspecs/aix-xlc-64/qplatformdefs.h\', \'lib/libQt5QuickWidgets.so\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickspringanimation_p.h\', \'qml/QtQuick/Controls/StackView.qml\', \'qml/QtQuick/Controls/Styles/Base/ScrollViewStyle.qml\', \'include/qt/QtOpenGLExtensions/QtOpenGLExtensions\', \'include/qt/QtNetwork/qlocalsocket.h\', \'include/qt/QtCore/QAbstractListModel\', \'mkspecs/features/qt_module_pris.prf\', \'mkspecs/macx-clang/qmake.conf\', \'mkspecs/qconfig.pri\', \'mkspecs/common/qcc-base-qnx-aarch64le.conf\', \'translations/qtmultimedia_ja.qm\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qiodevicedelegate_p.h\', \'include/qt/QtQml/QQmlListReference\', \'mkspecs/features/use_c_linker.prf\', \'include/qt/QtCore/QListIterator\', \'include/qt/QtCore/qarraydataops.h\', \'mkspecs/common/llvm.conf\', \'include/qt/QtCore/QEventLoop\', \'include/qt/QtCore/QXmlStreamNamespaceDeclarations\', \'include/qt/QtNfc/5.6.2/QtNfc/private/qnearfieldmanager_emulator_p.h\', \'include/qt/QtSql/5.6.2/QtSql/private/qsqlresult_p.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/osxbtnotifier_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qblendfunctions_p.h\', \'include/qt/QtQuick/QSGGeometry\', \'lib/libQt5MultimediaQuick_p.so.5.6.2\', \'include/qt/QtGui/5.6.2/QtGui/private/qtextureglyphcache_p.h\', \'include/qt/QtMultimedia/QRadioTunerControl\', \'include/qt/QtScript/QScriptContext\', \'include/qt/QtWidgets/QGraphicsScale\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qoptimizationpasses_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickanchors_p.h\', \'include/qt/QtScript/qtscriptglobal.h\', \'qml/QtWebKit/libqmlwebkitplugin.so\', \'include/qt/QtMultimedia/QCameraViewfinderSettingsControl\', \'include/qt/QtCore/5.6.2/QtCore/private/qlockfile_p.h\', \'include/qt/QtCore/5.6.2/QtCore/private/qfreelist_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qcolumnviewgrip_p.h\', \'lib/libQt5Bluetooth.so.5.6\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qquickdrag_p.h\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qdesigner_command_p.h\', \'mkspecs/features/ltcg.prf\', \'include/qt/QtNetwork/qabstractnetworkcache.h\', \'include/qt/QtBluetooth/5.6.2/QtBluetooth/private/manager_p.h\', \'include/qt/QtCore/QPoint\', \'include/qt/QtPrintSupport/QPrintEngine\', \'include/qt/QtWebKit/5.6.2/QtWebKit/private/qquickwebview_p_p.h\', \'translations/qtxmlpatterns_ca.qm\', \'mkspecs/unsupported/vxworks-simpentium-dcc/qplatformdefs.h\', \'include/qt/QtWidgets/qproxystyle.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qv4scopedvalue_p.h\', \'include/qt/QtWidgets/5.6.2/QtWidgets/private/qgraphicsgridlayoutengine_p.h\', \'include/qt/QtXmlPatterns/5.6.2/QtXmlPatterns/private/qcopyof_p.h\', \'include/qt/QtBluetooth/QBluetoothTransferManager\', \'mkspecs/features/win32/windows.prf\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qfontenginemultifontconfig_p.h\', \'include/qt/QtWidgets/QGraphicsSceneHoverEvent\', \'include/qt/QtCore/qvariantanimation.h\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/qvideoframeconversionhelper_p.h\', \'mkspecs/linux-icc-32/qmake.conf\', \'include/qt/QtHelp/qhelpsearchresultwidget.h\', \'qml/QtQuick/Controls/ProgressBar.qml\', \'include/qt/QtCore/qtimer.h\', \'translations/qtlocation_ko.qm\', \'translations/qtquick1_en.qm\', \'include/qt/QtMultimedia/qaudiodecodercontrol.h\', \'lib/libQt5WebKit.la\', \'include/qt/QtWebChannel/qwebchannelglobal.h\', \'include/qt/QtNetwork/QNetworkCookie\', \'include/qt/QtDesigner/QAbstractExtensionFactory\', \'bin/lconvert\', \'translations/qt_it.qm\', \'include/qt/QtWidgets/qdialog.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qopengl2pexvertexarray_p.h\', \'mkspecs/macx-g++42/qplatformdefs.h\', \'include/qt/QtQml/5.6.2/QtQml/private/qlazilyallocated_p.h\', \'translations/qtxmlpatterns_sk.qm\', \'include/qt/QtCore/qconfig.h\', \'translations/qtwebengine_de.qm\', \'include/qt/QtWidgets/qfileiconprovider.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgatlastexture_p.h\', \'include/qt/QtMultimedia/qaudiosystem.h\', \'include/qt/QtNetwork/5.6.2/QtNetwork/private/qsslsocket_openssl_symbols_p.h\', \'lib/libQt5Sql.so.5.6.2\', \'qml/QtQuick/Controls/Styles/Base/RadioButtonStyle.qml\', \'include/qt/QtCLucene/QtCLuceneDepends\', \'qml/QtQuick/Controls/StackViewDelegate.qml\', \'include/qt/QtDBus/5.6.2/QtDBus/private/qdbusmetatype_p.h\', \'include/qt/QtScriptTools/5.6.2/QtScriptTools/private/qscriptdebuggeragent_p_p.h\', \'include/qt/QtQml/QQmlComponent\', \'include/qt/QtGui/QOpenGLFunctions_4_0_Core\', \'lib/cmake/Qt5QuickWidgets/Qt5QuickWidgetsConfigVersion.cmake\', \'include/qt/QtDesigner/5.6.2/QtDesigner/private/qtresourceview_p.h\', \'include/qt/QtGui/5.6.2/QtGui/private/qrasterdefs_p.h\', \'include/qt/QtPlatformSupport/5.6.2/QtPlatformSupport/private/qeventdispatcher_glib_p.h\', \'include/qt/QtQmlDevTools/5.6.2/QtQmlDevTools/private/qv4objectiterator_p.h\', \'lib/libQt5WebKitWidgets.so.5.6\', \'mkspecs/modules/qt_lib_opengl_private.pri\', \'include/qt/QtMultimediaQuick_p/QtMultimediaQuick_p\', \'mkspecs/common/winrt_winphone/assets/logo_150x150.png\', \'qml/QtQuick/Extras/designer/images/circulargauge-icon.png\', \'include/qt/QtMultimedia/QMediaContent\', \'include/qt/QtMultimedia/5.6.2/QtMultimedia/private/gstvideoconnector_p.h\', \'include/qt/QtQuick/5.6.2/QtQuick/private/qsgtexture_p.h\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/qt-5.6.2-3\', type=1))", "defaults::qtawesome-0.4.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'qtpy\', \'six\'), license=\'MIT\', md5=\'b3fd2ae350e56fff39db5324f0ac8dc3\', name=\'qtawesome\', platform=\'linux\', subdir=\'linux-64\', version=\'0.4.3\', fn=\'qtawesome-0.4.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/qtawesome-0.4.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/QtAwesome-0.4.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/QtAwesome-0.4.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/QtAwesome-0.4.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/QtAwesome-0.4.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/QtAwesome-0.4.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/qtawesome/__init__.py\', \'lib/python3.6/site-packages/qtawesome/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtawesome/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/qtawesome/__pycache__/animation.cpython-36.pyc\', \'lib/python3.6/site-packages/qtawesome/__pycache__/iconic_font.cpython-36.pyc\', \'lib/python3.6/site-packages/qtawesome/_version.py\', \'lib/python3.6/site-packages/qtawesome/animation.py\', \'lib/python3.6/site-packages/qtawesome/fonts/elusiveicons-webfont-charmap.json\', \'lib/python3.6/site-packages/qtawesome/fonts/elusiveicons-webfont.ttf\', \'lib/python3.6/site-packages/qtawesome/fonts/fontawesome-webfont-charmap.json\', \'lib/python3.6/site-packages/qtawesome/fonts/fontawesome-webfont.ttf\', \'lib/python3.6/site-packages/qtawesome/iconic_font.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/qtawesome-0.4.3-py36_0\', type=1))", "defaults::qtconsole-4.2.1-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'ipykernel >=4.1\', \'jupyter_client >=4.1\', \'jupyter_core\', \'pygments\', \'pyqt 5.*\', \'python 3.6*\', \'traitlets\'), license=\'BSD\', md5=\'2baa81184a7f21b31bd0f56110e473af\', name=\'qtconsole\', platform=\'linux\', subdir=\'linux-64\', version=\'4.2.1\', fn=\'qtconsole-4.2.1-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/qtconsole-4.2.1-py36_1.tar.bz2\', files=(\'bin/jupyter-qtconsole\', \'lib/python3.6/site-packages/qtconsole-4.2.1-py3.6.egg-info\', \'lib/python3.6/site-packages/qtconsole/__init__.py\', \'lib/python3.6/site-packages/qtconsole/__main__.py\', \'lib/python3.6/site-packages/qtconsole/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/ansi_code_processor.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/base_frontend_mixin.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/bracket_matcher.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/call_tip_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/completion_html.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/completion_plain.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/completion_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/console_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/frontend_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/history_console_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/inprocess.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/ipython_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/jupyter_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/kernel_mixins.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/kill_ring.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/mainwindow.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/pygments_highlighter.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/qt.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/qt_loaders.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/qtconsoleapp.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/rich_ipython_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/rich_jupyter_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/rich_text.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/styles.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/svg.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/usage.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/_version.py\', \'lib/python3.6/site-packages/qtconsole/ansi_code_processor.py\', \'lib/python3.6/site-packages/qtconsole/base_frontend_mixin.py\', \'lib/python3.6/site-packages/qtconsole/bracket_matcher.py\', \'lib/python3.6/site-packages/qtconsole/call_tip_widget.py\', \'lib/python3.6/site-packages/qtconsole/client.py\', \'lib/python3.6/site-packages/qtconsole/completion_html.py\', \'lib/python3.6/site-packages/qtconsole/completion_plain.py\', \'lib/python3.6/site-packages/qtconsole/completion_widget.py\', \'lib/python3.6/site-packages/qtconsole/console_widget.py\', \'lib/python3.6/site-packages/qtconsole/frontend_widget.py\', \'lib/python3.6/site-packages/qtconsole/history_console_widget.py\', \'lib/python3.6/site-packages/qtconsole/inprocess.py\', \'lib/python3.6/site-packages/qtconsole/ipython_widget.py\', \'lib/python3.6/site-packages/qtconsole/jupyter_widget.py\', \'lib/python3.6/site-packages/qtconsole/kernel_mixins.py\', \'lib/python3.6/site-packages/qtconsole/kill_ring.py\', \'lib/python3.6/site-packages/qtconsole/mainwindow.py\', \'lib/python3.6/site-packages/qtconsole/manager.py\', \'lib/python3.6/site-packages/qtconsole/pygments_highlighter.py\', \'lib/python3.6/site-packages/qtconsole/qt.py\', \'lib/python3.6/site-packages/qtconsole/qt_loaders.py\', \'lib/python3.6/site-packages/qtconsole/qtconsoleapp.py\', \'lib/python3.6/site-packages/qtconsole/resources/icon/JupyterConsole.svg\', \'lib/python3.6/site-packages/qtconsole/rich_ipython_widget.py\', \'lib/python3.6/site-packages/qtconsole/rich_jupyter_widget.py\', \'lib/python3.6/site-packages/qtconsole/rich_text.py\', \'lib/python3.6/site-packages/qtconsole/styles.py\', \'lib/python3.6/site-packages/qtconsole/svg.py\', \'lib/python3.6/site-packages/qtconsole/tests/__init__.py\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/test_ansi_code_processor.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/test_app.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/test_completion_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/test_console_widget.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/__pycache__/test_kill_ring.cpython-36.pyc\', \'lib/python3.6/site-packages/qtconsole/tests/test_ansi_code_processor.py\', \'lib/python3.6/site-packages/qtconsole/tests/test_app.py\', \'lib/python3.6/site-packages/qtconsole/tests/test_completion_widget.py\', \'lib/python3.6/site-packages/qtconsole/tests/test_console_widget.py\', \'lib/python3.6/site-packages/qtconsole/tests/test_kill_ring.py\', \'lib/python3.6/site-packages/qtconsole/usage.py\', \'lib/python3.6/site-packages/qtconsole/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/qtconsole-4.2.1-py36_1\', type=1))", "defaults::qtpy-1.2.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'ae63a7fa4ef15495e7a41591fc52b048\', name=\'qtpy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.1\', fn=\'qtpy-1.2.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/qtpy-1.2.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/QtPy-1.2.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/QtPy-1.2.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/QtPy-1.2.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/QtPy-1.2.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/qtpy/QtCore.py\', \'lib/python3.6/site-packages/qtpy/QtDesigner.py\', \'lib/python3.6/site-packages/qtpy/QtGui.py\', \'lib/python3.6/site-packages/qtpy/QtMultimedia.py\', \'lib/python3.6/site-packages/qtpy/QtNetwork.py\', \'lib/python3.6/site-packages/qtpy/QtPrintSupport.py\', \'lib/python3.6/site-packages/qtpy/QtSvg.py\', \'lib/python3.6/site-packages/qtpy/QtTest.py\', \'lib/python3.6/site-packages/qtpy/QtWebEngineWidgets.py\', \'lib/python3.6/site-packages/qtpy/QtWidgets.py\', \'lib/python3.6/site-packages/qtpy/__init__.py\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtCore.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtDesigner.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtGui.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtMultimedia.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtNetwork.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtPrintSupport.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtSvg.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtTest.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtWebEngineWidgets.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/QtWidgets.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/__pycache__/uic.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/_patch/__init__.py\', \'lib/python3.6/site-packages/qtpy/_patch/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/_patch/__pycache__/qcombobox.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/_patch/__pycache__/qheaderview.cpython-36.pyc\', \'lib/python3.6/site-packages/qtpy/_patch/qcombobox.py\', \'lib/python3.6/site-packages/qtpy/_patch/qheaderview.py\', \'lib/python3.6/site-packages/qtpy/_version.py\', \'lib/python3.6/site-packages/qtpy/compat.py\', \'lib/python3.6/site-packages/qtpy/py3compat.py\', \'lib/python3.6/site-packages/qtpy/uic.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/qtpy-1.2.1-py36_0\', type=1))", "defaults::readline-6.2-2": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'2\', build_number=2, depends=(), md5=\'d050607fb2934282470d06872e0e6cce\', name=\'readline\', platform=\'linux\', requires=(), version=\'6.2\', fn=\'readline-6.2-2.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/readline-6.2-2.tar.bz2\', files=(\'include/readline/chardefs.h\', \'include/readline/history.h\', \'include/readline/keymaps.h\', \'include/readline/readline.h\', \'include/readline/rlconf.h\', \'include/readline/rlstdc.h\', \'include/readline/rltypedefs.h\', \'include/readline/tilde.h\', \'lib/libhistory.a\', \'lib/libhistory.so\', \'lib/libhistory.so.6\', \'lib/libhistory.so.6.2\', \'lib/libreadline.a\', \'lib/libreadline.so\', \'lib/libreadline.so.6\', \'lib/libreadline.so.6.2\', \'share/info/history.info\', \'share/info/readline.info\', \'share/info/rluserman.info\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/readline-6.2-2\', type=1))", "defaults::redis-3.2.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'59f3bfa2246c4e53c5fdb2dc7f0da5b8\', name=\'redis\', platform=\'linux\', subdir=\'linux-64\', version=\'3.2.0\', fn=\'redis-3.2.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/redis-3.2.0-0.tar.bz2\', files=(\'bin/redis-benchmark\', \'bin/redis-check-aof\', \'bin/redis-check-rdb\', \'bin/redis-cli\', \'bin/redis-sentinel\', \'bin/redis-server\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/redis-3.2.0-0\', type=1))", "defaults::redis-py-2.10.5-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'redis\'), license=\'MIT\', license_family=\'MIT\', md5=\'8a328d1e7a1800125e9b922bd1dc8d31\', name=\'redis-py\', platform=\'linux\', subdir=\'linux-64\', version=\'2.10.5\', fn=\'redis-py-2.10.5-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/redis-py-2.10.5-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/redis-2.10.5-py3.6.egg-info\', \'lib/python3.6/site-packages/redis/__init__.py\', \'lib/python3.6/site-packages/redis/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/lock.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/sentinel.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/redis/_compat.py\', \'lib/python3.6/site-packages/redis/client.py\', \'lib/python3.6/site-packages/redis/connection.py\', \'lib/python3.6/site-packages/redis/exceptions.py\', \'lib/python3.6/site-packages/redis/lock.py\', \'lib/python3.6/site-packages/redis/sentinel.py\', \'lib/python3.6/site-packages/redis/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/redis-py-2.10.5-py36_0\', type=1))", "defaults::requests-2.12.4-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'Apache Software License\', license_family=\'Apache\', md5=\'120bdc2d762d18354128779266ffdef8\', name=\'requests\', platform=\'linux\', subdir=\'linux-64\', version=\'2.12.4\', fn=\'requests-2.12.4-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/requests-2.12.4-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/requests-2.12.4-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/requests/__init__.py\', \'lib/python3.6/site-packages/requests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/_internal_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/adapters.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/auth.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/certs.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/cookies.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/hooks.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/sessions.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/status_codes.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/structures.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/_internal_utils.py\', \'lib/python3.6/site-packages/requests/adapters.py\', \'lib/python3.6/site-packages/requests/api.py\', \'lib/python3.6/site-packages/requests/auth.py\', \'lib/python3.6/site-packages/requests/cacert.pem\', \'lib/python3.6/site-packages/requests/certs.py\', \'lib/python3.6/site-packages/requests/compat.py\', \'lib/python3.6/site-packages/requests/cookies.py\', \'lib/python3.6/site-packages/requests/exceptions.py\', \'lib/python3.6/site-packages/requests/hooks.py\', \'lib/python3.6/site-packages/requests/models.py\', \'lib/python3.6/site-packages/requests/packages/__init__.py\', \'lib/python3.6/site-packages/requests/packages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__init__.py\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/big5freq.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/big5prober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/chardetect.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/chardistribution.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/charsetgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/charsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/codingstatemachine.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/cp949prober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/escprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/escsm.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/eucjpprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/euckrfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/euckrprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/euctwfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/euctwprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/gb2312freq.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/gb2312prober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/hebrewprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/jisfreq.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/jpcntx.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langbulgarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langcyrillicmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langgreekmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langhebrewmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langhungarianmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/langthaimodel.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/latin1prober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/mbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/mbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/mbcssm.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/sbcharsetprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/sbcsgroupprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/sjisprober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/universaldetector.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/__pycache__/utf8prober.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/chardet/big5freq.py\', \'lib/python3.6/site-packages/requests/packages/chardet/big5prober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/chardetect.py\', \'lib/python3.6/site-packages/requests/packages/chardet/chardistribution.py\', \'lib/python3.6/site-packages/requests/packages/chardet/charsetgroupprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/charsetprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/codingstatemachine.py\', \'lib/python3.6/site-packages/requests/packages/chardet/compat.py\', \'lib/python3.6/site-packages/requests/packages/chardet/constants.py\', \'lib/python3.6/site-packages/requests/packages/chardet/cp949prober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/escprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/escsm.py\', \'lib/python3.6/site-packages/requests/packages/chardet/eucjpprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/euckrfreq.py\', \'lib/python3.6/site-packages/requests/packages/chardet/euckrprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/euctwfreq.py\', \'lib/python3.6/site-packages/requests/packages/chardet/euctwprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/gb2312freq.py\', \'lib/python3.6/site-packages/requests/packages/chardet/gb2312prober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/hebrewprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/jisfreq.py\', \'lib/python3.6/site-packages/requests/packages/chardet/jpcntx.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langbulgarianmodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langcyrillicmodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langgreekmodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langhebrewmodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langhungarianmodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/langthaimodel.py\', \'lib/python3.6/site-packages/requests/packages/chardet/latin1prober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/mbcharsetprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/mbcsgroupprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/mbcssm.py\', \'lib/python3.6/site-packages/requests/packages/chardet/sbcharsetprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/sbcsgroupprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/sjisprober.py\', \'lib/python3.6/site-packages/requests/packages/chardet/universaldetector.py\', \'lib/python3.6/site-packages/requests/packages/chardet/utf8prober.py\', \'lib/python3.6/site-packages/requests/packages/idna/__init__.py\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/codec.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/idnadata.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/intranges.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/__pycache__/uts46data.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/idna/codec.py\', \'lib/python3.6/site-packages/requests/packages/idna/compat.py\', \'lib/python3.6/site-packages/requests/packages/idna/core.py\', \'lib/python3.6/site-packages/requests/packages/idna/idnadata.py\', \'lib/python3.6/site-packages/requests/packages/idna/intranges.py\', \'lib/python3.6/site-packages/requests/packages/idna/uts46data.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/connectionpool.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/fields.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/filepost.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/poolmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/_collections.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/connection.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/connectionpool.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__pycache__/appengine.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__pycache__/ntlmpool.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__pycache__/pyopenssl.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/__pycache__/socks.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/appengine.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/ntlmpool.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/pyopenssl.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/contrib/socks.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/exceptions.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/fields.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/filepost.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/__pycache__/ordered_dict.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/backports/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/backports/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/backports/__pycache__/makefile.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/backports/makefile.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/ordered_dict.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/six.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/poolmanager.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/request.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/response.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__init__.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/connection.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/request.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/response.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/retry.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/ssl_.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/timeout.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/connection.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/request.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/response.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/retry.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/ssl_.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/timeout.py\', \'lib/python3.6/site-packages/requests/packages/urllib3/util/url.py\', \'lib/python3.6/site-packages/requests/sessions.py\', \'lib/python3.6/site-packages/requests/status_codes.py\', \'lib/python3.6/site-packages/requests/structures.py\', \'lib/python3.6/site-packages/requests/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/requests-2.12.4-py36_0\', type=1))", "defaults::rope-0.9.4-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'GPL\', license_family=\'GPL2\', md5=\'0b8e004d7668fd1e2b4d12e27d577248\', name=\'rope\', platform=\'linux\', subdir=\'linux-64\', version=\'0.9.4\', fn=\'rope-0.9.4-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/rope-0.9.4-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/rope/__init__.py\', \'lib/python3.6/site-packages/rope/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__init__.py\', \'lib/python3.6/site-packages/rope/base/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/arguments.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/ast.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/astutils.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/builtins.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/change.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/codeanalyze.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/default_config.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/evaluate.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/fscommands.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/libutils.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/prefs.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/project.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pycore.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pynames.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pynamesdef.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pyobjects.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pyobjectsdef.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/pyscopes.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/resourceobserver.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/resources.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/simplify.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/stdmods.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/taskhandle.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/__pycache__/worder.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/arguments.py\', \'lib/python3.6/site-packages/rope/base/ast.py\', \'lib/python3.6/site-packages/rope/base/astutils.py\', \'lib/python3.6/site-packages/rope/base/builtins.py\', \'lib/python3.6/site-packages/rope/base/change.py\', \'lib/python3.6/site-packages/rope/base/codeanalyze.py\', \'lib/python3.6/site-packages/rope/base/default_config.py\', \'lib/python3.6/site-packages/rope/base/evaluate.py\', \'lib/python3.6/site-packages/rope/base/exceptions.py\', \'lib/python3.6/site-packages/rope/base/fscommands.py\', \'lib/python3.6/site-packages/rope/base/history.py\', \'lib/python3.6/site-packages/rope/base/libutils.py\', \'lib/python3.6/site-packages/rope/base/oi/__init__.py\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/doa.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/memorydb.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/objectdb.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/objectinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/runmod.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/soa.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/soi.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/__pycache__/transform.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/base/oi/doa.py\', \'lib/python3.6/site-packages/rope/base/oi/memorydb.py\', \'lib/python3.6/site-packages/rope/base/oi/objectdb.py\', \'lib/python3.6/site-packages/rope/base/oi/objectinfo.py\', \'lib/python3.6/site-packages/rope/base/oi/runmod.py\', \'lib/python3.6/site-packages/rope/base/oi/soa.py\', \'lib/python3.6/site-packages/rope/base/oi/soi.py\', \'lib/python3.6/site-packages/rope/base/oi/transform.py\', \'lib/python3.6/site-packages/rope/base/prefs.py\', \'lib/python3.6/site-packages/rope/base/project.py\', \'lib/python3.6/site-packages/rope/base/pycore.py\', \'lib/python3.6/site-packages/rope/base/pynames.py\', \'lib/python3.6/site-packages/rope/base/pynamesdef.py\', \'lib/python3.6/site-packages/rope/base/pyobjects.py\', \'lib/python3.6/site-packages/rope/base/pyobjectsdef.py\', \'lib/python3.6/site-packages/rope/base/pyscopes.py\', \'lib/python3.6/site-packages/rope/base/resourceobserver.py\', \'lib/python3.6/site-packages/rope/base/resources.py\', \'lib/python3.6/site-packages/rope/base/simplify.py\', \'lib/python3.6/site-packages/rope/base/stdmods.py\', \'lib/python3.6/site-packages/rope/base/taskhandle.py\', \'lib/python3.6/site-packages/rope/base/utils.py\', \'lib/python3.6/site-packages/rope/base/worder.py\', \'lib/python3.6/site-packages/rope/contrib/__init__.py\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/autoimport.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/changestack.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/codeassist.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/finderrors.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/findit.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/fixmodnames.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/fixsyntax.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/__pycache__/generate.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/contrib/autoimport.py\', \'lib/python3.6/site-packages/rope/contrib/changestack.py\', \'lib/python3.6/site-packages/rope/contrib/codeassist.py\', \'lib/python3.6/site-packages/rope/contrib/finderrors.py\', \'lib/python3.6/site-packages/rope/contrib/findit.py\', \'lib/python3.6/site-packages/rope/contrib/fixmodnames.py\', \'lib/python3.6/site-packages/rope/contrib/fixsyntax.py\', \'lib/python3.6/site-packages/rope/contrib/generate.py\', \'lib/python3.6/site-packages/rope/refactor/__init__.py\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/change_signature.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/encapsulate_field.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/extract.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/functionutils.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/inline.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/introduce_factory.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/introduce_parameter.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/localtofield.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/method_object.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/move.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/multiproject.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/occurrences.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/patchedast.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/rename.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/restructure.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/similarfinder.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/sourceutils.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/suites.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/topackage.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/usefunction.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/__pycache__/wildcards.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/change_signature.py\', \'lib/python3.6/site-packages/rope/refactor/encapsulate_field.py\', \'lib/python3.6/site-packages/rope/refactor/extract.py\', \'lib/python3.6/site-packages/rope/refactor/functionutils.py\', \'lib/python3.6/site-packages/rope/refactor/importutils/__init__.py\', \'lib/python3.6/site-packages/rope/refactor/importutils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/importutils/__pycache__/actions.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/importutils/__pycache__/importinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/importutils/__pycache__/module_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/rope/refactor/importutils/actions.py\', \'lib/python3.6/site-packages/rope/refactor/importutils/importinfo.py\', \'lib/python3.6/site-packages/rope/refactor/importutils/module_imports.py\', \'lib/python3.6/site-packages/rope/refactor/inline.py\', \'lib/python3.6/site-packages/rope/refactor/introduce_factory.py\', \'lib/python3.6/site-packages/rope/refactor/introduce_parameter.py\', \'lib/python3.6/site-packages/rope/refactor/localtofield.py\', \'lib/python3.6/site-packages/rope/refactor/method_object.py\', \'lib/python3.6/site-packages/rope/refactor/move.py\', \'lib/python3.6/site-packages/rope/refactor/multiproject.py\', \'lib/python3.6/site-packages/rope/refactor/occurrences.py\', \'lib/python3.6/site-packages/rope/refactor/patchedast.py\', \'lib/python3.6/site-packages/rope/refactor/rename.py\', \'lib/python3.6/site-packages/rope/refactor/restructure.py\', \'lib/python3.6/site-packages/rope/refactor/similarfinder.py\', \'lib/python3.6/site-packages/rope/refactor/sourceutils.py\', \'lib/python3.6/site-packages/rope/refactor/suites.py\', \'lib/python3.6/site-packages/rope/refactor/topackage.py\', \'lib/python3.6/site-packages/rope/refactor/usefunction.py\', \'lib/python3.6/site-packages/rope/refactor/wildcards.py\', \'lib/python3.6/site-packages/rope_py3k-0.9.4_1-py3.6.egg-info\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/rope-0.9.4-py36_1\', type=1))", "defaults::ruamel_yaml-0.11.14-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\', \'yaml 0.1.6\'), license=\'MIT\', md5=\'cb1ad38b2540bc88d904be01b53d7c36\', name=\'ruamel_yaml\', platform=\'linux\', subdir=\'linux-64\', version=\'0.11.14\', fn=\'ruamel_yaml-0.11.14-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/ruamel_yaml-0.11.14-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/ruamel_yaml/__init__.py\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/comments.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/composer.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/configobjwalker.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/constructor.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/cyaml.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/dumper.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/emitter.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/error.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/parser.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/reader.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/representer.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/resolver.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/scalarstring.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/scanner.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/serializer.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/tokens.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/ruamel_yaml/_ruamel_yaml.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/ruamel_yaml/comments.py\', \'lib/python3.6/site-packages/ruamel_yaml/compat.py\', \'lib/python3.6/site-packages/ruamel_yaml/composer.py\', \'lib/python3.6/site-packages/ruamel_yaml/configobjwalker.py\', \'lib/python3.6/site-packages/ruamel_yaml/constructor.py\', \'lib/python3.6/site-packages/ruamel_yaml/cyaml.py\', \'lib/python3.6/site-packages/ruamel_yaml/dumper.py\', \'lib/python3.6/site-packages/ruamel_yaml/emitter.py\', \'lib/python3.6/site-packages/ruamel_yaml/error.py\', \'lib/python3.6/site-packages/ruamel_yaml/events.py\', \'lib/python3.6/site-packages/ruamel_yaml/loader.py\', \'lib/python3.6/site-packages/ruamel_yaml/main.py\', \'lib/python3.6/site-packages/ruamel_yaml/nodes.py\', \'lib/python3.6/site-packages/ruamel_yaml/parser.py\', \'lib/python3.6/site-packages/ruamel_yaml/reader.py\', \'lib/python3.6/site-packages/ruamel_yaml/representer.py\', \'lib/python3.6/site-packages/ruamel_yaml/resolver.py\', \'lib/python3.6/site-packages/ruamel_yaml/scalarstring.py\', \'lib/python3.6/site-packages/ruamel_yaml/scanner.py\', \'lib/python3.6/site-packages/ruamel_yaml/serializer.py\', \'lib/python3.6/site-packages/ruamel_yaml/setup.py\', \'lib/python3.6/site-packages/ruamel_yaml/tokens.py\', \'lib/python3.6/site-packages/ruamel_yaml/util.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/ruamel_yaml-0.11.14-py36_1\', type=1))", "defaults::scikit-image-0.12.3-np111py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_1\', build_number=1, depends=(\'matplotlib >=1.3.1\', \'networkx >=1.8\', \'numpy 1.11*\', \'pillow >=2.1\', \'python 3.6*\', \'scipy\', \'six >=1.7.3\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'ac10b17c45b5e007bdae402ced92e1be\', name=\'scikit-image\', platform=\'linux\', subdir=\'linux-64\', version=\'0.12.3\', fn=\'scikit-image-0.12.3-np111py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/scikit-image-0.12.3-np111py36_1.tar.bz2\', files=(\'bin/skivi\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/scikit_image-0.12.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/skimage/__init__.py\', \'lib/python3.6/site-packages/skimage/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/__pycache__/_build.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_build.py\', \'lib/python3.6/site-packages/skimage/_shared/__init__.py\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/_geometry.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/_tempfile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/_warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/__pycache__/version_requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/_geometry.py\', \'lib/python3.6/site-packages/skimage/_shared/_tempfile.py\', \'lib/python3.6/site-packages/skimage/_shared/_warnings.py\', \'lib/python3.6/site-packages/skimage/_shared/geometry.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/_shared/interpolation.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/_shared/setup.py\', \'lib/python3.6/site-packages/skimage/_shared/testing.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_geometry.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_interpolation.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_safe_as_int.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_testing.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/__pycache__/test_version_requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_geometry.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_interpolation.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_safe_as_int.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_testing.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_utils.py\', \'lib/python3.6/site-packages/skimage/_shared/tests/test_version_requirements.py\', \'lib/python3.6/site-packages/skimage/_shared/transform.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/_shared/utils.py\', \'lib/python3.6/site-packages/skimage/_shared/version_requirements.py\', \'lib/python3.6/site-packages/skimage/color/__init__.py\', \'lib/python3.6/site-packages/skimage/color/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/__pycache__/adapt_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/__pycache__/colorconv.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/__pycache__/colorlabel.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/__pycache__/delta_e.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/__pycache__/rgb_colors.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/adapt_rgb.py\', \'lib/python3.6/site-packages/skimage/color/colorconv.py\', \'lib/python3.6/site-packages/skimage/color/colorlabel.py\', \'lib/python3.6/site-packages/skimage/color/delta_e.py\', \'lib/python3.6/site-packages/skimage/color/rgb_colors.py\', \'lib/python3.6/site-packages/skimage/color/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/color/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/tests/__pycache__/test_adapt_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/tests/__pycache__/test_colorconv.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/tests/__pycache__/test_colorlabel.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/tests/__pycache__/test_delta_e.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/color/tests/ciede2000_test_data.txt\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_a_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d50_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d50_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d55_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d55_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d65_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d65_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d75_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_d75_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/lab_array_e_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_a_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d50_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d50_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d55_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d55_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d65_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d65_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d75_10.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_d75_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/data/luv_array_e_2.npy\', \'lib/python3.6/site-packages/skimage/color/tests/test_adapt_rgb.py\', \'lib/python3.6/site-packages/skimage/color/tests/test_colorconv.py\', \'lib/python3.6/site-packages/skimage/color/tests/test_colorlabel.py\', \'lib/python3.6/site-packages/skimage/color/tests/test_delta_e.py\', \'lib/python3.6/site-packages/skimage/data/__init__.py\', \'lib/python3.6/site-packages/skimage/data/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/data/__pycache__/_binary_blobs.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/data/_binary_blobs.py\', \'lib/python3.6/site-packages/skimage/data/_blobs_3d_fiji_skeleton.tif\', \'lib/python3.6/site-packages/skimage/data/astronaut.png\', \'lib/python3.6/site-packages/skimage/data/astronaut_GRAY_hog.npy\', \'lib/python3.6/site-packages/skimage/data/block.png\', \'lib/python3.6/site-packages/skimage/data/brick.png\', \'lib/python3.6/site-packages/skimage/data/bw_text.png\', \'lib/python3.6/site-packages/skimage/data/bw_text_skeleton.npy\', \'lib/python3.6/site-packages/skimage/data/camera.png\', \'lib/python3.6/site-packages/skimage/data/checker_bilevel.png\', \'lib/python3.6/site-packages/skimage/data/chelsea.png\', \'lib/python3.6/site-packages/skimage/data/chessboard_GRAY.png\', \'lib/python3.6/site-packages/skimage/data/chessboard_GRAY_U16.tif\', \'lib/python3.6/site-packages/skimage/data/chessboard_GRAY_U16B.tif\', \'lib/python3.6/site-packages/skimage/data/chessboard_GRAY_U8.npy\', \'lib/python3.6/site-packages/skimage/data/chessboard_GRAY_U8.npz\', \'lib/python3.6/site-packages/skimage/data/chessboard_RGB.png\', \'lib/python3.6/site-packages/skimage/data/chessboard_RGB_U8.npy\', \'lib/python3.6/site-packages/skimage/data/chessboard_RGB_U8.npz\', \'lib/python3.6/site-packages/skimage/data/clock_motion.png\', \'lib/python3.6/site-packages/skimage/data/coffee.png\', \'lib/python3.6/site-packages/skimage/data/coins.png\', \'lib/python3.6/site-packages/skimage/data/color.png\', \'lib/python3.6/site-packages/skimage/data/diamond-matlab-output.npz\', \'lib/python3.6/site-packages/skimage/data/disk-matlab-output.npz\', \'lib/python3.6/site-packages/skimage/data/foo3x5x4indexed.png\', \'lib/python3.6/site-packages/skimage/data/grass.png\', \'lib/python3.6/site-packages/skimage/data/gray_morph_output.npz\', \'lib/python3.6/site-packages/skimage/data/horse.png\', \'lib/python3.6/site-packages/skimage/data/hubble_deep_field.jpg\', \'lib/python3.6/site-packages/skimage/data/ihc.png\', \'lib/python3.6/site-packages/skimage/data/moon.png\', \'lib/python3.6/site-packages/skimage/data/mssim_matlab_output.npz\', \'lib/python3.6/site-packages/skimage/data/multi.fits\', \'lib/python3.6/site-packages/skimage/data/multipage.tif\', \'lib/python3.6/site-packages/skimage/data/multipage_rgb.tif\', \'lib/python3.6/site-packages/skimage/data/no_time_for_that_tiny.gif\', \'lib/python3.6/site-packages/skimage/data/orb_descriptor_positions.txt\', \'lib/python3.6/site-packages/skimage/data/page.png\', \'lib/python3.6/site-packages/skimage/data/palette_color.png\', \'lib/python3.6/site-packages/skimage/data/palette_gray.png\', \'lib/python3.6/site-packages/skimage/data/phantom.png\', \'lib/python3.6/site-packages/skimage/data/rank_filter_tests.npz\', \'lib/python3.6/site-packages/skimage/data/rocket.jpg\', \'lib/python3.6/site-packages/skimage/data/rough-wall.png\', \'lib/python3.6/site-packages/skimage/data/simple.fits\', \'lib/python3.6/site-packages/skimage/data/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/data/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/data/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/data/tests/test_data.py\', \'lib/python3.6/site-packages/skimage/data/text.png\', \'lib/python3.6/site-packages/skimage/data/truncated.jpg\', \'lib/python3.6/site-packages/skimage/draw/__init__.py\', \'lib/python3.6/site-packages/skimage/draw/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/__pycache__/draw.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/__pycache__/draw3d.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/_draw.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/draw/draw.py\', \'lib/python3.6/site-packages/skimage/draw/draw3d.py\', \'lib/python3.6/site-packages/skimage/draw/setup.py\', \'lib/python3.6/site-packages/skimage/draw/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/draw/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/tests/__pycache__/test_draw.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/tests/__pycache__/test_draw3d.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/draw/tests/test_draw.py\', \'lib/python3.6/site-packages/skimage/draw/tests/test_draw3d.py\', \'lib/python3.6/site-packages/skimage/exposure/__init__.py\', \'lib/python3.6/site-packages/skimage/exposure/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/__pycache__/_adapthist.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/__pycache__/exposure.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/_adapthist.py\', \'lib/python3.6/site-packages/skimage/exposure/exposure.py\', \'lib/python3.6/site-packages/skimage/exposure/setup.py\', \'lib/python3.6/site-packages/skimage/exposure/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/exposure/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/tests/__pycache__/test_exposure.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/exposure/tests/test_exposure.py\', \'lib/python3.6/site-packages/skimage/external/__init__.py\', \'lib/python3.6/site-packages/skimage/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/external/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/external/__pycache__/test_tifffile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/external/setup.py\', \'lib/python3.6/site-packages/skimage/external/test_tifffile.py\', \'lib/python3.6/site-packages/skimage/external/tifffile/__init__.py\', \'lib/python3.6/site-packages/skimage/external/tifffile/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/external/tifffile/__pycache__/tifffile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/external/tifffile/_tifffile.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/external/tifffile/tifffile.py\', \'lib/python3.6/site-packages/skimage/feature/__init__.py\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/_canny.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/_daisy.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/_hog.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/blob.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/brief.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/censure.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/corner.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/match.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/orb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/peak.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/register_translation.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/texture.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/_canny.py\', \'lib/python3.6/site-packages/skimage/feature/_daisy.py\', \'lib/python3.6/site-packages/skimage/feature/_hessian_det_appx.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/_hog.py\', \'lib/python3.6/site-packages/skimage/feature/_hoghistogram.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/_texture.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/blob.py\', \'lib/python3.6/site-packages/skimage/feature/brief.py\', \'lib/python3.6/site-packages/skimage/feature/brief_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/censure.py\', \'lib/python3.6/site-packages/skimage/feature/censure_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/corner.py\', \'lib/python3.6/site-packages/skimage/feature/corner_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/match.py\', \'lib/python3.6/site-packages/skimage/feature/orb.py\', \'lib/python3.6/site-packages/skimage/feature/orb_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/feature/peak.py\', \'lib/python3.6/site-packages/skimage/feature/register_translation.py\', \'lib/python3.6/site-packages/skimage/feature/setup.py\', \'lib/python3.6/site-packages/skimage/feature/template.py\', \'lib/python3.6/site-packages/skimage/feature/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_blob.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_brief.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_canny.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_censure.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_corner.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_daisy.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_hog.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_match.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_orb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_peak.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_register_translation.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_template.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_texture.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/feature/tests/test_blob.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_brief.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_canny.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_censure.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_corner.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_daisy.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_hog.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_match.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_orb.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_peak.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_register_translation.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_template.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_texture.py\', \'lib/python3.6/site-packages/skimage/feature/tests/test_util.py\', \'lib/python3.6/site-packages/skimage/feature/texture.py\', \'lib/python3.6/site-packages/skimage/feature/util.py\', \'lib/python3.6/site-packages/skimage/filter/__init__.py\', \'lib/python3.6/site-packages/skimage/filter/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filter/rank/__init__.py\', \'lib/python3.6/site-packages/skimage/filter/rank/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__init__.py\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/_gabor.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/_gaussian.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/_rank_order.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/edges.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/lpi_filter.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/__pycache__/thresholding.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/_ctmf.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/filters/_gabor.py\', \'lib/python3.6/site-packages/skimage/filters/_gaussian.py\', \'lib/python3.6/site-packages/skimage/filters/_rank_order.py\', \'lib/python3.6/site-packages/skimage/filters/edges.py\', \'lib/python3.6/site-packages/skimage/filters/lpi_filter.py\', \'lib/python3.6/site-packages/skimage/filters/rank/__init__.py\', \'lib/python3.6/site-packages/skimage/filters/rank/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/__pycache__/_percentile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/__pycache__/bilateral.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/__pycache__/generic.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/_percentile.py\', \'lib/python3.6/site-packages/skimage/filters/rank/bilateral.py\', \'lib/python3.6/site-packages/skimage/filters/rank/bilateral_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/filters/rank/core_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/filters/rank/generic.py\', \'lib/python3.6/site-packages/skimage/filters/rank/generic_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/filters/rank/percentile_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/filters/rank/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/filters/rank/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/tests/__pycache__/test_rank.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/rank/tests/test_rank.py\', \'lib/python3.6/site-packages/skimage/filters/setup.py\', \'lib/python3.6/site-packages/skimage/filters/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_deprecated_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_edges.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_gabor.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_gaussian.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_lpi_filter.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_median.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/__pycache__/test_thresholding.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/filters/tests/test_deprecated_imports.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_edges.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_gabor.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_gaussian.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_lpi_filter.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_median.py\', \'lib/python3.6/site-packages/skimage/filters/tests/test_thresholding.py\', \'lib/python3.6/site-packages/skimage/filters/thresholding.py\', \'lib/python3.6/site-packages/skimage/future/__init__.py\', \'lib/python3.6/site-packages/skimage/future/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__init__.py\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/_ncut.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/graph_cut.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/graph_merge.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/rag.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/_ncut.py\', \'lib/python3.6/site-packages/skimage/future/graph/_ncut_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/future/graph/graph_cut.py\', \'lib/python3.6/site-packages/skimage/future/graph/graph_merge.py\', \'lib/python3.6/site-packages/skimage/future/graph/rag.py\', \'lib/python3.6/site-packages/skimage/future/graph/setup.py\', \'lib/python3.6/site-packages/skimage/future/graph/tests/__pycache__/test_rag.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/future/graph/tests/test_rag.py\', \'lib/python3.6/site-packages/skimage/future/setup.py\', \'lib/python3.6/site-packages/skimage/graph/__init__.py\', \'lib/python3.6/site-packages/skimage/graph/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/__pycache__/mcp.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/__pycache__/spath.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/_mcp.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/graph/_spath.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/graph/heap.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/graph/mcp.py\', \'lib/python3.6/site-packages/skimage/graph/setup.py\', \'lib/python3.6/site-packages/skimage/graph/spath.py\', \'lib/python3.6/site-packages/skimage/graph/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_anisotropy.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_connect.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_flexible.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_heap.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_mcp.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/__pycache__/test_spath.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/graph/tests/test_anisotropy.py\', \'lib/python3.6/site-packages/skimage/graph/tests/test_connect.py\', \'lib/python3.6/site-packages/skimage/graph/tests/test_flexible.py\', \'lib/python3.6/site-packages/skimage/graph/tests/test_heap.py\', \'lib/python3.6/site-packages/skimage/graph/tests/test_mcp.py\', \'lib/python3.6/site-packages/skimage/graph/tests/test_spath.py\', \'lib/python3.6/site-packages/skimage/io/__init__.py\', \'lib/python3.6/site-packages/skimage/io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/_image_stack.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/_io.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/collection.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/manage_plugins.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/sift.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_image_stack.py\', \'lib/python3.6/site-packages/skimage/io/_io.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/__init__.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/fits_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/freeimage_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/gdal_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/gtk_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/imageio_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/imread_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/matplotlib_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/pil_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/q_color_mixer.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/q_histogram.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/qt_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/simpleitk_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/skivi.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/test_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/tifffile_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/_plugins/_colormixer.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/io/_plugins/_histograms.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/io/_plugins/fits_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/fits_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/freeimage_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/freeimage_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/gdal_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/gdal_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/gtk_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/gtk_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/imageio_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/imageio_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/imread_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/imread_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/matplotlib_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/matplotlib_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/pil_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/pil_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/q_color_mixer.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/q_histogram.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/qt_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/qt_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/simpleitk_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/simpleitk_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/skivi.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/test_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/test_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/tifffile_plugin.ini\', \'lib/python3.6/site-packages/skimage/io/_plugins/tifffile_plugin.py\', \'lib/python3.6/site-packages/skimage/io/_plugins/util.py\', \'lib/python3.6/site-packages/skimage/io/collection.py\', \'lib/python3.6/site-packages/skimage/io/manage_plugins.py\', \'lib/python3.6/site-packages/skimage/io/setup.py\', \'lib/python3.6/site-packages/skimage/io/sift.py\', \'lib/python3.6/site-packages/skimage/io/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_collection.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_colormixer.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_fits.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_freeimage.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_histograms.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_imageio.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_imread.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_mpl_imshow.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_multi_image.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_pil.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_plugin_util.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_sift.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_simpleitk.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/__pycache__/test_tifffile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/io/tests/test_collection.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_colormixer.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_fits.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_freeimage.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_histograms.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_imageio.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_imread.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_io.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_mpl_imshow.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_multi_image.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_pil.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_plugin.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_plugin_util.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_sift.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_simpleitk.py\', \'lib/python3.6/site-packages/skimage/io/tests/test_tifffile.py\', \'lib/python3.6/site-packages/skimage/io/util.py\', \'lib/python3.6/site-packages/skimage/measure/__init__.py\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_find_contours.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_label.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_marching_cubes.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_moments.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_polygon.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_regionprops.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/_structural_similarity.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/block.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/fit.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/profile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/__pycache__/simple_metrics.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/_ccomp.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/measure/_find_contours.py\', \'lib/python3.6/site-packages/skimage/measure/_find_contours_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/measure/_label.py\', \'lib/python3.6/site-packages/skimage/measure/_marching_cubes.py\', \'lib/python3.6/site-packages/skimage/measure/_marching_cubes_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/measure/_moments.py\', \'lib/python3.6/site-packages/skimage/measure/_moments_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/measure/_pnpoly.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/measure/_polygon.py\', \'lib/python3.6/site-packages/skimage/measure/_regionprops.py\', \'lib/python3.6/site-packages/skimage/measure/_structural_similarity.py\', \'lib/python3.6/site-packages/skimage/measure/block.py\', \'lib/python3.6/site-packages/skimage/measure/fit.py\', \'lib/python3.6/site-packages/skimage/measure/profile.py\', \'lib/python3.6/site-packages/skimage/measure/setup.py\', \'lib/python3.6/site-packages/skimage/measure/simple_metrics.py\', \'lib/python3.6/site-packages/skimage/measure/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_block.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_find_contours.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_fit.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_marching_cubes.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_moments.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_pnpoly.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_polygon.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_profile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_regionprops.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_simple_metrics.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/__pycache__/test_structural_similarity.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/measure/tests/test_block.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_find_contours.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_fit.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_marching_cubes.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_moments.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_pnpoly.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_polygon.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_profile.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_regionprops.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_simple_metrics.py\', \'lib/python3.6/site-packages/skimage/measure/tests/test_structural_similarity.py\', \'lib/python3.6/site-packages/skimage/morphology/__init__.py\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/_skeletonize.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/_skeletonize_3d.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/binary.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/convex_hull.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/grey.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/greyreconstruct.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/selem.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/__pycache__/watershed.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/_convex_hull.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/morphology/_greyreconstruct.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/morphology/_skeletonize.py\', \'lib/python3.6/site-packages/skimage/morphology/_skeletonize_3d.py\', \'lib/python3.6/site-packages/skimage/morphology/_skeletonize_3d_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/morphology/_skeletonize_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/morphology/_watershed.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/morphology/binary.py\', \'lib/python3.6/site-packages/skimage/morphology/convex_hull.py\', \'lib/python3.6/site-packages/skimage/morphology/grey.py\', \'lib/python3.6/site-packages/skimage/morphology/greyreconstruct.py\', \'lib/python3.6/site-packages/skimage/morphology/misc.py\', \'lib/python3.6/site-packages/skimage/morphology/selem.py\', \'lib/python3.6/site-packages/skimage/morphology/setup.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_binary.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_ccomp.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_convex_hull.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_grey.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_reconstruction.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_selem.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_skeletonize.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_skeletonize_3d.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/__pycache__/test_watershed.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_binary.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_ccomp.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_convex_hull.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_grey.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_misc.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_reconstruction.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_selem.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_skeletonize.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_skeletonize_3d.py\', \'lib/python3.6/site-packages/skimage/morphology/tests/test_watershed.py\', \'lib/python3.6/site-packages/skimage/morphology/watershed.py\', \'lib/python3.6/site-packages/skimage/novice/__init__.py\', \'lib/python3.6/site-packages/skimage/novice/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/novice/__pycache__/_novice.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/novice/_novice.py\', \'lib/python3.6/site-packages/skimage/novice/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/novice/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/novice/tests/__pycache__/test_novice.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/novice/tests/test_novice.py\', \'lib/python3.6/site-packages/skimage/restoration/__init__.py\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/_denoise.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/deconvolution.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/inpaint.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/non_local_means.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/uft.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/__pycache__/unwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/_denoise.py\', \'lib/python3.6/site-packages/skimage/restoration/_denoise_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/restoration/_nl_means_denoising.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/restoration/_unwrap_1d.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/restoration/_unwrap_2d.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/restoration/_unwrap_3d.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/restoration/deconvolution.py\', \'lib/python3.6/site-packages/skimage/restoration/inpaint.py\', \'lib/python3.6/site-packages/skimage/restoration/non_local_means.py\', \'lib/python3.6/site-packages/skimage/restoration/setup.py\', \'lib/python3.6/site-packages/skimage/restoration/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/restoration/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/tests/__pycache__/test_denoise.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/tests/__pycache__/test_inpaint.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/tests/__pycache__/test_restoration.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/tests/__pycache__/test_unwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/restoration/tests/camera_rl.npy\', \'lib/python3.6/site-packages/skimage/restoration/tests/camera_unsup.npy\', \'lib/python3.6/site-packages/skimage/restoration/tests/camera_unsup2.npy\', \'lib/python3.6/site-packages/skimage/restoration/tests/camera_wiener.npy\', \'lib/python3.6/site-packages/skimage/restoration/tests/test_denoise.py\', \'lib/python3.6/site-packages/skimage/restoration/tests/test_inpaint.py\', \'lib/python3.6/site-packages/skimage/restoration/tests/test_restoration.py\', \'lib/python3.6/site-packages/skimage/restoration/tests/test_unwrap.py\', \'lib/python3.6/site-packages/skimage/restoration/uft.py\', \'lib/python3.6/site-packages/skimage/restoration/unwrap.py\', \'lib/python3.6/site-packages/skimage/scripts/__init__.py\', \'lib/python3.6/site-packages/skimage/scripts/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/scripts/__pycache__/skivi.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/scripts/skivi.py\', \'lib/python3.6/site-packages/skimage/segmentation/__init__.py\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/_clear_border.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/_felzenszwalb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/_join.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/active_contour_model.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/boundaries.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/random_walker_segmentation.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/__pycache__/slic_superpixels.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/_clear_border.py\', \'lib/python3.6/site-packages/skimage/segmentation/_felzenszwalb.py\', \'lib/python3.6/site-packages/skimage/segmentation/_felzenszwalb_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/segmentation/_join.py\', \'lib/python3.6/site-packages/skimage/segmentation/_quickshift.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/segmentation/_slic.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/segmentation/active_contour_model.py\', \'lib/python3.6/site-packages/skimage/segmentation/boundaries.py\', \'lib/python3.6/site-packages/skimage/segmentation/random_walker_segmentation.py\', \'lib/python3.6/site-packages/skimage/segmentation/setup.py\', \'lib/python3.6/site-packages/skimage/segmentation/slic_superpixels.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_active_contour_model.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_boundaries.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_clear_border.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_felzenszwalb.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_join.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_quickshift.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_random_walker.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/__pycache__/test_slic.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_active_contour_model.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_boundaries.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_clear_border.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_felzenszwalb.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_join.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_quickshift.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_random_walker.py\', \'lib/python3.6/site-packages/skimage/segmentation/tests/test_slic.py\', \'lib/python3.6/site-packages/skimage/setup.py\', \'lib/python3.6/site-packages/skimage/transform/__init__.py\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/_geometric.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/_warps.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/finite_radon_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/hough_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/integral.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/pyramids.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/radon_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/seam_carving.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/_geometric.py\', \'lib/python3.6/site-packages/skimage/transform/_hough_transform.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/transform/_radon_transform.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/transform/_seam_carving.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/transform/_warps.py\', \'lib/python3.6/site-packages/skimage/transform/_warps_cy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/skimage/transform/finite_radon_transform.py\', \'lib/python3.6/site-packages/skimage/transform/hough_transform.py\', \'lib/python3.6/site-packages/skimage/transform/integral.py\', \'lib/python3.6/site-packages/skimage/transform/pyramids.py\', \'lib/python3.6/site-packages/skimage/transform/radon_transform.py\', \'lib/python3.6/site-packages/skimage/transform/seam_carving.py\', \'lib/python3.6/site-packages/skimage/transform/setup.py\', \'lib/python3.6/site-packages/skimage/transform/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_finite_radon_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_geometric.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_hough_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_integral.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_pyramids.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_radon_transform.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_seam_carving.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/__pycache__/test_warps.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/transform/tests/test_finite_radon_transform.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_geometric.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_hough_transform.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_integral.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_pyramids.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_radon_transform.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_seam_carving.py\', \'lib/python3.6/site-packages/skimage/transform/tests/test_warps.py\', \'lib/python3.6/site-packages/skimage/util/__init__.py\', \'lib/python3.6/site-packages/skimage/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/_regular_grid.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/apply_parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/arraypad.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/colormap.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/montage.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/noise.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/shape.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/__pycache__/unique.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/_regular_grid.py\', \'lib/python3.6/site-packages/skimage/util/apply_parallel.py\', \'lib/python3.6/site-packages/skimage/util/arraypad.py\', \'lib/python3.6/site-packages/skimage/util/colormap.py\', \'lib/python3.6/site-packages/skimage/util/dtype.py\', \'lib/python3.6/site-packages/skimage/util/montage.py\', \'lib/python3.6/site-packages/skimage/util/noise.py\', \'lib/python3.6/site-packages/skimage/util/shape.py\', \'lib/python3.6/site-packages/skimage/util/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_apply_parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_arraypad.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_dtype.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_montage.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_random_noise.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_regular_grid.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_shape.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/__pycache__/test_unique_rows.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/util/tests/test_apply_parallel.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_arraypad.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_dtype.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_montage.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_random_noise.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_regular_grid.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_shape.py\', \'lib/python3.6/site-packages/skimage/util/tests/test_unique_rows.py\', \'lib/python3.6/site-packages/skimage/util/unique.py\', \'lib/python3.6/site-packages/skimage/viewer/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/__pycache__/qt.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__pycache__/linetool.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__pycache__/painttool.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/__pycache__/recttool.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/base.py\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/linetool.py\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/painttool.py\', \'lib/python3.6/site-packages/skimage/viewer/canvastools/recttool.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/canny.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/color_histogram.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/crop.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/labelplugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/lineprofile.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/measure.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/overlayplugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/__pycache__/plotplugin.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/plugins/base.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/canny.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/color_histogram.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/crop.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/labelplugin.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/lineprofile.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/measure.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/overlayplugin.py\', \'lib/python3.6/site-packages/skimage/viewer/plugins/plotplugin.py\', \'lib/python3.6/site-packages/skimage/viewer/qt.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/test_plugins.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/test_viewer.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/__pycache__/test_widgets.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/tests/test_plugins.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/test_tools.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/test_utils.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/test_viewer.py\', \'lib/python3.6/site-packages/skimage/viewer/tests/test_widgets.py\', \'lib/python3.6/site-packages/skimage/viewer/utils/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/utils/__pycache__/canvas.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/utils/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/utils/__pycache__/dialogs.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/utils/canvas.py\', \'lib/python3.6/site-packages/skimage/viewer/utils/core.py\', \'lib/python3.6/site-packages/skimage/viewer/utils/dialogs.py\', \'lib/python3.6/site-packages/skimage/viewer/viewers/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/viewers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/viewers/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/viewers/core.py\', \'lib/python3.6/site-packages/skimage/viewer/widgets/__init__.py\', \'lib/python3.6/site-packages/skimage/viewer/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/widgets/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/widgets/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/skimage/viewer/widgets/core.py\', \'lib/python3.6/site-packages/skimage/viewer/widgets/history.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/scikit-image-0.12.3-np111py36_1\', type=1))", "defaults::scikit-learn-0.18.1-np111py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_1\', build_number=1, depends=(\'mkl 2017.0.1\', \'numpy 1.11*\', \'python 3.6*\', \'scipy\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'dd715c3dead99c3f4089a6e2b5297fbf\', name=\'scikit-learn\', platform=\'linux\', subdir=\'linux-64\', version=\'0.18.1\', fn=\'scikit-learn-0.18.1-np111py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/scikit-learn-0.18.1-np111py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/scikit_learn-0.18.1-py3.6.egg-info\', \'lib/python3.6/site-packages/sklearn/__check_build/__init__.py\', \'lib/python3.6/site-packages/sklearn/__check_build/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__check_build/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__check_build/_check_build.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/__check_build/setup.py\', \'lib/python3.6/site-packages/sklearn/__init__.py\', \'lib/python3.6/site-packages/sklearn/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/calibration.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/cross_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/discriminant_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/dummy.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/grid_search.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/isotonic.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/kernel_approximation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/kernel_ridge.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/lda.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/learning_curve.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/multiclass.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/multioutput.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/naive_bayes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/pipeline.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/qda.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/random_projection.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/_build_utils/__init__.py\', \'lib/python3.6/site-packages/sklearn/_build_utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/_isotonic.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/base.py\', \'lib/python3.6/site-packages/sklearn/calibration.py\', \'lib/python3.6/site-packages/sklearn/cluster/__init__.py\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/_feature_agglomeration.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/affinity_propagation_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/bicluster.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/birch.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/dbscan_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/hierarchical.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/k_means_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/mean_shift_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/__pycache__/spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/_dbscan_inner.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/cluster/_feature_agglomeration.py\', \'lib/python3.6/site-packages/sklearn/cluster/_hierarchical.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/cluster/_k_means.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/cluster/_k_means_elkan.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/cluster/affinity_propagation_.py\', \'lib/python3.6/site-packages/sklearn/cluster/bicluster.py\', \'lib/python3.6/site-packages/sklearn/cluster/birch.py\', \'lib/python3.6/site-packages/sklearn/cluster/dbscan_.py\', \'lib/python3.6/site-packages/sklearn/cluster/hierarchical.py\', \'lib/python3.6/site-packages/sklearn/cluster/k_means_.py\', \'lib/python3.6/site-packages/sklearn/cluster/mean_shift_.py\', \'lib/python3.6/site-packages/sklearn/cluster/setup.py\', \'lib/python3.6/site-packages/sklearn/cluster/spectral.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_affinity_propagation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_bicluster.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_birch.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_dbscan.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_hierarchical.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_k_means.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_mean_shift.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/__pycache__/test_spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cluster/tests/common.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_affinity_propagation.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_bicluster.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_birch.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_dbscan.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_hierarchical.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_k_means.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_mean_shift.py\', \'lib/python3.6/site-packages/sklearn/cluster/tests/test_spectral.py\', \'lib/python3.6/site-packages/sklearn/covariance/__init__.py\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/empirical_covariance_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/graph_lasso_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/outlier_detection.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/robust_covariance.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/__pycache__/shrunk_covariance_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/empirical_covariance_.py\', \'lib/python3.6/site-packages/sklearn/covariance/graph_lasso_.py\', \'lib/python3.6/site-packages/sklearn/covariance/outlier_detection.py\', \'lib/python3.6/site-packages/sklearn/covariance/robust_covariance.py\', \'lib/python3.6/site-packages/sklearn/covariance/shrunk_covariance_.py\', \'lib/python3.6/site-packages/sklearn/covariance/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/covariance/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/tests/__pycache__/test_covariance.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/tests/__pycache__/test_graph_lasso.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/tests/__pycache__/test_robust_covariance.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/covariance/tests/test_covariance.py\', \'lib/python3.6/site-packages/sklearn/covariance/tests/test_graph_lasso.py\', \'lib/python3.6/site-packages/sklearn/covariance/tests/test_robust_covariance.py\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/__init__.py\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/__pycache__/cca_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/__pycache__/pls_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/cca_.py\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/pls_.py\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/tests/__pycache__/test_pls.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/cross_decomposition/tests/test_pls.py\', \'lib/python3.6/site-packages/sklearn/cross_validation.py\', \'lib/python3.6/site-packages/sklearn/datasets/__init__.py\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/california_housing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/covtype.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/kddcup99.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/lfw.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/mlcomp.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/mldata.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/olivetti_faces.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/rcv1.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/samples_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/species_distributions.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/svmlight_format.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/__pycache__/twenty_newsgroups.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/_svmlight_format.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/datasets/base.py\', \'lib/python3.6/site-packages/sklearn/datasets/california_housing.py\', \'lib/python3.6/site-packages/sklearn/datasets/covtype.py\', \'lib/python3.6/site-packages/sklearn/datasets/data/boston_house_prices.csv\', \'lib/python3.6/site-packages/sklearn/datasets/data/breast_cancer.csv\', \'lib/python3.6/site-packages/sklearn/datasets/data/diabetes_data.csv.gz\', \'lib/python3.6/site-packages/sklearn/datasets/data/diabetes_target.csv.gz\', \'lib/python3.6/site-packages/sklearn/datasets/data/digits.csv.gz\', \'lib/python3.6/site-packages/sklearn/datasets/data/iris.csv\', \'lib/python3.6/site-packages/sklearn/datasets/data/linnerud_exercise.csv\', \'lib/python3.6/site-packages/sklearn/datasets/data/linnerud_physiological.csv\', \'lib/python3.6/site-packages/sklearn/datasets/descr/boston_house_prices.rst\', \'lib/python3.6/site-packages/sklearn/datasets/descr/breast_cancer.rst\', \'lib/python3.6/site-packages/sklearn/datasets/descr/diabetes.rst\', \'lib/python3.6/site-packages/sklearn/datasets/descr/digits.rst\', \'lib/python3.6/site-packages/sklearn/datasets/descr/iris.rst\', \'lib/python3.6/site-packages/sklearn/datasets/descr/linnerud.rst\', \'lib/python3.6/site-packages/sklearn/datasets/images/README.txt\', \'lib/python3.6/site-packages/sklearn/datasets/images/china.jpg\', \'lib/python3.6/site-packages/sklearn/datasets/images/flower.jpg\', \'lib/python3.6/site-packages/sklearn/datasets/kddcup99.py\', \'lib/python3.6/site-packages/sklearn/datasets/lfw.py\', \'lib/python3.6/site-packages/sklearn/datasets/mlcomp.py\', \'lib/python3.6/site-packages/sklearn/datasets/mldata.py\', \'lib/python3.6/site-packages/sklearn/datasets/olivetti_faces.py\', \'lib/python3.6/site-packages/sklearn/datasets/rcv1.py\', \'lib/python3.6/site-packages/sklearn/datasets/samples_generator.py\', \'lib/python3.6/site-packages/sklearn/datasets/setup.py\', \'lib/python3.6/site-packages/sklearn/datasets/species_distributions.py\', \'lib/python3.6/site-packages/sklearn/datasets/svmlight_format.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_20news.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_covtype.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_kddcup99.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_lfw.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_mldata.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_rcv1.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_samples_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/__pycache__/test_svmlight_format.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/datasets/tests/data/svmlight_classification.txt\', \'lib/python3.6/site-packages/sklearn/datasets/tests/data/svmlight_invalid.txt\', \'lib/python3.6/site-packages/sklearn/datasets/tests/data/svmlight_invalid_order.txt\', \'lib/python3.6/site-packages/sklearn/datasets/tests/data/svmlight_multilabel.txt\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_20news.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_base.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_covtype.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_kddcup99.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_lfw.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_mldata.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_rcv1.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_samples_generator.py\', \'lib/python3.6/site-packages/sklearn/datasets/tests/test_svmlight_format.py\', \'lib/python3.6/site-packages/sklearn/datasets/twenty_newsgroups.py\', \'lib/python3.6/site-packages/sklearn/decomposition/__init__.py\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/dict_learning.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/factor_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/fastica_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/incremental_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/kernel_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/nmf.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/online_lda.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/sparse_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/__pycache__/truncated_svd.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/_online_lda.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/decomposition/base.py\', \'lib/python3.6/site-packages/sklearn/decomposition/cdnmf_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/decomposition/dict_learning.py\', \'lib/python3.6/site-packages/sklearn/decomposition/factor_analysis.py\', \'lib/python3.6/site-packages/sklearn/decomposition/fastica_.py\', \'lib/python3.6/site-packages/sklearn/decomposition/incremental_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/kernel_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/nmf.py\', \'lib/python3.6/site-packages/sklearn/decomposition/online_lda.py\', \'lib/python3.6/site-packages/sklearn/decomposition/pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/setup.py\', \'lib/python3.6/site-packages/sklearn/decomposition/sparse_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_dict_learning.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_factor_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_fastica.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_incremental_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_kernel_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_nmf.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_online_lda.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_sparse_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/__pycache__/test_truncated_svd.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_dict_learning.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_factor_analysis.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_fastica.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_incremental_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_kernel_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_nmf.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_online_lda.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_sparse_pca.py\', \'lib/python3.6/site-packages/sklearn/decomposition/tests/test_truncated_svd.py\', \'lib/python3.6/site-packages/sklearn/decomposition/truncated_svd.py\', \'lib/python3.6/site-packages/sklearn/discriminant_analysis.py\', \'lib/python3.6/site-packages/sklearn/dummy.py\', \'lib/python3.6/site-packages/sklearn/ensemble/__init__.py\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/bagging.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/forest.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/gradient_boosting.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/iforest.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/partial_dependence.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/voting_classifier.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/__pycache__/weight_boosting.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/_gradient_boosting.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/ensemble/bagging.py\', \'lib/python3.6/site-packages/sklearn/ensemble/base.py\', \'lib/python3.6/site-packages/sklearn/ensemble/forest.py\', \'lib/python3.6/site-packages/sklearn/ensemble/gradient_boosting.py\', \'lib/python3.6/site-packages/sklearn/ensemble/iforest.py\', \'lib/python3.6/site-packages/sklearn/ensemble/partial_dependence.py\', \'lib/python3.6/site-packages/sklearn/ensemble/setup.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_bagging.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_forest.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_gradient_boosting.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_gradient_boosting_loss_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_iforest.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_partial_dependence.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_voting_classifier.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/__pycache__/test_weight_boosting.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_bagging.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_base.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_forest.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_gradient_boosting.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_gradient_boosting_loss_functions.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_iforest.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_partial_dependence.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_voting_classifier.py\', \'lib/python3.6/site-packages/sklearn/ensemble/tests/test_weight_boosting.py\', \'lib/python3.6/site-packages/sklearn/ensemble/voting_classifier.py\', \'lib/python3.6/site-packages/sklearn/ensemble/weight_boosting.py\', \'lib/python3.6/site-packages/sklearn/exceptions.py\', \'lib/python3.6/site-packages/sklearn/externals/__init__.py\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/funcsigs.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/odict.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/__pycache__/test_externals_setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/funcsigs.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__init__.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/_memory_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/_multiprocessing_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/_parallel_backends.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/disk.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/format_stack.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/func_inspect.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/logger.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/memory.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/my_exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/numpy_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/numpy_pickle_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/numpy_pickle_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/pool.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/externals/joblib/_compat.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/_memory_helpers.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/_multiprocessing_helpers.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/_parallel_backends.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/disk.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/format_stack.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/func_inspect.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/hashing.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/logger.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/memory.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/my_exceptions.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle_compat.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/numpy_pickle_utils.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/parallel.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/pool.py\', \'lib/python3.6/site-packages/sklearn/externals/joblib/testing.py\', \'lib/python3.6/site-packages/sklearn/externals/odict.py\', \'lib/python3.6/site-packages/sklearn/externals/setup.py\', \'lib/python3.6/site-packages/sklearn/externals/six.py\', \'lib/python3.6/site-packages/sklearn/externals/test_externals_setup.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__init__.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/dict_vectorizer.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/hashing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/image.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/stop_words.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/_hashing.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/feature_extraction/dict_vectorizer.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/hashing.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/image.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/setup.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/stop_words.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__pycache__/test_dict_vectorizer.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__pycache__/test_feature_hasher.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__pycache__/test_image.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/__pycache__/test_text.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/test_dict_vectorizer.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/test_feature_hasher.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/test_image.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/tests/test_text.py\', \'lib/python3.6/site-packages/sklearn/feature_extraction/text.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/__init__.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/from_model.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/mutual_info_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/rfe.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/univariate_selection.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/__pycache__/variance_threshold.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/base.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/from_model.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/mutual_info_.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/rfe.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_chi2.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_feature_select.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_from_model.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_mutual_info.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_rfe.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/__pycache__/test_variance_threshold.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_base.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_chi2.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_feature_select.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_from_model.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_mutual_info.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_rfe.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/tests/test_variance_threshold.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/univariate_selection.py\', \'lib/python3.6/site-packages/sklearn/feature_selection/variance_threshold.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__init__.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/correlation_models.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/gaussian_process.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/gpc.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/gpr.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/__pycache__/regression_models.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/correlation_models.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/gaussian_process.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/gpc.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/gpr.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/kernels.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/regression_models.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__pycache__/test_gaussian_process.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__pycache__/test_gpc.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__pycache__/test_gpr.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/__pycache__/test_kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/test_gaussian_process.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/test_gpc.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/test_gpr.py\', \'lib/python3.6/site-packages/sklearn/gaussian_process/tests/test_kernels.py\', \'lib/python3.6/site-packages/sklearn/grid_search.py\', \'lib/python3.6/site-packages/sklearn/isotonic.py\', \'lib/python3.6/site-packages/sklearn/kernel_approximation.py\', \'lib/python3.6/site-packages/sklearn/kernel_ridge.py\', \'lib/python3.6/site-packages/sklearn/lda.py\', \'lib/python3.6/site-packages/sklearn/learning_curve.py\', \'lib/python3.6/site-packages/sklearn/linear_model/__init__.py\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/bayes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/coordinate_descent.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/huber.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/least_angle.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/logistic.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/omp.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/passive_aggressive.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/perceptron.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/randomized_l1.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/ransac.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/ridge.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/sag.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/stochastic_gradient.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/__pycache__/theil_sen.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/base.py\', \'lib/python3.6/site-packages/sklearn/linear_model/bayes.py\', \'lib/python3.6/site-packages/sklearn/linear_model/cd_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/linear_model/coordinate_descent.py\', \'lib/python3.6/site-packages/sklearn/linear_model/huber.py\', \'lib/python3.6/site-packages/sklearn/linear_model/least_angle.py\', \'lib/python3.6/site-packages/sklearn/linear_model/logistic.py\', \'lib/python3.6/site-packages/sklearn/linear_model/omp.py\', \'lib/python3.6/site-packages/sklearn/linear_model/passive_aggressive.py\', \'lib/python3.6/site-packages/sklearn/linear_model/perceptron.py\', \'lib/python3.6/site-packages/sklearn/linear_model/randomized_l1.py\', \'lib/python3.6/site-packages/sklearn/linear_model/ransac.py\', \'lib/python3.6/site-packages/sklearn/linear_model/ridge.py\', \'lib/python3.6/site-packages/sklearn/linear_model/sag.py\', \'lib/python3.6/site-packages/sklearn/linear_model/sag_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/linear_model/setup.py\', \'lib/python3.6/site-packages/sklearn/linear_model/sgd_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/linear_model/stochastic_gradient.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_bayes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_coordinate_descent.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_huber.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_least_angle.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_logistic.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_omp.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_passive_aggressive.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_perceptron.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_randomized_l1.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_ransac.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_ridge.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_sag.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_sgd.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_sparse_coordinate_descent.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/__pycache__/test_theil_sen.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_base.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_bayes.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_coordinate_descent.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_huber.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_least_angle.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_logistic.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_omp.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_passive_aggressive.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_perceptron.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_randomized_l1.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_ransac.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_ridge.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_sag.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_sgd.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_sparse_coordinate_descent.py\', \'lib/python3.6/site-packages/sklearn/linear_model/tests/test_theil_sen.py\', \'lib/python3.6/site-packages/sklearn/linear_model/theil_sen.py\', \'lib/python3.6/site-packages/sklearn/manifold/__init__.py\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/isomap.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/locally_linear.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/mds.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/spectral_embedding_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/__pycache__/t_sne.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/_barnes_hut_tsne.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/manifold/_utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/manifold/isomap.py\', \'lib/python3.6/site-packages/sklearn/manifold/locally_linear.py\', \'lib/python3.6/site-packages/sklearn/manifold/mds.py\', \'lib/python3.6/site-packages/sklearn/manifold/setup.py\', \'lib/python3.6/site-packages/sklearn/manifold/spectral_embedding_.py\', \'lib/python3.6/site-packages/sklearn/manifold/t_sne.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/test_isomap.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/test_locally_linear.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/test_mds.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/test_spectral_embedding.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/__pycache__/test_t_sne.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/manifold/tests/test_isomap.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/test_locally_linear.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/test_mds.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/test_spectral_embedding.py\', \'lib/python3.6/site-packages/sklearn/manifold/tests/test_t_sne.py\', \'lib/python3.6/site-packages/sklearn/metrics/__init__.py\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/classification.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/pairwise.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/ranking.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/regression.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/scorer.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/base.py\', \'lib/python3.6/site-packages/sklearn/metrics/classification.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__init__.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__pycache__/bicluster.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__pycache__/supervised.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/__pycache__/unsupervised.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/bicluster.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/expected_mutual_info_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/setup.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/supervised.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/__pycache__/test_bicluster.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/__pycache__/test_supervised.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/__pycache__/test_unsupervised.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/test_bicluster.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/test_supervised.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/tests/test_unsupervised.py\', \'lib/python3.6/site-packages/sklearn/metrics/cluster/unsupervised.py\', \'lib/python3.6/site-packages/sklearn/metrics/pairwise.py\', \'lib/python3.6/site-packages/sklearn/metrics/pairwise_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/metrics/ranking.py\', \'lib/python3.6/site-packages/sklearn/metrics/regression.py\', \'lib/python3.6/site-packages/sklearn/metrics/scorer.py\', \'lib/python3.6/site-packages/sklearn/metrics/setup.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_classification.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_pairwise.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_ranking.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/__pycache__/test_score_objects.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_classification.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_common.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_pairwise.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_ranking.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_regression.py\', \'lib/python3.6/site-packages/sklearn/metrics/tests/test_score_objects.py\', \'lib/python3.6/site-packages/sklearn/mixture/__init__.py\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/bayesian_mixture.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/dpgmm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/gaussian_mixture.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/__pycache__/gmm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/base.py\', \'lib/python3.6/site-packages/sklearn/mixture/bayesian_mixture.py\', \'lib/python3.6/site-packages/sklearn/mixture/dpgmm.py\', \'lib/python3.6/site-packages/sklearn/mixture/gaussian_mixture.py\', \'lib/python3.6/site-packages/sklearn/mixture/gmm.py\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__pycache__/test_bayesian_mixture.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__pycache__/test_dpgmm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__pycache__/test_gaussian_mixture.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/tests/__pycache__/test_gmm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/mixture/tests/test_bayesian_mixture.py\', \'lib/python3.6/site-packages/sklearn/mixture/tests/test_dpgmm.py\', \'lib/python3.6/site-packages/sklearn/mixture/tests/test_gaussian_mixture.py\', \'lib/python3.6/site-packages/sklearn/mixture/tests/test_gmm.py\', \'lib/python3.6/site-packages/sklearn/model_selection/__init__.py\', \'lib/python3.6/site-packages/sklearn/model_selection/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/__pycache__/_search.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/__pycache__/_split.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/__pycache__/_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/_search.py\', \'lib/python3.6/site-packages/sklearn/model_selection/_split.py\', \'lib/python3.6/site-packages/sklearn/model_selection/_validation.py\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__pycache__/test_search.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__pycache__/test_split.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/__pycache__/test_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/common.py\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/test_search.py\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/test_split.py\', \'lib/python3.6/site-packages/sklearn/model_selection/tests/test_validation.py\', \'lib/python3.6/site-packages/sklearn/multiclass.py\', \'lib/python3.6/site-packages/sklearn/multioutput.py\', \'lib/python3.6/site-packages/sklearn/naive_bayes.py\', \'lib/python3.6/site-packages/sklearn/neighbors/__init__.py\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/approximate.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/classification.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/graph.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/kde.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/nearest_centroid.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/regression.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/__pycache__/unsupervised.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/approximate.py\', \'lib/python3.6/site-packages/sklearn/neighbors/ball_tree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/neighbors/base.py\', \'lib/python3.6/site-packages/sklearn/neighbors/classification.py\', \'lib/python3.6/site-packages/sklearn/neighbors/dist_metrics.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/neighbors/graph.py\', \'lib/python3.6/site-packages/sklearn/neighbors/kd_tree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/neighbors/kde.py\', \'lib/python3.6/site-packages/sklearn/neighbors/nearest_centroid.py\', \'lib/python3.6/site-packages/sklearn/neighbors/regression.py\', \'lib/python3.6/site-packages/sklearn/neighbors/setup.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_approximate.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_ball_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_dist_metrics.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_kd_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_kde.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_nearest_centroid.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/__pycache__/test_neighbors.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_approximate.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_ball_tree.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_dist_metrics.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_kd_tree.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_kde.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_nearest_centroid.py\', \'lib/python3.6/site-packages/sklearn/neighbors/tests/test_neighbors.py\', \'lib/python3.6/site-packages/sklearn/neighbors/typedefs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/neighbors/unsupervised.py\', \'lib/python3.6/site-packages/sklearn/neural_network/__init__.py\', \'lib/python3.6/site-packages/sklearn/neural_network/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/__pycache__/_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/__pycache__/_stochastic_optimizers.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/__pycache__/multilayer_perceptron.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/__pycache__/rbm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/_base.py\', \'lib/python3.6/site-packages/sklearn/neural_network/_stochastic_optimizers.py\', \'lib/python3.6/site-packages/sklearn/neural_network/multilayer_perceptron.py\', \'lib/python3.6/site-packages/sklearn/neural_network/rbm.py\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/__pycache__/test_mlp.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/__pycache__/test_rbm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/__pycache__/test_stochastic_optimizers.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/test_mlp.py\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/test_rbm.py\', \'lib/python3.6/site-packages/sklearn/neural_network/tests/test_stochastic_optimizers.py\', \'lib/python3.6/site-packages/sklearn/pipeline.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/__init__.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/__pycache__/_function_transformer.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/__pycache__/imputation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/__pycache__/label.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/_function_transformer.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/data.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/imputation.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/label.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__pycache__/test_function_transformer.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__pycache__/test_imputation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/__pycache__/test_label.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/test_data.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/test_function_transformer.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/test_imputation.py\', \'lib/python3.6/site-packages/sklearn/preprocessing/tests/test_label.py\', \'lib/python3.6/site-packages/sklearn/qda.py\', \'lib/python3.6/site-packages/sklearn/random_projection.py\', \'lib/python3.6/site-packages/sklearn/semi_supervised/__init__.py\', \'lib/python3.6/site-packages/sklearn/semi_supervised/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/semi_supervised/__pycache__/label_propagation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/semi_supervised/label_propagation.py\', \'lib/python3.6/site-packages/sklearn/semi_supervised/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/semi_supervised/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/semi_supervised/tests/__pycache__/test_label_propagation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/semi_supervised/tests/test_label_propagation.py\', \'lib/python3.6/site-packages/sklearn/setup.py\', \'lib/python3.6/site-packages/sklearn/svm/__init__.py\', \'lib/python3.6/site-packages/sklearn/svm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/__pycache__/bounds.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/__pycache__/classes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/base.py\', \'lib/python3.6/site-packages/sklearn/svm/bounds.py\', \'lib/python3.6/site-packages/sklearn/svm/classes.py\', \'lib/python3.6/site-packages/sklearn/svm/liblinear.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/svm/libsvm.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/svm/libsvm_sparse.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/svm/setup.py\', \'lib/python3.6/site-packages/sklearn/svm/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/svm/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/tests/__pycache__/test_bounds.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/tests/__pycache__/test_sparse.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/tests/__pycache__/test_svm.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/svm/tests/test_bounds.py\', \'lib/python3.6/site-packages/sklearn/svm/tests/test_sparse.py\', \'lib/python3.6/site-packages/sklearn/svm/tests/test_svm.py\', \'lib/python3.6/site-packages/sklearn/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_calibration.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_check_build.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_cross_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_discriminant_analysis.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_dummy.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_grid_search.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_init.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_isotonic.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_kernel_approximation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_kernel_ridge.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_learning_curve.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_metaestimators.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_multiclass.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_multioutput.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_naive_bayes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_pipeline.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/__pycache__/test_random_projection.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tests/test_base.py\', \'lib/python3.6/site-packages/sklearn/tests/test_calibration.py\', \'lib/python3.6/site-packages/sklearn/tests/test_check_build.py\', \'lib/python3.6/site-packages/sklearn/tests/test_common.py\', \'lib/python3.6/site-packages/sklearn/tests/test_cross_validation.py\', \'lib/python3.6/site-packages/sklearn/tests/test_discriminant_analysis.py\', \'lib/python3.6/site-packages/sklearn/tests/test_dummy.py\', \'lib/python3.6/site-packages/sklearn/tests/test_grid_search.py\', \'lib/python3.6/site-packages/sklearn/tests/test_init.py\', \'lib/python3.6/site-packages/sklearn/tests/test_isotonic.py\', \'lib/python3.6/site-packages/sklearn/tests/test_kernel_approximation.py\', \'lib/python3.6/site-packages/sklearn/tests/test_kernel_ridge.py\', \'lib/python3.6/site-packages/sklearn/tests/test_learning_curve.py\', \'lib/python3.6/site-packages/sklearn/tests/test_metaestimators.py\', \'lib/python3.6/site-packages/sklearn/tests/test_multiclass.py\', \'lib/python3.6/site-packages/sklearn/tests/test_multioutput.py\', \'lib/python3.6/site-packages/sklearn/tests/test_naive_bayes.py\', \'lib/python3.6/site-packages/sklearn/tests/test_pipeline.py\', \'lib/python3.6/site-packages/sklearn/tests/test_random_projection.py\', \'lib/python3.6/site-packages/sklearn/tree/__init__.py\', \'lib/python3.6/site-packages/sklearn/tree/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/__pycache__/export.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/_criterion.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/tree/_splitter.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/tree/_tree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/tree/_utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/tree/export.py\', \'lib/python3.6/site-packages/sklearn/tree/setup.py\', \'lib/python3.6/site-packages/sklearn/tree/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/tree/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/tests/__pycache__/test_export.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/tests/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/tree/tests/test_export.py\', \'lib/python3.6/site-packages/sklearn/tree/tests/test_tree.py\', \'lib/python3.6/site-packages/sklearn/tree/tree.py\', \'lib/python3.6/site-packages/sklearn/utils/__init__.py\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/_scipy_sparse_lsqr_backport.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/arpack.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/bench.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/class_weight.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/estimator_checks.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/extmath.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/fixes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/graph.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/linear_assignment_.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/metaestimators.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/mocking.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/multiclass.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/random.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/sparsefuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/stats.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/__pycache__/validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/_logistic_sigmoid.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/_random.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/_scipy_sparse_lsqr_backport.py\', \'lib/python3.6/site-packages/sklearn/utils/arpack.py\', \'lib/python3.6/site-packages/sklearn/utils/arrayfuncs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/bench.py\', \'lib/python3.6/site-packages/sklearn/utils/class_weight.py\', \'lib/python3.6/site-packages/sklearn/utils/deprecation.py\', \'lib/python3.6/site-packages/sklearn/utils/estimator_checks.py\', \'lib/python3.6/site-packages/sklearn/utils/extmath.py\', \'lib/python3.6/site-packages/sklearn/utils/fast_dict.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/fixes.py\', \'lib/python3.6/site-packages/sklearn/utils/graph.py\', \'lib/python3.6/site-packages/sklearn/utils/graph_shortest_path.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/lgamma.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/linear_assignment_.py\', \'lib/python3.6/site-packages/sklearn/utils/metaestimators.py\', \'lib/python3.6/site-packages/sklearn/utils/mocking.py\', \'lib/python3.6/site-packages/sklearn/utils/multiclass.py\', \'lib/python3.6/site-packages/sklearn/utils/murmurhash.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/optimize.py\', \'lib/python3.6/site-packages/sklearn/utils/random.py\', \'lib/python3.6/site-packages/sklearn/utils/seq_dataset.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/setup.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsefuncs.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsefuncs_fast.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/__init__.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/__pycache__/_graph_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/_graph_tools.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/_graph_validation.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/_traversal.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/setup.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/tests/__pycache__/test_traversal.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/sparsetools/tests/test_traversal.py\', \'lib/python3.6/site-packages/sklearn/utils/stats.py\', \'lib/python3.6/site-packages/sklearn/utils/testing.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/__init__.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_bench.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_class_weight.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_estimator_checks.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_extmath.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_fast_dict.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_fixes.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_graph.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_linear_assignment.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_metaestimators.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_multiclass.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_murmurhash.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_random.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_seq_dataset.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_shortest_path.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_sparsefuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_testing.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/__pycache__/test_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_bench.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_class_weight.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_estimator_checks.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_extmath.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_fast_dict.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_fixes.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_graph.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_linear_assignment.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_metaestimators.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_multiclass.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_murmurhash.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_optimize.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_random.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_seq_dataset.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_shortest_path.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_sparsefuncs.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_stats.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_testing.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_utils.py\', \'lib/python3.6/site-packages/sklearn/utils/tests/test_validation.py\', \'lib/python3.6/site-packages/sklearn/utils/validation.py\', \'lib/python3.6/site-packages/sklearn/utils/weight_vector.cpython-36m-x86_64-linux-gnu.so\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/scikit-learn-0.18.1-np111py36_1\', type=1))", "defaults::scipy-0.18.1-np111py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_1\', build_number=1, depends=(\'libgfortran 3.0.0\', \'mkl 2017.0.1\', \'numpy 1.11*\', \'python 3.6*\'), license=\'BSD\', md5=\'c23a2e5a83d2827aa9072864b6a6b429\', name=\'scipy\', platform=\'linux\', subdir=\'linux-64\', version=\'0.18.1\', fn=\'scipy-0.18.1-np111py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/scipy-0.18.1-np111py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/scipy-0.18.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/scipy-0.18.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/scipy-0.18.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/scipy-0.18.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/scipy/BENTO_BUILD.txt\', \'lib/python3.6/site-packages/scipy/HACKING.rst.txt\', \'lib/python3.6/site-packages/scipy/INSTALL.rst.txt\', \'lib/python3.6/site-packages/scipy/LICENSE.txt\', \'lib/python3.6/site-packages/scipy/THANKS.txt\', \'lib/python3.6/site-packages/scipy/__config__.py\', \'lib/python3.6/site-packages/scipy/__init__.py\', \'lib/python3.6/site-packages/scipy/__pycache__/__config__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_build_utils/__init__.py\', \'lib/python3.6/site-packages/scipy/_build_utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_build_utils/__pycache__/_fortran.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_build_utils/_fortran.py\', \'lib/python3.6/site-packages/scipy/_lib/__init__.py\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_gcutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_numpy_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_testutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_threadsafety.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_tmpdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_util.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/_gcutils.py\', \'lib/python3.6/site-packages/scipy/_lib/_numpy_compat.py\', \'lib/python3.6/site-packages/scipy/_lib/_testutils.py\', \'lib/python3.6/site-packages/scipy/_lib/_threadsafety.py\', \'lib/python3.6/site-packages/scipy/_lib/_tmpdirs.py\', \'lib/python3.6/site-packages/scipy/_lib/_util.py\', \'lib/python3.6/site-packages/scipy/_lib/_version.py\', \'lib/python3.6/site-packages/scipy/_lib/decorator.py\', \'lib/python3.6/site-packages/scipy/_lib/setup.py\', \'lib/python3.6/site-packages/scipy/_lib/six.py\', \'lib/python3.6/site-packages/scipy/_lib/tests/__pycache__/test__gcutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/tests/__pycache__/test__threadsafety.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/tests/__pycache__/test__util.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/tests/__pycache__/test__version.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/tests/__pycache__/test_tmpdirs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/_lib/tests/test__gcutils.py\', \'lib/python3.6/site-packages/scipy/_lib/tests/test__threadsafety.py\', \'lib/python3.6/site-packages/scipy/_lib/tests/test__util.py\', \'lib/python3.6/site-packages/scipy/_lib/tests/test__version.py\', \'lib/python3.6/site-packages/scipy/_lib/tests/test_tmpdirs.py\', \'lib/python3.6/site-packages/scipy/cluster/__init__.py\', \'lib/python3.6/site-packages/scipy/cluster/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/__pycache__/hierarchy.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/__pycache__/vq.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/_hierarchy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/cluster/_vq.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/cluster/hierarchy.py\', \'lib/python3.6/site-packages/scipy/cluster/setup.py\', \'lib/python3.6/site-packages/scipy/cluster/tests/__pycache__/hierarchy_test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/tests/__pycache__/test_hierarchy.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/tests/__pycache__/test_vq.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/cluster/tests/hierarchy_test_data.py\', \'lib/python3.6/site-packages/scipy/cluster/tests/test_hierarchy.py\', \'lib/python3.6/site-packages/scipy/cluster/tests/test_vq.py\', \'lib/python3.6/site-packages/scipy/cluster/vq.py\', \'lib/python3.6/site-packages/scipy/constants/__init__.py\', \'lib/python3.6/site-packages/scipy/constants/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/__pycache__/codata.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/codata.py\', \'lib/python3.6/site-packages/scipy/constants/constants.py\', \'lib/python3.6/site-packages/scipy/constants/setup.py\', \'lib/python3.6/site-packages/scipy/constants/tests/__pycache__/test_codata.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/tests/__pycache__/test_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/constants/tests/test_codata.py\', \'lib/python3.6/site-packages/scipy/constants/tests/test_constants.py\', \'lib/python3.6/site-packages/scipy/fftpack/__init__.py\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/fftpack_version.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/helper.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/pseudo_diffs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/realtransforms.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/_fftpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/fftpack/basic.py\', \'lib/python3.6/site-packages/scipy/fftpack/convolve.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/fftpack/fftpack_version.py\', \'lib/python3.6/site-packages/scipy/fftpack/helper.py\', \'lib/python3.6/site-packages/scipy/fftpack/pseudo_diffs.py\', \'lib/python3.6/site-packages/scipy/fftpack/realtransforms.py\', \'lib/python3.6/site-packages/scipy/fftpack/setup.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/Makefile\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/gen_fftw_ref.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/gendata.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/test_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/test_import.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/test_pseudo_diffs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/__pycache__/test_real_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/fftpack/tests/fftw_dct.c\', \'lib/python3.6/site-packages/scipy/fftpack/tests/fftw_double_ref.npz\', \'lib/python3.6/site-packages/scipy/fftpack/tests/fftw_single_ref.npz\', \'lib/python3.6/site-packages/scipy/fftpack/tests/gen_fftw_ref.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/gendata.m\', \'lib/python3.6/site-packages/scipy/fftpack/tests/gendata.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test.npz\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test_basic.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test_helper.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test_import.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test_pseudo_diffs.py\', \'lib/python3.6/site-packages/scipy/fftpack/tests/test_real_transforms.py\', \'lib/python3.6/site-packages/scipy/integrate/__init__.py\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/_bvp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/_ode.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/odepack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/quadpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/quadrature.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/_bvp.py\', \'lib/python3.6/site-packages/scipy/integrate/_dop.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/_ode.py\', \'lib/python3.6/site-packages/scipy/integrate/_odepack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/_quadpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/_test_multivariate.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/_test_odeint_banded.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/lsoda.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/integrate/odepack.py\', \'lib/python3.6/site-packages/scipy/integrate/quadpack.py\', \'lib/python3.6/site-packages/scipy/integrate/quadrature.py\', \'lib/python3.6/site-packages/scipy/integrate/setup.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_banded_ode_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_bvp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_integrate.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_odeint_jac.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_quadpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/__pycache__/test_quadrature.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/integrate/tests/_test_multivariate.c\', \'lib/python3.6/site-packages/scipy/integrate/tests/banded5x5.f\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_banded_ode_solvers.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_bvp.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_integrate.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_odeint_jac.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_quadpack.py\', \'lib/python3.6/site-packages/scipy/integrate/tests/test_quadrature.py\', \'lib/python3.6/site-packages/scipy/integrate/vode.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/__init__.py\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/_cubic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/fitpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/fitpack2.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/interpnd_info.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/interpolate.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/interpolate_wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/ndgriddata.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/polyint.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/rbf.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/_cubic.py\', \'lib/python3.6/site-packages/scipy/interpolate/_fitpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/_interpolate.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/_ppoly.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/dfitpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/fitpack.py\', \'lib/python3.6/site-packages/scipy/interpolate/fitpack2.py\', \'lib/python3.6/site-packages/scipy/interpolate/interpnd.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/interpolate/interpnd_info.py\', \'lib/python3.6/site-packages/scipy/interpolate/interpolate.py\', \'lib/python3.6/site-packages/scipy/interpolate/interpolate_wrapper.py\', \'lib/python3.6/site-packages/scipy/interpolate/ndgriddata.py\', \'lib/python3.6/site-packages/scipy/interpolate/polyint.py\', \'lib/python3.6/site-packages/scipy/interpolate/rbf.py\', \'lib/python3.6/site-packages/scipy/interpolate/setup.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_fitpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_fitpack2.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_gil.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_interpnd.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_interpolate.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_interpolate_wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_ndgriddata.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_polyint.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_rbf.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/interpolate/tests/data/bug-1310.npz\', \'lib/python3.6/site-packages/scipy/interpolate/tests/data/estimate_gradients_hang.npy\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_fitpack.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_fitpack2.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_gil.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_interpnd.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_interpolate.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_interpolate_wrapper.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_ndgriddata.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_polyint.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_rbf.py\', \'lib/python3.6/site-packages/scipy/interpolate/tests/test_regression.py\', \'lib/python3.6/site-packages/scipy/io/__init__.py\', \'lib/python3.6/site-packages/scipy/io/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/_fortran.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/idl.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/mmio.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/netcdf.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/__pycache__/wavfile.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/_fortran.py\', \'lib/python3.6/site-packages/scipy/io/arff/__init__.py\', \'lib/python3.6/site-packages/scipy/io/arff/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/arff/__pycache__/arffread.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/arff/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/arff/arffread.py\', \'lib/python3.6/site-packages/scipy/io/arff/setup.py\', \'lib/python3.6/site-packages/scipy/io/arff/tests/__pycache__/test_arffread.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/iris.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/missing.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/nodata.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test1.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test2.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test3.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test4.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test5.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test6.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test7.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/data/test8.arff\', \'lib/python3.6/site-packages/scipy/io/arff/tests/test_arffread.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/__init__.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/__pycache__/_fortran_format_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/__pycache__/hb.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/_fortran_format_parser.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/hb.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/setup.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/tests/__pycache__/test_fortran_format.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/tests/__pycache__/test_hb.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/tests/test_fortran_format.py\', \'lib/python3.6/site-packages/scipy/io/harwell_boeing/tests/test_hb.py\', \'lib/python3.6/site-packages/scipy/io/idl.py\', \'lib/python3.6/site-packages/scipy/io/matlab/__init__.py\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/byteordercodes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/mio.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/mio4.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/mio5.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/mio5_params.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/miobase.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/byteordercodes.py\', \'lib/python3.6/site-packages/scipy/io/matlab/mio.py\', \'lib/python3.6/site-packages/scipy/io/matlab/mio4.py\', \'lib/python3.6/site-packages/scipy/io/matlab/mio5.py\', \'lib/python3.6/site-packages/scipy/io/matlab/mio5_params.py\', \'lib/python3.6/site-packages/scipy/io/matlab/mio5_utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/io/matlab/mio_utils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/io/matlab/miobase.py\', \'lib/python3.6/site-packages/scipy/io/matlab/setup.py\', \'lib/python3.6/site-packages/scipy/io/matlab/streams.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_byteordercodes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_mio.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_mio5_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_mio_funcs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_mio_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_miobase.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_pathological.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/__pycache__/test_streams.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/afunc.m\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/bad_miuint32.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/bad_miutf8_array_name.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/big_endian.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/broken_utf8.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/corrupted_zlib_checksum.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/corrupted_zlib_data.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/japanese_utf8.txt\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/little_endian.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/logical_sparse.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/malformed1.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/miuint32_for_miint32.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/miutf8_array_name.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/nasty_duplicate_fieldnames.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/one_by_zero_char.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/parabola.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/single_empty_string.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/some_functions.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/sqr.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test3dmatrix_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test3dmatrix_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test3dmatrix_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test3dmatrix_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test_empty_struct.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test_mat4_le_floats.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/test_skip_variable.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testbool_8_WIN64.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcell_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcell_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcell_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcell_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcellnest_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcellnest_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcellnest_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcellnest_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcomplex_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcomplex_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcomplex_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcomplex_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testcomplex_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testdouble_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testdouble_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testdouble_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testdouble_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testdouble_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testemptycell_5.3_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testemptycell_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testemptycell_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testemptycell_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testfunc_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testhdf5_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmatrix_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmatrix_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmatrix_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmatrix_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmatrix_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testminus_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testminus_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testminus_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testminus_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testminus_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmulti_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmulti_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testmulti_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testobject_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testobject_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testobject_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testobject_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testonechar_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testonechar_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testonechar_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testonechar_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testonechar_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testscalarcell_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparse_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparse_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparse_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparse_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparse_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsecomplex_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsecomplex_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsecomplex_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsecomplex_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsecomplex_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testsparsefloat_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststring_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststring_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststring_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststring_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststring_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststringarray_4.2c_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststringarray_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststringarray_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststringarray_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststringarray_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststruct_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststruct_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststruct_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststruct_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructarr_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructarr_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructarr_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructarr_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructnest_6.1_SOL2.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructnest_6.5.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructnest_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/teststructnest_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testunicode_7.1_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testunicode_7.4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/data/testvec_4_GLNX86.mat\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/gen_mat4files.m\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/gen_mat5files.m\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/save_matfile.m\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_byteordercodes.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_mio.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_mio5_utils.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_mio_funcs.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_mio_utils.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_miobase.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_pathological.py\', \'lib/python3.6/site-packages/scipy/io/matlab/tests/test_streams.py\', \'lib/python3.6/site-packages/scipy/io/mmio.py\', \'lib/python3.6/site-packages/scipy/io/netcdf.py\', \'lib/python3.6/site-packages/scipy/io/setup.py\', \'lib/python3.6/site-packages/scipy/io/tests/__pycache__/test_fortran.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/tests/__pycache__/test_idl.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/tests/__pycache__/test_mmio.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/tests/__pycache__/test_netcdf.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/tests/__pycache__/test_wavfile.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_1d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_2d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_4d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_5d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_6d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_7d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_8d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_1d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_2d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_4d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_5d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_6d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_7d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/array_float32_pointer_8d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/example_1.nc\', \'lib/python3.6/site-packages/scipy/io/tests/data/example_2.nc\', \'lib/python3.6/site-packages/scipy/io/tests/data/example_3_maskedvals.nc\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-mixed.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-10x1x11.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-1x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-22x10x15.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-5x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-5x3x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-sf8-7x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-10x1x11.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-1x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-22x10x15.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-5x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-5x3x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/fortran-si4-7x1x1.dat\', \'lib/python3.6/site-packages/scipy/io/tests/data/invalid_pointer.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/null_pointer.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_byte.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_byte_descr.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_complex32.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_complex64.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_float32.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_float64.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_heap_pointer.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_int16.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_int32.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_int64.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_string.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_uint16.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_uint32.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/scalar_uint64.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_arrays.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_arrays_byte_idl80.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_arrays_replicated.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_arrays_replicated_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_inherit.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointer_arrays.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointer_arrays_replicated.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointer_arrays_replicated_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointers.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointers_replicated.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_pointers_replicated_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_scalars.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_scalars_replicated.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/struct_scalars_replicated_3d.sav\', \'lib/python3.6/site-packages/scipy/io/tests/data/test-44100Hz-2ch-32bit-float-be.wav\', \'lib/python3.6/site-packages/scipy/io/tests/data/test-44100Hz-2ch-32bit-float-le.wav\', \'lib/python3.6/site-packages/scipy/io/tests/data/test-44100Hz-le-1ch-4bytes.wav\', \'lib/python3.6/site-packages/scipy/io/tests/data/test-48000Hz-2ch-64bit-float-le-wavex.wav\', \'lib/python3.6/site-packages/scipy/io/tests/data/test-8000Hz-le-2ch-1byteu.wav\', \'lib/python3.6/site-packages/scipy/io/tests/data/various_compressed.sav\', \'lib/python3.6/site-packages/scipy/io/tests/test_fortran.py\', \'lib/python3.6/site-packages/scipy/io/tests/test_idl.py\', \'lib/python3.6/site-packages/scipy/io/tests/test_mmio.py\', \'lib/python3.6/site-packages/scipy/io/tests/test_netcdf.py\', \'lib/python3.6/site-packages/scipy/io/tests/test_wavfile.py\', \'lib/python3.6/site-packages/scipy/io/wavfile.py\', \'lib/python3.6/site-packages/scipy/linalg.pxd\', \'lib/python3.6/site-packages/scipy/linalg/__init__.py\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_cython_signature_generator.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_cython_wrapper_generators.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_decomp_polar.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_decomp_qz.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_expm_frechet.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_interpolative_backend.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_matfuncs_inv_ssq.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_matfuncs_sqrtm.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_procrustes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/_testutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/blas.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/calc_lwork.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp_cholesky.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp_lu.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp_qr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp_schur.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/decomp_svd.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/flinalg.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/interpolative.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/lapack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/linalg_version.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/matfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/__pycache__/special_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/_calc_lwork.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_cython_signature_generator.py\', \'lib/python3.6/site-packages/scipy/linalg/_cython_wrapper_generators.py\', \'lib/python3.6/site-packages/scipy/linalg/_decomp_polar.py\', \'lib/python3.6/site-packages/scipy/linalg/_decomp_qz.py\', \'lib/python3.6/site-packages/scipy/linalg/_decomp_update.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_expm_frechet.py\', \'lib/python3.6/site-packages/scipy/linalg/_fblas.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_flapack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_flinalg.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_interpolative.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_interpolative_backend.py\', \'lib/python3.6/site-packages/scipy/linalg/_matfuncs_inv_ssq.py\', \'lib/python3.6/site-packages/scipy/linalg/_matfuncs_sqrtm.py\', \'lib/python3.6/site-packages/scipy/linalg/_procrustes.py\', \'lib/python3.6/site-packages/scipy/linalg/_solve_toeplitz.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/_solvers.py\', \'lib/python3.6/site-packages/scipy/linalg/_testutils.py\', \'lib/python3.6/site-packages/scipy/linalg/basic.py\', \'lib/python3.6/site-packages/scipy/linalg/blas.py\', \'lib/python3.6/site-packages/scipy/linalg/calc_lwork.py\', \'lib/python3.6/site-packages/scipy/linalg/cython_blas.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/cython_blas.pxd\', \'lib/python3.6/site-packages/scipy/linalg/cython_lapack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/linalg/cython_lapack.pxd\', \'lib/python3.6/site-packages/scipy/linalg/decomp.py\', \'lib/python3.6/site-packages/scipy/linalg/decomp_cholesky.py\', \'lib/python3.6/site-packages/scipy/linalg/decomp_lu.py\', \'lib/python3.6/site-packages/scipy/linalg/decomp_qr.py\', \'lib/python3.6/site-packages/scipy/linalg/decomp_schur.py\', \'lib/python3.6/site-packages/scipy/linalg/decomp_svd.py\', \'lib/python3.6/site-packages/scipy/linalg/flinalg.py\', \'lib/python3.6/site-packages/scipy/linalg/interpolative.py\', \'lib/python3.6/site-packages/scipy/linalg/lapack.py\', \'lib/python3.6/site-packages/scipy/linalg/linalg_version.py\', \'lib/python3.6/site-packages/scipy/linalg/matfuncs.py\', \'lib/python3.6/site-packages/scipy/linalg/misc.py\', \'lib/python3.6/site-packages/scipy/linalg/setup.py\', \'lib/python3.6/site-packages/scipy/linalg/special_matrices.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_blas.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_build.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_cython_blas.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_cython_lapack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_decomp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_decomp_cholesky.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_decomp_polar.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_decomp_update.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_fblas.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_interpolative.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_lapack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_matfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_procrustes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_solve_toeplitz.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/__pycache__/test_special_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_basic.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_blas.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_build.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_cython_blas.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_cython_lapack.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_decomp.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_decomp_cholesky.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_decomp_polar.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_decomp_update.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_fblas.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_interpolative.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_lapack.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_matfuncs.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_procrustes.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_solve_toeplitz.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_solvers.py\', \'lib/python3.6/site-packages/scipy/linalg/tests/test_special_matrices.py\', \'lib/python3.6/site-packages/scipy/misc/__init__.py\', \'lib/python3.6/site-packages/scipy/misc/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/__pycache__/doccer.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/__pycache__/pilutil.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/ascent.dat\', \'lib/python3.6/site-packages/scipy/misc/common.py\', \'lib/python3.6/site-packages/scipy/misc/doccer.py\', \'lib/python3.6/site-packages/scipy/misc/face.dat\', \'lib/python3.6/site-packages/scipy/misc/pilutil.py\', \'lib/python3.6/site-packages/scipy/misc/setup.py\', \'lib/python3.6/site-packages/scipy/misc/tests/__pycache__/test_common.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/tests/__pycache__/test_doccer.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/tests/__pycache__/test_pilutil.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x3x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x3x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x4x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x4x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x5x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/3x5x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x3x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x3x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x4x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x4x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x5x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/4x5x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x3x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x3x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x4x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x4x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x5x3.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/5x5x4.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/blocks2bit.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/box1.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/foo3x5x4indexed.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/icon.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/icon_mono.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/icon_mono_flat.png\', \'lib/python3.6/site-packages/scipy/misc/tests/data/pattern4bit.png\', \'lib/python3.6/site-packages/scipy/misc/tests/test_common.py\', \'lib/python3.6/site-packages/scipy/misc/tests/test_doccer.py\', \'lib/python3.6/site-packages/scipy/misc/tests/test_pilutil.py\', \'lib/python3.6/site-packages/scipy/ndimage/__init__.py\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/_ni_support.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/filters.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/fourier.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/interpolation.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/measurements.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/morphology.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/_nd_image.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/ndimage/_ni_label.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/ndimage/_ni_support.py\', \'lib/python3.6/site-packages/scipy/ndimage/filters.py\', \'lib/python3.6/site-packages/scipy/ndimage/fourier.py\', \'lib/python3.6/site-packages/scipy/ndimage/interpolation.py\', \'lib/python3.6/site-packages/scipy/ndimage/io.py\', \'lib/python3.6/site-packages/scipy/ndimage/measurements.py\', \'lib/python3.6/site-packages/scipy/ndimage/morphology.py\', \'lib/python3.6/site-packages/scipy/ndimage/setup.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_datatypes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_filters.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_io.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_measurements.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_ndimage.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/ndimage/tests/data/README.txt\', \'lib/python3.6/site-packages/scipy/ndimage/tests/data/label_inputs.txt\', \'lib/python3.6/site-packages/scipy/ndimage/tests/data/label_results.txt\', \'lib/python3.6/site-packages/scipy/ndimage/tests/data/label_strels.txt\', \'lib/python3.6/site-packages/scipy/ndimage/tests/dots.png\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_datatypes.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_filters.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_io.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_measurements.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_ndimage.py\', \'lib/python3.6/site-packages/scipy/ndimage/tests/test_regression.py\', \'lib/python3.6/site-packages/scipy/odr/__init__.py\', \'lib/python3.6/site-packages/scipy/odr/__odrpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/odr/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/__pycache__/add_newdocs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/__pycache__/models.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/__pycache__/odrpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/add_newdocs.py\', \'lib/python3.6/site-packages/scipy/odr/models.py\', \'lib/python3.6/site-packages/scipy/odr/odrpack.py\', \'lib/python3.6/site-packages/scipy/odr/setup.py\', \'lib/python3.6/site-packages/scipy/odr/tests/__pycache__/test_odr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/odr/tests/test_odr.py\', \'lib/python3.6/site-packages/scipy/optimize/__init__.py\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_basinhopping.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_differentialevolution.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_hungarian.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_linprog.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_minimize.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_numdiff.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_root.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_trustregion.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_trustregion_dogleg.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_trustregion_ncg.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/_tstutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/cobyla.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/lbfgsb.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/linesearch.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/minpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/nnls.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/nonlin.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/slsqp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/tnc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/__pycache__/zeros.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_basinhopping.py\', \'lib/python3.6/site-packages/scipy/optimize/_cobyla.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_differentialevolution.py\', \'lib/python3.6/site-packages/scipy/optimize/_group_columns.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_hungarian.py\', \'lib/python3.6/site-packages/scipy/optimize/_lbfgsb.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_linprog.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__init__.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/bvls.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/dogbox.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/least_squares.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/lsq_linear.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/trf.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/__pycache__/trf_linear.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/bvls.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/common.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/dogbox.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/givens_elimination.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/least_squares.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/lsq_linear.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/setup.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/trf.py\', \'lib/python3.6/site-packages/scipy/optimize/_lsq/trf_linear.py\', \'lib/python3.6/site-packages/scipy/optimize/_minimize.py\', \'lib/python3.6/site-packages/scipy/optimize/_minpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_nnls.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_numdiff.py\', \'lib/python3.6/site-packages/scipy/optimize/_root.py\', \'lib/python3.6/site-packages/scipy/optimize/_slsqp.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/_spectral.py\', \'lib/python3.6/site-packages/scipy/optimize/_trustregion.py\', \'lib/python3.6/site-packages/scipy/optimize/_trustregion_dogleg.py\', \'lib/python3.6/site-packages/scipy/optimize/_trustregion_ncg.py\', \'lib/python3.6/site-packages/scipy/optimize/_tstutils.py\', \'lib/python3.6/site-packages/scipy/optimize/_zeros.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/cobyla.py\', \'lib/python3.6/site-packages/scipy/optimize/lbfgsb.py\', \'lib/python3.6/site-packages/scipy/optimize/linesearch.py\', \'lib/python3.6/site-packages/scipy/optimize/minpack.py\', \'lib/python3.6/site-packages/scipy/optimize/minpack2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/moduleTNC.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/optimize/nnls.py\', \'lib/python3.6/site-packages/scipy/optimize/nonlin.py\', \'lib/python3.6/site-packages/scipy/optimize/optimize.py\', \'lib/python3.6/site-packages/scipy/optimize/setup.py\', \'lib/python3.6/site-packages/scipy/optimize/slsqp.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test__basinhopping.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test__differential_evolution.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test__numdiff.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test__root.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test__spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_cobyla.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_hungarian.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_lbfgsb_hessinv.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_least_squares.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_linesearch.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_linprog.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_lsq_common.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_lsq_linear.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_minpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_nnls.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_nonlin.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_slsqp.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_tnc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_trustregion.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/__pycache__/test_zeros.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/optimize/tests/test__basinhopping.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test__differential_evolution.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test__numdiff.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test__root.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test__spectral.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_cobyla.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_hungarian.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_lbfgsb_hessinv.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_least_squares.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_linesearch.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_linprog.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_lsq_common.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_lsq_linear.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_minpack.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_nnls.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_nonlin.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_optimize.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_regression.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_slsqp.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_tnc.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_trustregion.py\', \'lib/python3.6/site-packages/scipy/optimize/tests/test_zeros.py\', \'lib/python3.6/site-packages/scipy/optimize/tnc.py\', \'lib/python3.6/site-packages/scipy/optimize/zeros.py\', \'lib/python3.6/site-packages/scipy/setup.py\', \'lib/python3.6/site-packages/scipy/signal/__init__.py\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/_arraytools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/_max_len_seq.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/_peak_finding.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/_savitzky_golay.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/_upfirdn.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/bsplines.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/filter_design.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/fir_filter_design.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/lti_conversion.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/ltisys.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/signaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/waveforms.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/wavelets.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/_arraytools.py\', \'lib/python3.6/site-packages/scipy/signal/_max_len_seq.py\', \'lib/python3.6/site-packages/scipy/signal/_max_len_seq_inner.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/signal/_peak_finding.py\', \'lib/python3.6/site-packages/scipy/signal/_savitzky_golay.py\', \'lib/python3.6/site-packages/scipy/signal/_spectral.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/signal/_upfirdn.py\', \'lib/python3.6/site-packages/scipy/signal/_upfirdn_apply.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/signal/bsplines.py\', \'lib/python3.6/site-packages/scipy/signal/filter_design.py\', \'lib/python3.6/site-packages/scipy/signal/fir_filter_design.py\', \'lib/python3.6/site-packages/scipy/signal/lti_conversion.py\', \'lib/python3.6/site-packages/scipy/signal/ltisys.py\', \'lib/python3.6/site-packages/scipy/signal/setup.py\', \'lib/python3.6/site-packages/scipy/signal/signaltools.py\', \'lib/python3.6/site-packages/scipy/signal/sigtools.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/signal/spectral.py\', \'lib/python3.6/site-packages/scipy/signal/spline.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_array_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_cont2discrete.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_dltisys.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_filter_design.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_fir_filter_design.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_ltisys.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_max_len_seq.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_peak_finding.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_savitzky_golay.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_signaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_spectral.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_upfirdn.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_waveforms.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_wavelets.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/__pycache__/test_windows.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/signal/tests/test_array_tools.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_cont2discrete.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_dltisys.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_filter_design.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_fir_filter_design.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_ltisys.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_max_len_seq.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_peak_finding.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_savitzky_golay.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_signaltools.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_spectral.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_upfirdn.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_waveforms.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_wavelets.py\', \'lib/python3.6/site-packages/scipy/signal/tests/test_windows.py\', \'lib/python3.6/site-packages/scipy/signal/waveforms.py\', \'lib/python3.6/site-packages/scipy/signal/wavelets.py\', \'lib/python3.6/site-packages/scipy/signal/windows.py\', \'lib/python3.6/site-packages/scipy/sparse/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/bsr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/compressed.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/construct.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/coo.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/csc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/csr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/dia.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/dok.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/extract.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/generate_sparsetools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/lil.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/sparsetools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/spfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/__pycache__/sputils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/_csparsetools.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/_sparsetools.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/base.py\', \'lib/python3.6/site-packages/scipy/sparse/bsr.py\', \'lib/python3.6/site-packages/scipy/sparse/compressed.py\', \'lib/python3.6/site-packages/scipy/sparse/construct.py\', \'lib/python3.6/site-packages/scipy/sparse/coo.py\', \'lib/python3.6/site-packages/scipy/sparse/csc.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__pycache__/_components.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__pycache__/_laplacian.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__pycache__/_validation.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_components.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_laplacian.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_min_spanning_tree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_reordering.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_shortest_path.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_tools.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_traversal.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/_validation.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_connected_components.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_conversions.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_graph_components.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_graph_laplacian.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_reordering.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_shortest_path.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_spanning_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/__pycache__/test_traversal.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_connected_components.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_conversions.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_graph_components.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_graph_laplacian.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_reordering.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_shortest_path.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_spanning_tree.py\', \'lib/python3.6/site-packages/scipy/sparse/csgraph/tests/test_traversal.py\', \'lib/python3.6/site-packages/scipy/sparse/csr.py\', \'lib/python3.6/site-packages/scipy/sparse/data.py\', \'lib/python3.6/site-packages/scipy/sparse/dia.py\', \'lib/python3.6/site-packages/scipy/sparse/dok.py\', \'lib/python3.6/site-packages/scipy/sparse/extract.py\', \'lib/python3.6/site-packages/scipy/sparse/generate_sparsetools.py\', \'lib/python3.6/site-packages/scipy/sparse/lil.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/_expm_multiply.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/_norm.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/_onenormest.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/matfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/_expm_multiply.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/_norm.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/_onenormest.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/__pycache__/_add_newdocs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/__pycache__/linsolve.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_add_newdocs.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/_superlu.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/linsolve.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/tests/__pycache__/test_linsolve.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/dsolve/tests/test_linsolve.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/__pycache__/arpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/_arpack.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/arpack.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/tests/__pycache__/test_arpack.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/__pycache__/lobpcg.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/lobpcg.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/tests/__pycache__/test_lobpcg.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/lobpcg/tests/test_lobpcg.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/eigen/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/interface.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__init__.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/iterative.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/lgmres.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/lsmr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/lsqr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/minres.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/_iterative.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/iterative.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/lgmres.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/lsmr.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/lsqr.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/minres.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/demo_lgmres.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/test_iterative.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/test_lgmres.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/test_lsmr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/test_lsqr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/demo_lgmres.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/test_iterative.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/test_lgmres.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/test_lsmr.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/test_lsqr.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/tests/test_utils.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/isolve/utils.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/matfuncs.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/__pycache__/test_expm_multiply.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/__pycache__/test_interface.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/__pycache__/test_matfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/__pycache__/test_norm.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/__pycache__/test_onenormest.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/test_expm_multiply.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/test_interface.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/test_matfuncs.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/test_norm.py\', \'lib/python3.6/site-packages/scipy/sparse/linalg/tests/test_onenormest.py\', \'lib/python3.6/site-packages/scipy/sparse/setup.py\', \'lib/python3.6/site-packages/scipy/sparse/sparsetools.py\', \'lib/python3.6/site-packages/scipy/sparse/spfuncs.py\', \'lib/python3.6/site-packages/scipy/sparse/sputils.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_construct.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_csc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_csr.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_extract.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_sparsetools.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_spfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/__pycache__/test_sputils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_base.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_construct.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_csc.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_csr.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_extract.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_sparsetools.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_spfuncs.py\', \'lib/python3.6/site-packages/scipy/sparse/tests/test_sputils.py\', \'lib/python3.6/site-packages/scipy/spatial/__init__.py\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/_plotutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/_procrustes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/_spherical_voronoi.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/distance.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/kdtree.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/_distance_wrap.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/spatial/_plotutils.py\', \'lib/python3.6/site-packages/scipy/spatial/_procrustes.py\', \'lib/python3.6/site-packages/scipy/spatial/_spherical_voronoi.py\', \'lib/python3.6/site-packages/scipy/spatial/ckdtree.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/spatial/distance.py\', \'lib/python3.6/site-packages/scipy/spatial/kdtree.py\', \'lib/python3.6/site-packages/scipy/spatial/qhull.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/spatial/setup.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test__plotutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test__procrustes.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test_distance.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test_kdtree.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test_qhull.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/__pycache__/test_spherical_voronoi.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/cdist-X1.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/cdist-X2.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/degenerate_pointset.npz\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-boolean-inp.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-chebychev-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-chebychev-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-cityblock-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-cityblock-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-correlation-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-correlation-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-cosine-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-cosine-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-double-inp.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-euclidean-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-euclidean-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-hamming-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-jaccard-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-minkowski-3.2-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-minkowski-3.2-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-minkowski-5.8-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-seuclidean-ml-iris.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-seuclidean-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/pdist-spearman-ml.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/data/random-bool-data.txt\', \'lib/python3.6/site-packages/scipy/spatial/tests/test__plotutils.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/test__procrustes.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/test_distance.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/test_kdtree.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/test_qhull.py\', \'lib/python3.6/site-packages/scipy/spatial/tests/test_spherical_voronoi.py\', \'lib/python3.6/site-packages/scipy/special/__init__.py\', \'lib/python3.6/site-packages/scipy/special/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/_ellip_harm.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/_mptestutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/_spherical_bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/_testutils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/add_newdocs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/generate_ufuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/lambertw.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/orthogonal.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/__pycache__/spfun_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_comb.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/special/_ellip_harm.py\', \'lib/python3.6/site-packages/scipy/special/_ellip_harm_2.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/special/_mptestutils.py\', \'lib/python3.6/site-packages/scipy/special/_precompute/__init__.py\', \'lib/python3.6/site-packages/scipy/special/_precompute/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_precompute/__pycache__/gammainc_asy.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_precompute/__pycache__/gammainc_data.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_precompute/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_precompute/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/_precompute/gammainc_asy.py\', \'lib/python3.6/site-packages/scipy/special/_precompute/gammainc_data.py\', \'lib/python3.6/site-packages/scipy/special/_precompute/setup.py\', \'lib/python3.6/site-packages/scipy/special/_precompute/utils.py\', \'lib/python3.6/site-packages/scipy/special/_spherical_bessel.py\', \'lib/python3.6/site-packages/scipy/special/_testutils.py\', \'lib/python3.6/site-packages/scipy/special/_ufuncs.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/special/_ufuncs_cxx.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/special/add_newdocs.py\', \'lib/python3.6/site-packages/scipy/special/basic.py\', \'lib/python3.6/site-packages/scipy/special/generate_ufuncs.py\', \'lib/python3.6/site-packages/scipy/special/lambertw.py\', \'lib/python3.6/site-packages/scipy/special/orthogonal.py\', \'lib/python3.6/site-packages/scipy/special/setup.py\', \'lib/python3.6/site-packages/scipy/special/specfun.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/special/spfun_stats.py\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_boxcox.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_digamma.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_ellip_harm.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_gammainc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_lambertw.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_loggamma.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_logit.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_mpmath.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_orthogonal.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_orthogonal_eval.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_precompute_gammainc.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_precompute_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_spence.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_spfun_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/__pycache__/test_spherical_bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/special/tests/data/README\', \'lib/python3.6/site-packages/scipy/special/tests/data/boost.npz\', \'lib/python3.6/site-packages/scipy/special/tests/data/gsl.npz\', \'lib/python3.6/site-packages/scipy/special/tests/data/local.npz\', \'lib/python3.6/site-packages/scipy/special/tests/test_basic.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_boxcox.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_data.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_digamma.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_ellip_harm.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_gammainc.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_lambertw.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_loggamma.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_logit.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_mpmath.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_orthogonal.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_orthogonal_eval.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_precompute_gammainc.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_precompute_utils.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_spence.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_spfun_stats.py\', \'lib/python3.6/site-packages/scipy/special/tests/test_spherical_bessel.py\', \'lib/python3.6/site-packages/scipy/stats/__init__.py\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_binned_statistic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_continuous_distns.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_discrete_distns.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_distn_infrastructure.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_distr_params.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_multivariate.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_stats_mstats_common.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/_tukeylambda_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/contingency.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/distributions.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/kde.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/morestats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/mstats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/mstats_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/mstats_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/__pycache__/vonmises.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/_binned_statistic.py\', \'lib/python3.6/site-packages/scipy/stats/_constants.py\', \'lib/python3.6/site-packages/scipy/stats/_continuous_distns.py\', \'lib/python3.6/site-packages/scipy/stats/_discrete_distns.py\', \'lib/python3.6/site-packages/scipy/stats/_distn_infrastructure.py\', \'lib/python3.6/site-packages/scipy/stats/_distr_params.py\', \'lib/python3.6/site-packages/scipy/stats/_multivariate.py\', \'lib/python3.6/site-packages/scipy/stats/_stats.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/stats/_stats_mstats_common.py\', \'lib/python3.6/site-packages/scipy/stats/_tukeylambda_stats.py\', \'lib/python3.6/site-packages/scipy/stats/contingency.py\', \'lib/python3.6/site-packages/scipy/stats/distributions.py\', \'lib/python3.6/site-packages/scipy/stats/kde.py\', \'lib/python3.6/site-packages/scipy/stats/morestats.py\', \'lib/python3.6/site-packages/scipy/stats/mstats.py\', \'lib/python3.6/site-packages/scipy/stats/mstats_basic.py\', \'lib/python3.6/site-packages/scipy/stats/mstats_extras.py\', \'lib/python3.6/site-packages/scipy/stats/mvn.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/stats/setup.py\', \'lib/python3.6/site-packages/scipy/stats/statlib.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/scipy/stats/stats.py\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/common_tests.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_binned_statistic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_contingency.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_continuous_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_discrete_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_distributions.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_fit.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_kdeoth.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_morestats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_mstats_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_mstats_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_multivariate.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_rank.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/__pycache__/test_tukeylambda_stats.cpython-36.pyc\', \'lib/python3.6/site-packages/scipy/stats/tests/common_tests.py\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/AtmWtAg.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SiRstv.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs01.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs02.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs03.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs04.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs05.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs06.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs07.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs08.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_anova/SmLs09.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/data/nist_linregress/Norris.dat\', \'lib/python3.6/site-packages/scipy/stats/tests/test_binned_statistic.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_contingency.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_continuous_basic.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_discrete_basic.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_distributions.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_fit.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_kdeoth.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_morestats.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_mstats_basic.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_mstats_extras.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_multivariate.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_rank.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_stats.py\', \'lib/python3.6/site-packages/scipy/stats/tests/test_tukeylambda_stats.py\', \'lib/python3.6/site-packages/scipy/stats/vonmises.py\', \'lib/python3.6/site-packages/scipy/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/scipy-0.18.1-np111py36_1\', type=1))", "defaults::seaborn-0.7.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'matplotlib\', \'numpy\', \'pandas\', \'python 3.6*\', \'scipy\'), license=\'BSD\', md5=\'f213b166952b8bec02dfcde44d83f56b\', name=\'seaborn\', platform=\'linux\', subdir=\'linux-64\', version=\'0.7.1\', fn=\'seaborn-0.7.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/seaborn-0.7.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/seaborn-0.7.1-py3.6.egg-info\', \'lib/python3.6/site-packages/seaborn/__init__.py\', \'lib/python3.6/site-packages/seaborn/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/algorithms.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/apionly.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/axisgrid.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/crayons.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/distributions.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/linearmodels.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/miscplot.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/palettes.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/rcmod.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/timeseries.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/widgets.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/__pycache__/xkcd_rgb.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/algorithms.py\', \'lib/python3.6/site-packages/seaborn/apionly.py\', \'lib/python3.6/site-packages/seaborn/axisgrid.py\', \'lib/python3.6/site-packages/seaborn/categorical.py\', \'lib/python3.6/site-packages/seaborn/crayons.py\', \'lib/python3.6/site-packages/seaborn/distributions.py\', \'lib/python3.6/site-packages/seaborn/external/__init__.py\', \'lib/python3.6/site-packages/seaborn/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/external/__pycache__/husl.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/external/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/external/husl.py\', \'lib/python3.6/site-packages/seaborn/external/six.py\', \'lib/python3.6/site-packages/seaborn/linearmodels.py\', \'lib/python3.6/site-packages/seaborn/matrix.py\', \'lib/python3.6/site-packages/seaborn/miscplot.py\', \'lib/python3.6/site-packages/seaborn/palettes.py\', \'lib/python3.6/site-packages/seaborn/rcmod.py\', \'lib/python3.6/site-packages/seaborn/tests/__init__.py\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_algorithms.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_axisgrid.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_categorical.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_distributions.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_linearmodels.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_miscplot.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_palettes.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_rcmod.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/seaborn/tests/test_algorithms.py\', \'lib/python3.6/site-packages/seaborn/tests/test_axisgrid.py\', \'lib/python3.6/site-packages/seaborn/tests/test_categorical.py\', \'lib/python3.6/site-packages/seaborn/tests/test_distributions.py\', \'lib/python3.6/site-packages/seaborn/tests/test_linearmodels.py\', \'lib/python3.6/site-packages/seaborn/tests/test_matrix.py\', \'lib/python3.6/site-packages/seaborn/tests/test_miscplot.py\', \'lib/python3.6/site-packages/seaborn/tests/test_palettes.py\', \'lib/python3.6/site-packages/seaborn/tests/test_rcmod.py\', \'lib/python3.6/site-packages/seaborn/tests/test_utils.py\', \'lib/python3.6/site-packages/seaborn/timeseries.py\', \'lib/python3.6/site-packages/seaborn/utils.py\', \'lib/python3.6/site-packages/seaborn/widgets.py\', \'lib/python3.6/site-packages/seaborn/xkcd_rgb.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/seaborn-0.7.1-py36_0\', type=1))", "defaults::setuptools-27.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'60640e363589264b8a956af1f682764e\', name=\'setuptools\', platform=\'linux\', subdir=\'linux-64\', version=\'27.2.0\', fn=\'setuptools-27.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/setuptools-27.2.0-py36_0.tar.bz2\', files=(\'bin/easy_install\', \'bin/easy_install-3.6\', \'lib/python3.6/site-packages/setuptools-27.2.0-py3.6.egg\', \'lib/python3.6/site-packages/setuptools.pth\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/setuptools-27.2.0-py36_0\', type=1))", "defaults::simplegeneric-0.8.1-py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_1\', build_number=1, depends=(\'python 3.6*\',), license=\'ZPL 2.1\', license_family=\'Other\', md5=\'89c45face524c15b0a66e109fa87c61a\', name=\'simplegeneric\', platform=\'linux\', subdir=\'linux-64\', version=\'0.8.1\', fn=\'simplegeneric-0.8.1-py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/simplegeneric-0.8.1-py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/simplegeneric.cpython-36.pyc\', \'lib/python3.6/site-packages/simplegeneric-0.8.1-py3.6.egg-info\', \'lib/python3.6/site-packages/simplegeneric.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/simplegeneric-0.8.1-py36_1\', type=1))", "defaults::singledispatch-3.4.0.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'six\'), license=\'MIT\', md5=\'5f9902b48aea7345d3fa89706bbf2a3b\', name=\'singledispatch\', platform=\'linux\', subdir=\'linux-64\', version=\'3.4.0.3\', fn=\'singledispatch-3.4.0.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/singledispatch-3.4.0.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/singledispatch.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/singledispatch_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/singledispatch-3.4.0.3-py3.6.egg-info/zip-safe\', \'lib/python3.6/site-packages/singledispatch.py\', \'lib/python3.6/site-packages/singledispatch_helpers.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/singledispatch-3.4.0.3-py36_0\', type=1))", "defaults::sip-4.18-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'GPL3\', md5=\'92c822a06002b7cdc9dc4b656d743113\', name=\'sip\', platform=\'linux\', subdir=\'linux-64\', version=\'4.18\', fn=\'sip-4.18-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sip-4.18-py36_0.tar.bz2\', files=(\'bin/sip\', \'include/python3.6m/sip.h\', \'lib/python3.6/site-packages/__pycache__/sipconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/__pycache__/sipdistutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sip.pyi\', \'lib/python3.6/site-packages/sip.so\', \'lib/python3.6/site-packages/sipconfig.py\', \'lib/python3.6/site-packages/sipdistutils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sip-4.18-py36_0\', type=1))", "defaults::six-1.10.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'0d395f429e58f0310f63d8c9ee85e130\', name=\'six\', platform=\'linux\', subdir=\'linux-64\', version=\'1.10.0\', fn=\'six-1.10.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/six-1.10.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/__pycache__/six.cpython-36.pyc\', \'lib/python3.6/site-packages/six-1.10.0-py3.6.egg-info\', \'lib/python3.6/site-packages/six.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/six-1.10.0-py36_0\', type=1))", "defaults::snowballstemmer-1.2.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'cd4273eaff18b4913f93ebe19d230422\', name=\'snowballstemmer\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.1\', fn=\'snowballstemmer-1.2.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/snowballstemmer-1.2.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/snowballstemmer-1.2.1-py3.6.egg-info\', \'lib/python3.6/site-packages/snowballstemmer/__init__.py\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/among.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/basestemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/danish_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/dutch_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/english_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/finnish_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/french_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/german_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/hungarian_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/italian_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/norwegian_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/porter_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/portuguese_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/romanian_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/russian_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/spanish_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/swedish_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/__pycache__/turkish_stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/snowballstemmer/among.py\', \'lib/python3.6/site-packages/snowballstemmer/basestemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/danish_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/dutch_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/english_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/finnish_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/french_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/german_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/hungarian_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/italian_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/norwegian_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/porter_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/portuguese_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/romanian_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/russian_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/spanish_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/swedish_stemmer.py\', \'lib/python3.6/site-packages/snowballstemmer/turkish_stemmer.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/snowballstemmer-1.2.1-py36_0\', type=1))", "defaults::sockjs-tornado-1.0.3-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\', \'tornado >=2.1.1\'), license=\'MIT\', md5=\'dbd12cb1c9a6b1d08e33cb21ecf4b0e4\', name=\'sockjs-tornado\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.3\', fn=\'sockjs-tornado-1.0.3-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sockjs-tornado-1.0.3-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/sockjs/__init__.py\', \'lib/python3.6/site-packages/sockjs/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__init__.py\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/basehandler.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/conn.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/migrate.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/periodic.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/proto.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/router.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/sessioncontainer.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/static.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/stats.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/__pycache__/websocket.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/basehandler.py\', \'lib/python3.6/site-packages/sockjs/tornado/conn.py\', \'lib/python3.6/site-packages/sockjs/tornado/migrate.py\', \'lib/python3.6/site-packages/sockjs/tornado/periodic.py\', \'lib/python3.6/site-packages/sockjs/tornado/proto.py\', \'lib/python3.6/site-packages/sockjs/tornado/router.py\', \'lib/python3.6/site-packages/sockjs/tornado/session.py\', \'lib/python3.6/site-packages/sockjs/tornado/sessioncontainer.py\', \'lib/python3.6/site-packages/sockjs/tornado/static.py\', \'lib/python3.6/site-packages/sockjs/tornado/stats.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__init__.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/eventsource.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/htmlfile.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/jsonp.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/pollingbase.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/rawwebsocket.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/streamingbase.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/websocket.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/xhr.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/__pycache__/xhrstreaming.cpython-36.pyc\', \'lib/python3.6/site-packages/sockjs/tornado/transports/base.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/eventsource.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/htmlfile.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/jsonp.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/pollingbase.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/rawwebsocket.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/streamingbase.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/websocket.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/xhr.py\', \'lib/python3.6/site-packages/sockjs/tornado/transports/xhrstreaming.py\', \'lib/python3.6/site-packages/sockjs/tornado/util.py\', \'lib/python3.6/site-packages/sockjs/tornado/websocket.py\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/namespace_packages.txt\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/sockjs_tornado-1.0.3-py3.6.egg-info/top_level.txt\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sockjs-tornado-1.0.3-py36_0\', type=1))", "defaults::sphinx-1.5.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'alabaster >=0.7,<0.8\', \'babel >=1.3,!=2.0\', \'docutils >=0.11\', \'imagesize\', \'jinja2\', \'pygments >=2.0\', \'python 3.6*\', \'requests\', \'six\', \'snowballstemmer >=1.1\'), license=\'BSD\', md5=\'0cfff9e68fa71c6b72b9137f6d314115\', name=\'sphinx\', platform=\'linux\', subdir=\'linux-64\', version=\'1.5.1\', fn=\'sphinx-1.5.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sphinx-1.5.1-py36_0.tar.bz2\', files=(\'bin/sphinx-apidoc\', \'bin/sphinx-autogen\', \'bin/sphinx-build\', \'bin/sphinx-quickstart\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/PKG-INFO\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/SOURCES.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/dependency_links.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/entry_points.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/not-zip-safe\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/requires.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/EGG-INFO/top_level.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__main__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/addnodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/apidoc.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/cmdline.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/deprecation.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/highlighting.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/io.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/jinja2glue.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/make_mode.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/parsers.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/pygments_styles.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/quickstart.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/roles.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/setup_command.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/theming.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/__pycache__/versioning.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/addnodes.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/apidoc.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/application.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/applehelp.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/changes.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/devhelp.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/dummy.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/epub.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/epub3.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/gettext.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/htmlhelp.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/linkcheck.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/manpage.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/qthelp.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/texinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/websupport.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/__pycache__/xml.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/applehelp.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/changes.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/devhelp.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/dummy.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/epub.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/epub3.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/gettext.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/html.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/htmlhelp.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/latex.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/linkcheck.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/manpage.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/qthelp.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/texinfo.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/text.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/websupport.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/builders/xml.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/cmdline.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/config.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/deprecation.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/__pycache__/code.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/__pycache__/other.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/__pycache__/patches.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/code.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/other.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/directives/patches.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/c.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/cpp.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/javascript.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/rst.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/__pycache__/std.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/c.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/cpp.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/javascript.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/python.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/rst.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/domains/std.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/__pycache__/indexentries.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/__pycache__/toctree.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/indexentries.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/environment/managers/toctree.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/errors.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/autodoc.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/autosectionlabel.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/coverage.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/doctest.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/extlinks.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/githubpages.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/graphviz.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/ifconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/imgmath.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/inheritance_diagram.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/intersphinx.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/jsmath.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/linkcode.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/mathbase.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/mathjax.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/pngmath.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/todo.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/__pycache__/viewcode.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autodoc.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosectionlabel.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/__pycache__/generate.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/generate.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/templates/autosummary/base.rst\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/templates/autosummary/class.rst\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/autosummary/templates/autosummary/module.rst\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/coverage.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/doctest.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/extlinks.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/githubpages.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/graphviz.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/ifconfig.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/imgmath.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/inheritance_diagram.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/intersphinx.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/jsmath.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/linkcode.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/mathbase.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/mathjax.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/__pycache__/docstring.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/__pycache__/iterators.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/docstring.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/napoleon/iterators.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/pngmath.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/todo.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/ext/viewcode.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/highlighting.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/io.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/jinja2glue.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/.tx/config\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/__init__.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/bn/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/bn/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/bn/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ca/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ca/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ca/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cs/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cs/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cs/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cy/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cy/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/cy/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/da/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/da/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/da/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/de/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/de/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/de/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/el/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/el/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/el/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eo/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eo/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eo/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/es/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/es/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/es/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/et/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/et/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/et/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eu/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eu/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/eu/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fa/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fa/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fa/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fi/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fi/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fi/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fr/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fr/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/fr/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/he/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/he/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/he/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hi/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hi/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hi/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hr/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hr/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hr/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hu/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hu/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/hu/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/id/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/id/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/id/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/it/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/it/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/it/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ja/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ja/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ja/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ko/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ko/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ko/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lt/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lt/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lt/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lv/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lv/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/lv/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/mk/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/mk/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/mk/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ne/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ne/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ne/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nl/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nl/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/nl/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pl/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pl/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pl/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ro/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ro/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ro/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ru/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ru/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/ru/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/si/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/si/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/si/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sk/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sk/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sk/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sl/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sl/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sl/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sphinx.pot\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sv/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sv/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/sv/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/tr/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/tr/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/tr/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/vi/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/vi/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/vi/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/make_mode.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/parsers.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2-sphinx1.2.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2-sphinx1.3.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2-sphinx1.4.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2-sphinx1.5.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py2.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py3-sphinx1.4.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py3.pickle\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/Grammar-py3.txt\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/nodes.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/driver.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/grammar.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/literals.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/parse.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/pgen.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/token.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/__pycache__/tokenize.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/driver.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/grammar.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/literals.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/parse.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/pgen.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/token.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pycode/pgen2/tokenize.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/pygments_styles.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/quickstart.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/roles.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/da.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/de.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/en.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/es.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/fi.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/fr.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/hu.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/it.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/ja.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/jssplitter.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/nl.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/no.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/pt.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/ro.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/ru.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/sv.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/tr.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/__pycache__/zh.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/da.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/de.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/en.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/es.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/fi.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/fr.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/hu.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/it.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/ja.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/jssplitter.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/nl.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/no.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/danish-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/dutch-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/finnish-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/french-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/german-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/hungarian-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/italian-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/norwegian-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/porter-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/portuguese-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/romanian-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/russian-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/spanish-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/swedish-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/non-minified-js/turkish-stemmer.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/pt.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/ro.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/ru.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/sv.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/tr.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/search/zh.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/setup_command.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/latex/content.tex_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/Makefile.new_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/Makefile_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/conf.py_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/make.bat.new_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/make.bat_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/templates/quickstart/master_doc.rst_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/Makefile_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/footnotehyper-sphinx.sty\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/needspace.sty\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/python.ist\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/sphinx.sty\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/sphinxhowto.cls\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/texinputs/sphinxmanual.cls\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/agogo/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/agogo/static/agogo.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/agogo/static/bgfooter.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/agogo/static/bgtop.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/agogo/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/changes/frameset.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/changes/rstsource.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/changes/versionchanges.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/defindex.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/domainindex.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/genindex-single.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/genindex-split.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/genindex.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/globaltoc.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/localtoc.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/opensearch.xml\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/page.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/relations.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/search.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/searchbox.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/searchresults.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/sourcelink.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/ajax-loader.gif\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/basic.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/comment-bright.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/comment-close.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/comment.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/doctools.js_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/down-pressed.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/down.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/file.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/jquery-3.1.0.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/jquery.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/minus.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/plus.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/searchtools.js_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/underscore-1.3.1.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/underscore.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/up-pressed.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/up.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/static/websupport.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/basic/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/static/background_b01.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/static/bizstyle.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/static/bizstyle.js_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/static/css3-mediaqueries.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/static/css3-mediaqueries_src.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/bizstyle/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/classic/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/classic/static/classic.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/classic/static/sidebar.js_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/classic/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/default/static/default.css\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/default/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/epub/epub-cover.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/epub/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/epub/static/epub.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/epub/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/static/alert_info_32.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/static/alert_warning_32.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/static/bg-page.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/static/bullet_orange.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/static/haiku.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/haiku/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/nature/static/nature.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/nature/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/nonav/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/nonav/static/nonav.css\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/nonav/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/dialog-note.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/dialog-seealso.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/dialog-todo.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/dialog-topic.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/dialog-warning.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/epub.css\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/footerbg.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/headerbg.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/ie6.css\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/middlebg.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/pyramid.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/static/transparent.gif\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/pyramid/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/artwork/logo.svg\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/darkmetal.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/headerbg.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/logo.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/metal.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/navigation.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/print.css\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/scrolls.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/theme_extras.js\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/watermark.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/static/watermark_blur.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/scrolls/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/sphinxdoc/layout.html\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/sphinxdoc/static/contents.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/sphinxdoc/static/navigation.png\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/sphinxdoc/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/traditional/static/traditional.css_t\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/themes/traditional/theme.conf\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/theming.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/__pycache__/compact_bullet_list.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/__pycache__/i18n.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/compact_bullet_list.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/transforms/i18n.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/docfields.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/docstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/docutils.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/fileutil.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/i18n.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/images.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/inspect.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/jsdump.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/jsonimpl.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/logging.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/matching.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/nodes.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/osutil.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/png.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/pycompat.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/requests.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/rst.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/smartypants.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/stemmer.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/tags.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/texescape.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/__pycache__/websupport.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/compat.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/console.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/docfields.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/docstrings.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/docutils.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/fileutil.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/i18n.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/images.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/inspect.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/jsdump.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/jsonimpl.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/logging.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/matching.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/nodes.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/osutil.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/parallel.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/png.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/pycompat.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/requests.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/rst.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/smartypants.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/stemmer.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/tags.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/template.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/texescape.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/util/websupport.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/versioning.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/__pycache__/errors.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/errors.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/__pycache__/nullsearch.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/__pycache__/whooshsearch.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/__pycache__/xapiansearch.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/nullsearch.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/whooshsearch.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/search/xapiansearch.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/__pycache__/differ.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/__pycache__/sqlalchemy_db.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/__pycache__/sqlalchemystorage.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/differ.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/sqlalchemy_db.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/websupport/storage/sqlalchemystorage.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__init__.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/html.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/manpage.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/texinfo.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/text.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/websupport.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/__pycache__/xml.cpython-36.pyc\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/html.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/latex.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/manpage.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/texinfo.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/text.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/websupport.py\', \'lib/python3.6/site-packages/Sphinx-1.5.1-py3.6.egg/sphinx/writers/xml.py\', \'lib/python3.6/site-packages/Sphinx.pth\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sphinx-1.5.1-py36_0\', type=1))", "defaults::spyder-3.1.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'chardet >=2.0.0\', \'jedi >=0.8\', \'nbconvert\', \'numpydoc\', \'pep8\', \'pickleshare\', \'psutil\', \'pyflakes\', \'pygments >=2.0\', \'pylint\', \'pyqt\', \'python 3.6*\', \'pyzmq\', \'qtawesome >=0.4.1\', \'qtconsole >=4.2\', \'qtpy >=1.1\', \'rope\', \'sphinx\'), license=\'MIT\', md5=\'8f98bac993f263a88933174d856d4d5b\', name=\'spyder\', platform=\'linux\', subdir=\'linux-64\', version=\'3.1.2\', fn=\'spyder-3.1.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/spyder-3.1.2-py36_0.tar.bz2\', files=(\'bin/spyder\', \'lib/python3.6/site-packages/spyder-3.1.2-py3.6.egg-info\', \'lib/python3.6/site-packages/spyder/__init__.py\', \'lib/python3.6/site-packages/spyder/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/dependencies.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/interpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/otherplugins.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/pil_patch.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/py3compat.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/pyplot.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/__pycache__/scientific_startup.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__init__.py\', \'lib/python3.6/site-packages/spyder/app/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__pycache__/cli_options.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__pycache__/mainwindow.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__pycache__/restart.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__pycache__/start.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/__pycache__/tour.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/app/cli_options.py\', \'lib/python3.6/site-packages/spyder/app/mac_stylesheet.qss\', \'lib/python3.6/site-packages/spyder/app/mainwindow.py\', \'lib/python3.6/site-packages/spyder/app/restart.py\', \'lib/python3.6/site-packages/spyder/app/start.py\', \'lib/python3.6/site-packages/spyder/app/tour.py\', \'lib/python3.6/site-packages/spyder/config/__init__.py\', \'lib/python3.6/site-packages/spyder/config/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/fonts.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/gui.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/ipython.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/main.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/user.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/config/base.py\', \'lib/python3.6/site-packages/spyder/config/fonts.py\', \'lib/python3.6/site-packages/spyder/config/gui.py\', \'lib/python3.6/site-packages/spyder/config/ipython.py\', \'lib/python3.6/site-packages/spyder/config/main.py\', \'lib/python3.6/site-packages/spyder/config/user.py\', \'lib/python3.6/site-packages/spyder/config/utils.py\', \'lib/python3.6/site-packages/spyder/defaults/Readme.txt\', \'lib/python3.6/site-packages/spyder/defaults/defaults-2.4.0.ini\', \'lib/python3.6/site-packages/spyder/defaults/defaults-3.0.0.ini\', \'lib/python3.6/site-packages/spyder/dependencies.py\', \'lib/python3.6/site-packages/spyder/doc/.buildinfo\', \'lib/python3.6/site-packages/spyder/doc/_images/arrayeditor.png\', \'lib/python3.6/site-packages/spyder/doc/_images/console.png\', \'lib/python3.6/site-packages/spyder/doc/_images/dicteditor.png\', \'lib/python3.6/site-packages/spyder/doc/_images/editor1.png\', \'lib/python3.6/site-packages/spyder/doc/_images/editor2.png\', \'lib/python3.6/site-packages/spyder/doc/_images/editor3.png\', \'lib/python3.6/site-packages/spyder/doc/_images/explorer.png\', \'lib/python3.6/site-packages/spyder/doc/_images/explorer_menu1.png\', \'lib/python3.6/site-packages/spyder/doc/_images/explorer_menu2.png\', \'lib/python3.6/site-packages/spyder/doc/_images/findinfiles.png\', \'lib/python3.6/site-packages/spyder/doc/_images/git_install_dialog.png\', \'lib/python3.6/site-packages/spyder/doc/_images/help_plain.png\', \'lib/python3.6/site-packages/spyder/doc/_images/help_rich.png\', \'lib/python3.6/site-packages/spyder/doc/_images/help_source.png\', \'lib/python3.6/site-packages/spyder/doc/_images/historylog.png\', \'lib/python3.6/site-packages/spyder/doc/_images/internalconsole.png\', \'lib/python3.6/site-packages/spyder/doc/_images/ipythonconsole.png\', \'lib/python3.6/site-packages/spyder/doc/_images/ipythonconsolemenu.png\', \'lib/python3.6/site-packages/spyder/doc/_images/ipythonkernelconnect.png\', \'lib/python3.6/site-packages/spyder/doc/_images/listeditor.png\', \'lib/python3.6/site-packages/spyder/doc/_images/new_project.png\', \'lib/python3.6/site-packages/spyder/doc/_images/onlinehelp.png\', \'lib/python3.6/site-packages/spyder/doc/_images/projectexplorer.png\', \'lib/python3.6/site-packages/spyder/doc/_images/projectexplorer2.png\', \'lib/python3.6/site-packages/spyder/doc/_images/pylint.png\', \'lib/python3.6/site-packages/spyder/doc/_images/texteditor.png\', \'lib/python3.6/site-packages/spyder/doc/_images/variableexplorer-imshow.png\', \'lib/python3.6/site-packages/spyder/doc/_images/variableexplorer-plot.png\', \'lib/python3.6/site-packages/spyder/doc/_images/variableexplorer1.png\', \'lib/python3.6/site-packages/spyder/doc/_sources/console.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/debugging.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/editor.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/fileexplorer.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/findinfiles.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/help.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/historylog.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/index.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/installation.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/internalconsole.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/ipythonconsole.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/onlinehelp.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/options.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/overview.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/projects.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/pylint.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_sources/variableexplorer.rst.txt\', \'lib/python3.6/site-packages/spyder/doc/_static/ajax-loader.gif\', \'lib/python3.6/site-packages/spyder/doc/_static/basic.css\', \'lib/python3.6/site-packages/spyder/doc/_static/comment-bright.png\', \'lib/python3.6/site-packages/spyder/doc/_static/comment-close.png\', \'lib/python3.6/site-packages/spyder/doc/_static/comment.png\', \'lib/python3.6/site-packages/spyder/doc/_static/contents.png\', \'lib/python3.6/site-packages/spyder/doc/_static/doctools.js\', \'lib/python3.6/site-packages/spyder/doc/_static/down-pressed.png\', \'lib/python3.6/site-packages/spyder/doc/_static/down.png\', \'lib/python3.6/site-packages/spyder/doc/_static/favicon.ico\', \'lib/python3.6/site-packages/spyder/doc/_static/file.png\', \'lib/python3.6/site-packages/spyder/doc/_static/jquery-3.1.0.js\', \'lib/python3.6/site-packages/spyder/doc/_static/jquery.js\', \'lib/python3.6/site-packages/spyder/doc/_static/minus.png\', \'lib/python3.6/site-packages/spyder/doc/_static/navigation.png\', \'lib/python3.6/site-packages/spyder/doc/_static/plus.png\', \'lib/python3.6/site-packages/spyder/doc/_static/pygments.css\', \'lib/python3.6/site-packages/spyder/doc/_static/searchtools.js\', \'lib/python3.6/site-packages/spyder/doc/_static/sphinxdoc.css\', \'lib/python3.6/site-packages/spyder/doc/_static/spyder_bbg.png\', \'lib/python3.6/site-packages/spyder/doc/_static/underscore-1.3.1.js\', \'lib/python3.6/site-packages/spyder/doc/_static/underscore.js\', \'lib/python3.6/site-packages/spyder/doc/_static/up-pressed.png\', \'lib/python3.6/site-packages/spyder/doc/_static/up.png\', \'lib/python3.6/site-packages/spyder/doc/_static/websupport.js\', \'lib/python3.6/site-packages/spyder/doc/console.html\', \'lib/python3.6/site-packages/spyder/doc/debugging.html\', \'lib/python3.6/site-packages/spyder/doc/editor.html\', \'lib/python3.6/site-packages/spyder/doc/fileexplorer.html\', \'lib/python3.6/site-packages/spyder/doc/findinfiles.html\', \'lib/python3.6/site-packages/spyder/doc/genindex.html\', \'lib/python3.6/site-packages/spyder/doc/help.html\', \'lib/python3.6/site-packages/spyder/doc/historylog.html\', \'lib/python3.6/site-packages/spyder/doc/index.html\', \'lib/python3.6/site-packages/spyder/doc/installation.html\', \'lib/python3.6/site-packages/spyder/doc/internalconsole.html\', \'lib/python3.6/site-packages/spyder/doc/ipythonconsole.html\', \'lib/python3.6/site-packages/spyder/doc/objects.inv\', \'lib/python3.6/site-packages/spyder/doc/onlinehelp.html\', \'lib/python3.6/site-packages/spyder/doc/options.html\', \'lib/python3.6/site-packages/spyder/doc/overview.html\', \'lib/python3.6/site-packages/spyder/doc/projects.html\', \'lib/python3.6/site-packages/spyder/doc/pylint.html\', \'lib/python3.6/site-packages/spyder/doc/search.html\', \'lib/python3.6/site-packages/spyder/doc/searchindex.js\', \'lib/python3.6/site-packages/spyder/doc/variableexplorer.html\', \'lib/python3.6/site-packages/spyder/fonts/spyder-charmap.json\', \'lib/python3.6/site-packages/spyder/fonts/spyder.ttf\', \'lib/python3.6/site-packages/spyder/images/actions/1downarrow.png\', \'lib/python3.6/site-packages/spyder/images/actions/1uparrow.png\', \'lib/python3.6/site-packages/spyder/images/actions/2downarrow.png\', \'lib/python3.6/site-packages/spyder/images/actions/2uparrow.png\', \'lib/python3.6/site-packages/spyder/images/actions/arrow-continue.png\', \'lib/python3.6/site-packages/spyder/images/actions/arrow-step-in.png\', \'lib/python3.6/site-packages/spyder/images/actions/arrow-step-out.png\', \'lib/python3.6/site-packages/spyder/images/actions/arrow-step-over.png\', \'lib/python3.6/site-packages/spyder/images/actions/auto_reload.png\', \'lib/python3.6/site-packages/spyder/images/actions/browse_tab.png\', \'lib/python3.6/site-packages/spyder/images/actions/check.png\', \'lib/python3.6/site-packages/spyder/images/actions/cmdprompt.png\', \'lib/python3.6/site-packages/spyder/images/actions/collapse.png\', \'lib/python3.6/site-packages/spyder/images/actions/collapse_selection.png\', \'lib/python3.6/site-packages/spyder/images/actions/configure.png\', \'lib/python3.6/site-packages/spyder/images/actions/copywop.png\', \'lib/python3.6/site-packages/spyder/images/actions/delete.png\', \'lib/python3.6/site-packages/spyder/images/actions/edit.png\', \'lib/python3.6/site-packages/spyder/images/actions/edit24.png\', \'lib/python3.6/site-packages/spyder/images/actions/edit_add.png\', \'lib/python3.6/site-packages/spyder/images/actions/edit_remove.png\', \'lib/python3.6/site-packages/spyder/images/actions/editcopy.png\', \'lib/python3.6/site-packages/spyder/images/actions/editcut.png\', \'lib/python3.6/site-packages/spyder/images/actions/editdelete.png\', \'lib/python3.6/site-packages/spyder/images/actions/editpaste.png\', \'lib/python3.6/site-packages/spyder/images/actions/eraser.png\', \'lib/python3.6/site-packages/spyder/images/actions/exit.png\', \'lib/python3.6/site-packages/spyder/images/actions/expand.png\', \'lib/python3.6/site-packages/spyder/images/actions/expand_selection.png\', \'lib/python3.6/site-packages/spyder/images/actions/filter.png\', \'lib/python3.6/site-packages/spyder/images/actions/find.png\', \'lib/python3.6/site-packages/spyder/images/actions/findf.png\', \'lib/python3.6/site-packages/spyder/images/actions/findnext.png\', \'lib/python3.6/site-packages/spyder/images/actions/findprevious.png\', \'lib/python3.6/site-packages/spyder/images/actions/folder_new.png\', \'lib/python3.6/site-packages/spyder/images/actions/hide.png\', \'lib/python3.6/site-packages/spyder/images/actions/hist.png\', \'lib/python3.6/site-packages/spyder/images/actions/home.png\', \'lib/python3.6/site-packages/spyder/images/actions/imshow.png\', \'lib/python3.6/site-packages/spyder/images/actions/insert.png\', \'lib/python3.6/site-packages/spyder/images/actions/lock.png\', \'lib/python3.6/site-packages/spyder/images/actions/lock_open.png\', \'lib/python3.6/site-packages/spyder/images/actions/magnifier.png\', \'lib/python3.6/site-packages/spyder/images/actions/maximize.png\', \'lib/python3.6/site-packages/spyder/images/actions/next.png\', \'lib/python3.6/site-packages/spyder/images/actions/options_less.png\', \'lib/python3.6/site-packages/spyder/images/actions/options_more.png\', \'lib/python3.6/site-packages/spyder/images/actions/plot.png\', \'lib/python3.6/site-packages/spyder/images/actions/previous.png\', \'lib/python3.6/site-packages/spyder/images/actions/redo.png\', \'lib/python3.6/site-packages/spyder/images/actions/reload.png\', \'lib/python3.6/site-packages/spyder/images/actions/rename.png\', \'lib/python3.6/site-packages/spyder/images/actions/replace.png\', \'lib/python3.6/site-packages/spyder/images/actions/restore.png\', \'lib/python3.6/site-packages/spyder/images/actions/show.png\', \'lib/python3.6/site-packages/spyder/images/actions/special_paste.png\', \'lib/python3.6/site-packages/spyder/images/actions/stop.png\', \'lib/python3.6/site-packages/spyder/images/actions/stop_debug.png\', \'lib/python3.6/site-packages/spyder/images/actions/synchronize.png\', \'lib/python3.6/site-packages/spyder/images/actions/tooloptions.png\', \'lib/python3.6/site-packages/spyder/images/actions/undo.png\', \'lib/python3.6/site-packages/spyder/images/actions/unmaximize.png\', \'lib/python3.6/site-packages/spyder/images/actions/up.png\', \'lib/python3.6/site-packages/spyder/images/actions/window_fullscreen.png\', \'lib/python3.6/site-packages/spyder/images/actions/window_nofullscreen.png\', \'lib/python3.6/site-packages/spyder/images/actions/zoom_in.png\', \'lib/python3.6/site-packages/spyder/images/actions/zoom_out.png\', \'lib/python3.6/site-packages/spyder/images/advanced.png\', \'lib/python3.6/site-packages/spyder/images/arredit.png\', \'lib/python3.6/site-packages/spyder/images/arrow.png\', \'lib/python3.6/site-packages/spyder/images/bold.png\', \'lib/python3.6/site-packages/spyder/images/browser.png\', \'lib/python3.6/site-packages/spyder/images/chevron-left.png\', \'lib/python3.6/site-packages/spyder/images/chevron-right.png\', \'lib/python3.6/site-packages/spyder/images/console/cmdprompt_t.png\', \'lib/python3.6/site-packages/spyder/images/console/console.png\', \'lib/python3.6/site-packages/spyder/images/console/editclear.png\', \'lib/python3.6/site-packages/spyder/images/console/environ.png\', \'lib/python3.6/site-packages/spyder/images/console/history.png\', \'lib/python3.6/site-packages/spyder/images/console/history24.png\', \'lib/python3.6/site-packages/spyder/images/console/ipython_console.png\', \'lib/python3.6/site-packages/spyder/images/console/ipython_console_t.png\', \'lib/python3.6/site-packages/spyder/images/console/kill.png\', \'lib/python3.6/site-packages/spyder/images/console/loading_sprites.png\', \'lib/python3.6/site-packages/spyder/images/console/prompt.png\', \'lib/python3.6/site-packages/spyder/images/console/python.png\', \'lib/python3.6/site-packages/spyder/images/console/python_t.png\', \'lib/python3.6/site-packages/spyder/images/console/restart.png\', \'lib/python3.6/site-packages/spyder/images/console/run_small.png\', \'lib/python3.6/site-packages/spyder/images/console/syspath.png\', \'lib/python3.6/site-packages/spyder/images/console/terminated.png\', \'lib/python3.6/site-packages/spyder/images/dictedit.png\', \'lib/python3.6/site-packages/spyder/images/editor/attribute.png\', \'lib/python3.6/site-packages/spyder/images/editor/blockcomment.png\', \'lib/python3.6/site-packages/spyder/images/editor/breakpoint_big.png\', \'lib/python3.6/site-packages/spyder/images/editor/breakpoint_cond_big.png\', \'lib/python3.6/site-packages/spyder/images/editor/breakpoint_cond_small.png\', \'lib/python3.6/site-packages/spyder/images/editor/breakpoint_small.png\', \'lib/python3.6/site-packages/spyder/images/editor/bug.png\', \'lib/python3.6/site-packages/spyder/images/editor/cell.png\', \'lib/python3.6/site-packages/spyder/images/editor/class.png\', \'lib/python3.6/site-packages/spyder/images/editor/close_panel.png\', \'lib/python3.6/site-packages/spyder/images/editor/comment.png\', \'lib/python3.6/site-packages/spyder/images/editor/convention.png\', \'lib/python3.6/site-packages/spyder/images/editor/debug.png\', \'lib/python3.6/site-packages/spyder/images/editor/error.png\', \'lib/python3.6/site-packages/spyder/images/editor/file.png\', \'lib/python3.6/site-packages/spyder/images/editor/filelist.png\', \'lib/python3.6/site-packages/spyder/images/editor/fromcursor.png\', \'lib/python3.6/site-packages/spyder/images/editor/function.png\', \'lib/python3.6/site-packages/spyder/images/editor/gotoline.png\', \'lib/python3.6/site-packages/spyder/images/editor/highlight.png\', \'lib/python3.6/site-packages/spyder/images/editor/horsplit.png\', \'lib/python3.6/site-packages/spyder/images/editor/indent.png\', \'lib/python3.6/site-packages/spyder/images/editor/last_edit_location.png\', \'lib/python3.6/site-packages/spyder/images/editor/method.png\', \'lib/python3.6/site-packages/spyder/images/editor/module.png\', \'lib/python3.6/site-packages/spyder/images/editor/newwindow.png\', \'lib/python3.6/site-packages/spyder/images/editor/next_cursor.png\', \'lib/python3.6/site-packages/spyder/images/editor/next_wng.png\', \'lib/python3.6/site-packages/spyder/images/editor/no_match.png\', \'lib/python3.6/site-packages/spyder/images/editor/outline_explorer.png\', \'lib/python3.6/site-packages/spyder/images/editor/outline_explorer_vis.png\', \'lib/python3.6/site-packages/spyder/images/editor/prev_cursor.png\', \'lib/python3.6/site-packages/spyder/images/editor/prev_wng.png\', \'lib/python3.6/site-packages/spyder/images/editor/private1.png\', \'lib/python3.6/site-packages/spyder/images/editor/private2.png\', \'lib/python3.6/site-packages/spyder/images/editor/refactor.png\', \'lib/python3.6/site-packages/spyder/images/editor/run.png\', \'lib/python3.6/site-packages/spyder/images/editor/run_again.png\', \'lib/python3.6/site-packages/spyder/images/editor/run_cell.png\', \'lib/python3.6/site-packages/spyder/images/editor/run_cell_advance.png\', \'lib/python3.6/site-packages/spyder/images/editor/run_selection.png\', \'lib/python3.6/site-packages/spyder/images/editor/run_settings.png\', \'lib/python3.6/site-packages/spyder/images/editor/select.png\', \'lib/python3.6/site-packages/spyder/images/editor/selectall.png\', \'lib/python3.6/site-packages/spyder/images/editor/todo.png\', \'lib/python3.6/site-packages/spyder/images/editor/todo_list.png\', \'lib/python3.6/site-packages/spyder/images/editor/uncomment.png\', \'lib/python3.6/site-packages/spyder/images/editor/unindent.png\', \'lib/python3.6/site-packages/spyder/images/editor/versplit.png\', \'lib/python3.6/site-packages/spyder/images/editor/warning.png\', \'lib/python3.6/site-packages/spyder/images/editor/wng_list.png\', \'lib/python3.6/site-packages/spyder/images/eyedropper.png\', \'lib/python3.6/site-packages/spyder/images/file/fileclose.png\', \'lib/python3.6/site-packages/spyder/images/file/filecloseall.png\', \'lib/python3.6/site-packages/spyder/images/file/fileimport.png\', \'lib/python3.6/site-packages/spyder/images/file/filenew.png\', \'lib/python3.6/site-packages/spyder/images/file/fileopen.png\', \'lib/python3.6/site-packages/spyder/images/file/filesave.png\', \'lib/python3.6/site-packages/spyder/images/file/filesaveas.png\', \'lib/python3.6/site-packages/spyder/images/file/print.png\', \'lib/python3.6/site-packages/spyder/images/file/save_all.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/bat.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/bmp.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/c.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cc.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cfg.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/chm.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cl.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cmd.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cpp.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/css.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/cxx.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/diff.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/doc.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/enaml.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/exe.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/f.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/f77.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/f90.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/gif.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/h.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/hh.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/hpp.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/htm.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/html.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/hxx.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/inf.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/ini.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/jl.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/jpeg.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/jpg.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/js.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/log.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/nsh.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/nsi.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/nt.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/patch.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pdf.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/png.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/po.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pot.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pps.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/properties.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/ps.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pxd.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pxi.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/py.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pyc.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pyw.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/pyx.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/rar.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/readme.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/reg.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/rej.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/scss.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/session.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/tar.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/tex.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/tgz.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/tif.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/tiff.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/ts.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/txt.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/ui.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/xls.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/xml.png\', \'lib/python3.6/site-packages/spyder/images/filetypes/zip.png\', \'lib/python3.6/site-packages/spyder/images/font.png\', \'lib/python3.6/site-packages/spyder/images/genprefs.png\', \'lib/python3.6/site-packages/spyder/images/help.png\', \'lib/python3.6/site-packages/spyder/images/italic.png\', \'lib/python3.6/site-packages/spyder/images/keyboard.png\', \'lib/python3.6/site-packages/spyder/images/matplotlib.png\', \'lib/python3.6/site-packages/spyder/images/none.png\', \'lib/python3.6/site-packages/spyder/images/not_found.png\', \'lib/python3.6/site-packages/spyder/images/options.svg\', \'lib/python3.6/site-packages/spyder/images/projects/add_to_path.png\', \'lib/python3.6/site-packages/spyder/images/projects/folder.png\', \'lib/python3.6/site-packages/spyder/images/projects/package.png\', \'lib/python3.6/site-packages/spyder/images/projects/pp_folder.png\', \'lib/python3.6/site-packages/spyder/images/projects/pp_package.png\', \'lib/python3.6/site-packages/spyder/images/projects/pp_project.png\', \'lib/python3.6/site-packages/spyder/images/projects/project.png\', \'lib/python3.6/site-packages/spyder/images/projects/project_closed.png\', \'lib/python3.6/site-packages/spyder/images/projects/pydev.png\', \'lib/python3.6/site-packages/spyder/images/projects/pythonpath.png\', \'lib/python3.6/site-packages/spyder/images/projects/remove_from_path.png\', \'lib/python3.6/site-packages/spyder/images/projects/show_all.png\', \'lib/python3.6/site-packages/spyder/images/pythonpath.png\', \'lib/python3.6/site-packages/spyder/images/pythonxy.png\', \'lib/python3.6/site-packages/spyder/images/qt.png\', \'lib/python3.6/site-packages/spyder/images/qtassistant.png\', \'lib/python3.6/site-packages/spyder/images/qtdesigner.png\', \'lib/python3.6/site-packages/spyder/images/qtlinguist.png\', \'lib/python3.6/site-packages/spyder/images/scipy.png\', \'lib/python3.6/site-packages/spyder/images/set_workdir.png\', \'lib/python3.6/site-packages/spyder/images/splash.svg\', \'lib/python3.6/site-packages/spyder/images/spyder.png\', \'lib/python3.6/site-packages/spyder/images/spyder.svg\', \'lib/python3.6/site-packages/spyder/images/tour-spyder-logo.png\', \'lib/python3.6/site-packages/spyder/images/upper_lower.png\', \'lib/python3.6/site-packages/spyder/images/vcs_browse.png\', \'lib/python3.6/site-packages/spyder/images/vcs_commit.png\', \'lib/python3.6/site-packages/spyder/images/vitables.png\', \'lib/python3.6/site-packages/spyder/images/whole_words.png\', \'lib/python3.6/site-packages/spyder/images/win_env.png\', \'lib/python3.6/site-packages/spyder/images/winpython.svg\', \'lib/python3.6/site-packages/spyder/interpreter.py\', \'lib/python3.6/site-packages/spyder/locale/es/LC_MESSAGES/spyder.mo\', \'lib/python3.6/site-packages/spyder/locale/fr/LC_MESSAGES/spyder.mo\', \'lib/python3.6/site-packages/spyder/locale/ja/LC_MESSAGES/spyder.mo\', \'lib/python3.6/site-packages/spyder/locale/pt_BR/LC_MESSAGES/spyder.mo\', \'lib/python3.6/site-packages/spyder/locale/ru/LC_MESSAGES/spyder.mo\', \'lib/python3.6/site-packages/spyder/otherplugins.py\', \'lib/python3.6/site-packages/spyder/pil_patch.py\', \'lib/python3.6/site-packages/spyder/plugins/__init__.py\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/configdialog.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/editor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/explorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/externalconsole.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/findinfiles.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/history.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/ipythonconsole.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/layoutdialog.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/maininterpreter.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/onlinehelp.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/outlineexplorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/projects.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/runconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/shortcuts.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/variableexplorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/__pycache__/workingdirectory.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/configdialog.py\', \'lib/python3.6/site-packages/spyder/plugins/console.py\', \'lib/python3.6/site-packages/spyder/plugins/editor.py\', \'lib/python3.6/site-packages/spyder/plugins/explorer.py\', \'lib/python3.6/site-packages/spyder/plugins/externalconsole.py\', \'lib/python3.6/site-packages/spyder/plugins/findinfiles.py\', \'lib/python3.6/site-packages/spyder/plugins/help.py\', \'lib/python3.6/site-packages/spyder/plugins/history.py\', \'lib/python3.6/site-packages/spyder/plugins/ipythonconsole.py\', \'lib/python3.6/site-packages/spyder/plugins/layoutdialog.py\', \'lib/python3.6/site-packages/spyder/plugins/maininterpreter.py\', \'lib/python3.6/site-packages/spyder/plugins/onlinehelp.py\', \'lib/python3.6/site-packages/spyder/plugins/outlineexplorer.py\', \'lib/python3.6/site-packages/spyder/plugins/projects.py\', \'lib/python3.6/site-packages/spyder/plugins/runconfig.py\', \'lib/python3.6/site-packages/spyder/plugins/shortcuts.py\', \'lib/python3.6/site-packages/spyder/plugins/tests/__init__.py\', \'lib/python3.6/site-packages/spyder/plugins/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/tests/__pycache__/test_findinfiles.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/tests/__pycache__/test_ipythonconsole.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/tests/__pycache__/test_variableexplorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/plugins/tests/test_findinfiles.py\', \'lib/python3.6/site-packages/spyder/plugins/tests/test_ipythonconsole.py\', \'lib/python3.6/site-packages/spyder/plugins/tests/test_variableexplorer.py\', \'lib/python3.6/site-packages/spyder/plugins/variableexplorer.py\', \'lib/python3.6/site-packages/spyder/plugins/workingdirectory.py\', \'lib/python3.6/site-packages/spyder/py3compat.py\', \'lib/python3.6/site-packages/spyder/pyplot.py\', \'lib/python3.6/site-packages/spyder/requirements.py\', \'lib/python3.6/site-packages/spyder/scientific_startup.py\', \'lib/python3.6/site-packages/spyder/utils/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/bsdsocket.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/codeanalysis.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/debug.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/dochelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/encoding.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/environ.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/fixtures.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/icon_manager.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/inputhooks.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/iofuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/programs.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/qthelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/sourcecode.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/stringmatching.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/syntaxhighlighters.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/system.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/vcs.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/bsdsocket.py\', \'lib/python3.6/site-packages/spyder/utils/codeanalysis.py\', \'lib/python3.6/site-packages/spyder/utils/debug.py\', \'lib/python3.6/site-packages/spyder/utils/dochelpers.py\', \'lib/python3.6/site-packages/spyder/utils/encoding.py\', \'lib/python3.6/site-packages/spyder/utils/environ.py\', \'lib/python3.6/site-packages/spyder/utils/external/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/external/__pycache__/lockfile.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/LICENSE.txt\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/__pycache__/check.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/__pycache__/helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/check.py\', \'lib/python3.6/site-packages/spyder/utils/external/binaryornot/helpers.py\', \'lib/python3.6/site-packages/spyder/utils/external/lockfile.py\', \'lib/python3.6/site-packages/spyder/utils/fixtures.py\', \'lib/python3.6/site-packages/spyder/utils/help/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/help/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/help/__pycache__/conf.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/help/__pycache__/sphinxify.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/help/conf.py\', \'lib/python3.6/site-packages/spyder/utils/help/js/collapse_sections.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/copy_button.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/fix_image_paths.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/jquery.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/math_config.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/MathJax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-AMS-MML_HTMLorMML-full.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-AMS-MML_HTMLorMML.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-AMS-MML_SVG-full.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-AMS-MML_SVG.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-MML-AM_HTMLorMML-full.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/TeX-MML-AM_HTMLorMML.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/default.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/config/local/local.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/FontWarnings.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/HTML-CSS/handle-floats.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/MathEvents.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/MathMenu.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/MathZoom.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/AMSmath.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/AMSsymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/HTML.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/action.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/autobold.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/autoload-all.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/bbox.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/begingroup.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/boldsymbol.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/cancel.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/color.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/enclose.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/extpfeil.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/mathchoice.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/mhchem.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/newcommand.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/noErrors.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/noUndefined.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/unicode.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/TeX/verb.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/asciimath2jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/jsMath2jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/mml2jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/tex2jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/toMathML.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/extensions/v1.0-warning.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/images/CloseX-31.png\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/images/MenuArrow-15.png\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/Arrows.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/CombDiactForSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/Dingbats.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/GeneralPunctuation.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/GeometricShapes.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/GreekAndCoptic.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/Latin1Supplement.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/LetterlikeSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/MathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/MiscTechnical.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/SpacingModLetters.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/SuppMathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/SupplementalArrowsA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/element/mml/optable/SupplementalArrowsB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/AsciiMath/config.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/AsciiMath/jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/config.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/a.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/b.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/c.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/d.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/e.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/f.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/fr.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/g.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/h.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/i.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/j.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/k.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/l.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/m.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/n.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/o.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/opf.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/p.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/q.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/r.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/s.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/scr.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/t.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/u.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/v.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/w.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/x.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/y.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/entities/z.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/MathML/jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/TeX/config.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/input/TeX/jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/annotation-xml.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/maction.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/menclose.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/mglyph.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/mmultiscripts.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/ms.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/mtable.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/autoload/multiline.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/config.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/CombDiacritMarks.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/fontdata-extra.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/fonts/TeX/fontdata.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/mathjax/jax/output/SVG/jax.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/move_outline.js\', \'lib/python3.6/site-packages/spyder/utils/help/js/utils.js\', \'lib/python3.6/site-packages/spyder/utils/help/sphinxify.py\', \'lib/python3.6/site-packages/spyder/utils/help/static/css/default.css\', \'lib/python3.6/site-packages/spyder/utils/help/static/css/pygments.css\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/collapse_expand.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/debug-continue.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/debug-step-in.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/debug-step-out.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/debug-step-over.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/spyder-hello-docstring.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/spyder-nice-docstring-rendering.png\', \'lib/python3.6/site-packages/spyder/utils/help/static/images/spyder-sympy-example.png\', \'lib/python3.6/site-packages/spyder/utils/help/templates/layout.html\', \'lib/python3.6/site-packages/spyder/utils/help/templates/usage.html\', \'lib/python3.6/site-packages/spyder/utils/help/templates/warning.html\', \'lib/python3.6/site-packages/spyder/utils/help/tutorial.rst\', \'lib/python3.6/site-packages/spyder/utils/icon_manager.py\', \'lib/python3.6/site-packages/spyder/utils/inputhooks.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/docstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/fallback_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/jedi_patch.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/jedi_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/module_completion.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/plugin_client.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/plugin_server.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/rope_patch.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/rope_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/docstrings.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/fallback_plugin.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/jedi_patch.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/jedi_plugin.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/manager.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/module_completion.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/plugin_client.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/plugin_server.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/rope_patch.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/rope_plugin.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/__pycache__/test_jedi_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/__pycache__/test_rope_plugin.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/test_jedi_plugin.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/test/test_rope_plugin.py\', \'lib/python3.6/site-packages/spyder/utils/introspection/utils.py\', \'lib/python3.6/site-packages/spyder/utils/iofuncs.py\', \'lib/python3.6/site-packages/spyder/utils/ipython/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/ipython/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/ipython/__pycache__/spyder_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/ipython/__pycache__/start_kernel.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/ipython/spyder_kernel.py\', \'lib/python3.6/site-packages/spyder/utils/ipython/start_kernel.py\', \'lib/python3.6/site-packages/spyder/utils/ipython/templates/blank.html\', \'lib/python3.6/site-packages/spyder/utils/ipython/templates/kernel_error.html\', \'lib/python3.6/site-packages/spyder/utils/ipython/templates/loading.html\', \'lib/python3.6/site-packages/spyder/utils/misc.py\', \'lib/python3.6/site-packages/spyder/utils/programs.py\', \'lib/python3.6/site-packages/spyder/utils/qthelpers.py\', \'lib/python3.6/site-packages/spyder/utils/site/__init__.py\', \'lib/python3.6/site-packages/spyder/utils/site/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/site/__pycache__/osx_app_site.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/site/__pycache__/sitecustomize.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/utils/site/osx_app_site.py\', \'lib/python3.6/site-packages/spyder/utils/site/sitecustomize.py\', \'lib/python3.6/site-packages/spyder/utils/sourcecode.py\', \'lib/python3.6/site-packages/spyder/utils/stringmatching.py\', \'lib/python3.6/site-packages/spyder/utils/syntaxhighlighters.py\', \'lib/python3.6/site-packages/spyder/utils/system.py\', \'lib/python3.6/site-packages/spyder/utils/tests/Big5.txt\', \'lib/python3.6/site-packages/spyder/utils/tests/KOI8-R.txt\', \'lib/python3.6/site-packages/spyder/utils/tests/ascii.txt\', \'lib/python3.6/site-packages/spyder/utils/tests/data/example.css\', \'lib/python3.6/site-packages/spyder/utils/tests/data/example.html\', \'lib/python3.6/site-packages/spyder/utils/tests/utf-8.txt\', \'lib/python3.6/site-packages/spyder/utils/tests/windows-1252.txt\', \'lib/python3.6/site-packages/spyder/utils/vcs.py\', \'lib/python3.6/site-packages/spyder/utils/windows.py\', \'lib/python3.6/site-packages/spyder/widgets/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/arraybuilder.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/browser.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/calltip.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/colors.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/comboboxes.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/dependencies.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/editor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/editortools.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/explorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/fileswitcher.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/findinfiles.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/findreplace.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/formlayout.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/helperwidgets.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/internalshell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/mixins.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/onecolumntree.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/pathmanager.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/pydocgui.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/shell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/status.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/__pycache__/tabs.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/arraybuilder.py\', \'lib/python3.6/site-packages/spyder/widgets/browser.py\', \'lib/python3.6/site-packages/spyder/widgets/calltip.py\', \'lib/python3.6/site-packages/spyder/widgets/colors.py\', \'lib/python3.6/site-packages/spyder/widgets/comboboxes.py\', \'lib/python3.6/site-packages/spyder/widgets/dependencies.py\', \'lib/python3.6/site-packages/spyder/widgets/editor.py\', \'lib/python3.6/site-packages/spyder/widgets/editortools.py\', \'lib/python3.6/site-packages/spyder/widgets/explorer.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/baseshell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/introspection.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/monitor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/pythonshell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/__pycache__/systemshell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/baseshell.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/introspection.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/monitor.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/pythonshell.py\', \'lib/python3.6/site-packages/spyder/widgets/externalshell/systemshell.py\', \'lib/python3.6/site-packages/spyder/widgets/fileswitcher.py\', \'lib/python3.6/site-packages/spyder/widgets/findinfiles.py\', \'lib/python3.6/site-packages/spyder/widgets/findreplace.py\', \'lib/python3.6/site-packages/spyder/widgets/formlayout.py\', \'lib/python3.6/site-packages/spyder/widgets/helperwidgets.py\', \'lib/python3.6/site-packages/spyder/widgets/internalshell.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/client.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/control.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/debugging.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/help.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/namespacebrowser.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/__pycache__/shell.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/client.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/control.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/debugging.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/help.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/namespacebrowser.py\', \'lib/python3.6/site-packages/spyder/widgets/ipythonconsole/shell.py\', \'lib/python3.6/site-packages/spyder/widgets/mixins.py\', \'lib/python3.6/site-packages/spyder/widgets/onecolumntree.py\', \'lib/python3.6/site-packages/spyder/widgets/pathmanager.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/__pycache__/configdialog.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/__pycache__/explorer.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/__pycache__/projectdialog.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/config.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/configdialog.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/explorer.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/projectdialog.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/type/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/projects/type/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/type/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/projects/type/python.py\', \'lib/python3.6/site-packages/spyder/widgets/pydocgui.py\', \'lib/python3.6/site-packages/spyder/widgets/shell.py\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__pycache__/codeeditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__pycache__/kill_ring.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/__pycache__/terminal.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/base.py\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/codeeditor.py\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/kill_ring.py\', \'lib/python3.6/site-packages/spyder/widgets/sourcecode/terminal.py\', \'lib/python3.6/site-packages/spyder/widgets/status.py\', \'lib/python3.6/site-packages/spyder/widgets/tabs.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__init__.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/arrayeditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/collectionseditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/dataframeeditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/importwizard.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/namespacebrowser.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/objecteditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/texteditor.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/arrayeditor.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/collectionseditor.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/dataframeeditor.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/importwizard.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/namespacebrowser.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/objecteditor.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/texteditor.py\', \'lib/python3.6/site-packages/spyder/widgets/variableexplorer/utils.py\', \'lib/python3.6/site-packages/spyder/workers/__init__.py\', \'lib/python3.6/site-packages/spyder/workers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/workers/__pycache__/updates.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder/workers/updates.py\', \'lib/python3.6/site-packages/spyder_breakpoints/__init__.py\', \'lib/python3.6/site-packages/spyder_breakpoints/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_breakpoints/__pycache__/breakpoints.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_breakpoints/breakpoints.py\', \'lib/python3.6/site-packages/spyder_breakpoints/locale/es/LC_MESSAGES/breakpoints.mo\', \'lib/python3.6/site-packages/spyder_breakpoints/locale/fr/LC_MESSAGES/breakpoints.mo\', \'lib/python3.6/site-packages/spyder_breakpoints/locale/pt_BR/LC_MESSAGES/breakpoints.mo\', \'lib/python3.6/site-packages/spyder_breakpoints/locale/ru/LC_MESSAGES/breakpoints.mo\', \'lib/python3.6/site-packages/spyder_breakpoints/widgets/__init__.py\', \'lib/python3.6/site-packages/spyder_breakpoints/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_breakpoints/widgets/__pycache__/breakpointsgui.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_breakpoints/widgets/breakpointsgui.py\', \'lib/python3.6/site-packages/spyder_io_dcm/__init__.py\', \'lib/python3.6/site-packages/spyder_io_dcm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_io_dcm/__pycache__/dcm.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_io_dcm/dcm.py\', \'lib/python3.6/site-packages/spyder_io_hdf5/__init__.py\', \'lib/python3.6/site-packages/spyder_io_hdf5/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_io_hdf5/__pycache__/hdf5.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_io_hdf5/hdf5.py\', \'lib/python3.6/site-packages/spyder_profiler/__init__.py\', \'lib/python3.6/site-packages/spyder_profiler/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_profiler/__pycache__/profiler.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_profiler/images/profiler.png\', \'lib/python3.6/site-packages/spyder_profiler/locale/es/LC_MESSAGES/profiler.mo\', \'lib/python3.6/site-packages/spyder_profiler/locale/fr/LC_MESSAGES/profiler.mo\', \'lib/python3.6/site-packages/spyder_profiler/locale/pt_BR/LC_MESSAGES/profiler.mo\', \'lib/python3.6/site-packages/spyder_profiler/locale/ru/LC_MESSAGES/profiler.mo\', \'lib/python3.6/site-packages/spyder_profiler/profiler.py\', \'lib/python3.6/site-packages/spyder_profiler/widgets/__init__.py\', \'lib/python3.6/site-packages/spyder_profiler/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_profiler/widgets/__pycache__/profilergui.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_profiler/widgets/profilergui.py\', \'lib/python3.6/site-packages/spyder_pylint/__init__.py\', \'lib/python3.6/site-packages/spyder_pylint/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_pylint/__pycache__/pylint.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_pylint/images/pylint.png\', \'lib/python3.6/site-packages/spyder_pylint/locale/es/LC_MESSAGES/pylint.mo\', \'lib/python3.6/site-packages/spyder_pylint/locale/fr/LC_MESSAGES/pylint.mo\', \'lib/python3.6/site-packages/spyder_pylint/locale/pt_BR/LC_MESSAGES/pylint.mo\', \'lib/python3.6/site-packages/spyder_pylint/locale/ru/LC_MESSAGES/pylint.mo\', \'lib/python3.6/site-packages/spyder_pylint/pylint.py\', \'lib/python3.6/site-packages/spyder_pylint/widgets/__init__.py\', \'lib/python3.6/site-packages/spyder_pylint/widgets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_pylint/widgets/__pycache__/pylintgui.cpython-36.pyc\', \'lib/python3.6/site-packages/spyder_pylint/widgets/pylintgui.py\', \'share/applications/spyder3.desktop\', \'share/pixmaps/spyder3.png\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/spyder-3.1.2-py36_0\', type=1))", "defaults::sqlalchemy-1.1.5-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'2b1c7e9e879c014e542374697f471e00\', name=\'sqlalchemy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.1.5\', fn=\'sqlalchemy-1.1.5-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sqlalchemy-1.1.5-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/SQLAlchemy-1.1.5-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/SQLAlchemy-1.1.5-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/SQLAlchemy-1.1.5-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/SQLAlchemy-1.1.5-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/SQLAlchemy-1.1.5-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/sqlalchemy/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/exc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/inspection.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/pool.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/processors.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/schema.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/connectors/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/connectors/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/connectors/__pycache__/mxodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/connectors/__pycache__/pyodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/connectors/__pycache__/zxJDBC.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/connectors/mxodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/connectors/pyodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/connectors/zxJDBC.py\', \'lib/python3.6/site-packages/sqlalchemy/cprocessors.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sqlalchemy/cresultproxy.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sqlalchemy/cutils.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/sqlalchemy/databases/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/databases/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/__pycache__/fdb.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/__pycache__/kinterbasdb.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/fdb.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/firebird/kinterbasdb.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/adodbapi.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/information_schema.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/mxodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/pymssql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/pyodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/__pycache__/zxjdbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/adodbapi.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/information_schema.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/mxodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/pymssql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/pyodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mssql/zxjdbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/cymysql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/enumerated.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/gaerdbms.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/mysqlconnector.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/mysqldb.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/oursql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/pymysql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/pyodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/reflection.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/types.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/__pycache__/zxjdbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/cymysql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/enumerated.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/gaerdbms.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/json.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/mysqlconnector.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/mysqldb.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/oursql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/pymysql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/pyodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/reflection.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/types.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/mysql/zxjdbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/__pycache__/cx_oracle.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/__pycache__/zxjdbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/cx_oracle.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/oracle/zxjdbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/array.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/dml.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ext.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/hstore.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/json.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pg8000.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/psycopg2cffi.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pygresql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/pypostgresql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/ranges.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/__pycache__/zxjdbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/array.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/dml.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/ext.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/hstore.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/json.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/pg8000.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/psycopg2.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/psycopg2cffi.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/pygresql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/pypostgresql.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/ranges.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/postgresql/zxjdbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/__pycache__/pysqlcipher.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/__pycache__/pysqlite.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/pysqlcipher.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sqlite/pysqlite.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__pycache__/mxodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__pycache__/pyodbc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/__pycache__/pysybase.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/base.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/mxodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/pyodbc.py\', \'lib/python3.6/site-packages/sqlalchemy/dialects/sybase/pysybase.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/default.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/reflection.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/result.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/strategies.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/threadlocal.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/url.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/engine/base.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/default.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/interfaces.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/reflection.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/result.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/strategies.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/threadlocal.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/url.py\', \'lib/python3.6/site-packages/sqlalchemy/engine/util.py\', \'lib/python3.6/site-packages/sqlalchemy/event/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/attr.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/legacy.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/__pycache__/registry.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/event/api.py\', \'lib/python3.6/site-packages/sqlalchemy/event/attr.py\', \'lib/python3.6/site-packages/sqlalchemy/event/base.py\', \'lib/python3.6/site-packages/sqlalchemy/event/legacy.py\', \'lib/python3.6/site-packages/sqlalchemy/event/registry.py\', \'lib/python3.6/site-packages/sqlalchemy/events.py\', \'lib/python3.6/site-packages/sqlalchemy/exc.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/associationproxy.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/automap.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/baked.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/horizontal_shard.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/hybrid.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/indexable.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/instrumentation.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/mutable.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/orderinglist.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/__pycache__/serializer.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/associationproxy.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/automap.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/baked.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/compiler.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/__pycache__/clsregistry.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/api.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/base.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/declarative/clsregistry.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/horizontal_shard.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/hybrid.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/indexable.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/instrumentation.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/mutable.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/orderinglist.py\', \'lib/python3.6/site-packages/sqlalchemy/ext/serializer.py\', \'lib/python3.6/site-packages/sqlalchemy/inspection.py\', \'lib/python3.6/site-packages/sqlalchemy/interfaces.py\', \'lib/python3.6/site-packages/sqlalchemy/log.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/attributes.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/dependency.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/deprecated_interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/descriptor_props.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/dynamic.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/evaluator.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/events.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/exc.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/identity.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/instrumentation.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/interfaces.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/loading.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/mapper.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/path_registry.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/persistence.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/properties.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/query.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/relationships.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/scoping.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/state.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/strategies.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/strategy_options.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/sync.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/unitofwork.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/orm/attributes.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/base.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/collections.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/dependency.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/deprecated_interfaces.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/descriptor_props.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/dynamic.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/evaluator.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/events.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/exc.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/identity.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/instrumentation.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/interfaces.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/loading.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/mapper.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/path_registry.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/persistence.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/properties.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/query.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/relationships.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/scoping.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/session.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/state.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/strategies.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/strategy_options.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/sync.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/unitofwork.py\', \'lib/python3.6/site-packages/sqlalchemy/orm/util.py\', \'lib/python3.6/site-packages/sqlalchemy/pool.py\', \'lib/python3.6/site-packages/sqlalchemy/processors.py\', \'lib/python3.6/site-packages/sqlalchemy/schema.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/annotation.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/compiler.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/crud.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/ddl.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/default_comparator.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/dml.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/elements.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/expression.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/naming.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/operators.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/schema.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/selectable.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/sqltypes.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/type_api.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/__pycache__/visitors.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/sql/annotation.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/base.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/compiler.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/crud.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/ddl.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/default_comparator.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/dml.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/elements.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/expression.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/functions.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/naming.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/operators.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/schema.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/selectable.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/sqltypes.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/type_api.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/util.py\', \'lib/python3.6/site-packages/sqlalchemy/sql/visitors.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/assertions.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/assertsql.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/config.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/engines.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/entities.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/exclusions.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/fixtures.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/mock.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/pickleable.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/profiling.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/provision.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/replay_fixture.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/requirements.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/runner.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/schema.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/__pycache__/warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/assertions.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/assertsql.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/config.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/engines.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/entities.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/exclusions.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/fixtures.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/mock.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/pickleable.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__pycache__/bootstrap.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__pycache__/noseplugin.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__pycache__/plugin_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/__pycache__/pytestplugin.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/bootstrap.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/noseplugin.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/plugin_base.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/plugin/pytestplugin.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/profiling.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/provision.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/replay_fixture.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/requirements.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/runner.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/schema.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_ddl.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_dialect.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_insert.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_reflection.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_results.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_select.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_sequence.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_types.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/__pycache__/test_update_delete.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_ddl.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_dialect.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_insert.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_reflection.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_results.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_select.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_sequence.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_types.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/suite/test_update_delete.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/util.py\', \'lib/python3.6/site-packages/sqlalchemy/testing/warnings.py\', \'lib/python3.6/site-packages/sqlalchemy/types.py\', \'lib/python3.6/site-packages/sqlalchemy/util/__init__.py\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/deprecations.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/langhelpers.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/queue.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/__pycache__/topological.cpython-36.pyc\', \'lib/python3.6/site-packages/sqlalchemy/util/_collections.py\', \'lib/python3.6/site-packages/sqlalchemy/util/compat.py\', \'lib/python3.6/site-packages/sqlalchemy/util/deprecations.py\', \'lib/python3.6/site-packages/sqlalchemy/util/langhelpers.py\', \'lib/python3.6/site-packages/sqlalchemy/util/queue.py\', \'lib/python3.6/site-packages/sqlalchemy/util/topological.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sqlalchemy-1.1.5-py36_0\', type=1))", "defaults::sqlite-3.13.0-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'Public-Domain (http://www.sqlite.org/copyright.html)\', license_family=\'Public-Domain\', md5=\'ceb2d63b0dc2ec8a2e1da9378f07ab98\', name=\'sqlite\', platform=\'linux\', subdir=\'linux-64\', version=\'3.13.0\', fn=\'sqlite-3.13.0-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sqlite-3.13.0-0.tar.bz2\', files=(\'bin/sqlite3\', \'include/sqlite3.h\', \'include/sqlite3ext.h\', \'lib/libsqlite3.a\', \'lib/libsqlite3.la\', \'lib/libsqlite3.so\', \'lib/libsqlite3.so.0\', \'lib/libsqlite3.so.0.8.6\', \'lib/pkgconfig/sqlite3.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sqlite-3.13.0-0\', type=1))", "defaults::statsmodels-0.6.1-np111py36_1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'np111py36_1\', build_number=1, depends=(\'numpy 1.11*\', \'pandas\', \'patsy\', \'python 3.6*\', \'scipy\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'cd83fcbf96be488dd084aff7c4133896\', name=\'statsmodels\', platform=\'linux\', subdir=\'linux-64\', version=\'0.6.1\', fn=\'statsmodels-0.6.1-np111py36_1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/statsmodels-0.6.1-np111py36_1.tar.bz2\', files=(\'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/statsmodels-0.6.1-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/statsmodels/__init__.py\', \'lib/python3.6/site-packages/statsmodels/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/__pycache__/version.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/api.py\', \'lib/python3.6/site-packages/statsmodels/base/__init__.py\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/_constraints.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/_penalties.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/covtype.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/l1_cvxopt.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/l1_slsqp.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/l1_solvers_common.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/optimizer.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/__pycache__/wrapper.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/_constraints.py\', \'lib/python3.6/site-packages/statsmodels/base/_penalties.py\', \'lib/python3.6/site-packages/statsmodels/base/covtype.py\', \'lib/python3.6/site-packages/statsmodels/base/data.py\', \'lib/python3.6/site-packages/statsmodels/base/l1_cvxopt.py\', \'lib/python3.6/site-packages/statsmodels/base/l1_slsqp.py\', \'lib/python3.6/site-packages/statsmodels/base/l1_solvers_common.py\', \'lib/python3.6/site-packages/statsmodels/base/model.py\', \'lib/python3.6/site-packages/statsmodels/base/optimizer.py\', \'lib/python3.6/site-packages/statsmodels/base/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/base/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/tests/__pycache__/test_generic_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/tests/__pycache__/test_optimize.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/tests/__pycache__/test_shrink_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/base/tests/test_data.py\', \'lib/python3.6/site-packages/statsmodels/base/tests/test_generic_methods.py\', \'lib/python3.6/site-packages/statsmodels/base/tests/test_optimize.py\', \'lib/python3.6/site-packages/statsmodels/base/tests/test_shrink_pickle.py\', \'lib/python3.6/site-packages/statsmodels/base/wrapper.py\', \'lib/python3.6/site-packages/statsmodels/compat/__init__.py\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/collections.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/counter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/ordereddict.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/__pycache__/scipy.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/collections.py\', \'lib/python3.6/site-packages/statsmodels/compat/counter.py\', \'lib/python3.6/site-packages/statsmodels/compat/numpy.py\', \'lib/python3.6/site-packages/statsmodels/compat/ordereddict.py\', \'lib/python3.6/site-packages/statsmodels/compat/python.py\', \'lib/python3.6/site-packages/statsmodels/compat/scipy.py\', \'lib/python3.6/site-packages/statsmodels/compat/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/compat/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/tests/__pycache__/test_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/tests/__pycache__/test_itercompat.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/tests/__pycache__/test_scipy_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/compat/tests/test_collections.py\', \'lib/python3.6/site-packages/statsmodels/compat/tests/test_itercompat.py\', \'lib/python3.6/site-packages/statsmodels/compat/tests/test_scipy_compat.py\', \'lib/python3.6/site-packages/statsmodels/datasets/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/__pycache__/template_data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/anes96/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/anes96/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/anes96/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/anes96/anes96.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/anes96/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/cancer/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/cancer/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/cancer/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/cancer/cancer.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/cancer/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/ccard/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/ccard/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/ccard/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/ccard/ccard.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/ccard/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/co2/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/co2/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/co2/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/co2/co2.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/co2/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/committee/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/committee/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/committee/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/committee/committee.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/committee/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/copper/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/copper/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/copper/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/copper/copper.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/copper/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/cpunish/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/cpunish/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/cpunish/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/cpunish/cpunish.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/cpunish/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/elnino/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/elnino/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/elnino/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/elnino/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/elnino/elnino.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/engel/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/engel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/engel/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/engel/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/engel/engel.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/fair/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/fair/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/fair/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/fair/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/fair/fair.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/grunfeld/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/grunfeld/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/grunfeld/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/grunfeld/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/grunfeld/grunfeld.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/heart/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/heart/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/heart/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/heart/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/heart/heart.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/longley/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/longley/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/longley/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/longley/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/longley/longley.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/macrodata.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/macrodata/macrodata.dta\', \'lib/python3.6/site-packages/statsmodels/datasets/modechoice/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/modechoice/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/modechoice/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/modechoice/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/modechoice/modechoice.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/nile/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/nile/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/nile/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/nile/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/nile/nile.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/randhie/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/randhie/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/randhie/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/randhie/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/randhie/randhie.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/scotland/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/scotland/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/scotland/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/scotland/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/scotland/scotvote.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/spector/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/spector/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/spector/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/spector/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/spector/spector.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/stackloss/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/stackloss/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/stackloss/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/stackloss/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/stackloss/stackloss.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/star98/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/star98/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/star98/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/star98/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/star98/star98.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/statecrime/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/statecrime/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/statecrime/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/statecrime/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/statecrime/statecrime.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/strikes/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/strikes/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/strikes/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/strikes/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/strikes/strikes.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/sunspots/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/sunspots/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/sunspots/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/sunspots/data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/sunspots/sunspots.csv\', \'lib/python3.6/site-packages/statsmodels/datasets/template_data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,csv,car,Duncan.csv.zip\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,datasets.csv.zip\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/raw.github.com,vincentarelbundock,Rdatasets,master,doc,car,rst,Duncan.rst.zip\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/test_data.py\', \'lib/python3.6/site-packages/statsmodels/datasets/tests/test_utils.py\', \'lib/python3.6/site-packages/statsmodels/datasets/utils.py\', \'lib/python3.6/site-packages/statsmodels/discrete/__init__.py\', \'lib/python3.6/site-packages/statsmodels/discrete/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/__pycache__/discrete_margins.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/__pycache__/discrete_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/discrete_margins.py\', \'lib/python3.6/site-packages/statsmodels/discrete/discrete_model.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/__pycache__/test_constrained.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/__pycache__/test_discrete.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/__pycache__/test_sandwich_cov.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__pycache__/results_count_robust_cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__pycache__/results_discrete.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__pycache__/results_glm_logit_constrained.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/__pycache__/results_poisson_constrained.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/mn_logit_summary.txt\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/mnlogit_resid.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/nbinom_resids.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/phat_mnlogit.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/poisson_resid.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/predict_prob_poisson.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/results_count_robust_cluster.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/results_discrete.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/results_glm_logit_constrained.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/results_poisson_constrained.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/ships.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/yhat_mnlogit.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/results/yhat_poisson.csv\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/test_constrained.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/test_discrete.py\', \'lib/python3.6/site-packages/statsmodels/discrete/tests/test_sandwich_cov.py\', \'lib/python3.6/site-packages/statsmodels/distributions/__init__.py\', \'lib/python3.6/site-packages/statsmodels/distributions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/__pycache__/edgeworth.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/__pycache__/empirical_distribution.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/__pycache__/mixture_rvs.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/edgeworth.py\', \'lib/python3.6/site-packages/statsmodels/distributions/empirical_distribution.py\', \'lib/python3.6/site-packages/statsmodels/distributions/mixture_rvs.py\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/__pycache__/test_ecdf.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/__pycache__/test_edgeworth.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/__pycache__/test_mixture.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/test_ecdf.py\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/test_edgeworth.py\', \'lib/python3.6/site-packages/statsmodels/distributions/tests/test_mixture.py\', \'lib/python3.6/site-packages/statsmodels/duration/__init__.py\', \'lib/python3.6/site-packages/statsmodels/duration/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/__pycache__/hazard_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/hazard_regression.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__pycache__/phreg_gentests.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__pycache__/survival_enet_r_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__pycache__/survival_r_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/__pycache__/test_phreg.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/phreg_gentests.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/survival_data_1000_10.csv\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/survival_data_100_5.csv\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/survival_data_20_1.csv\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/survival_data_50_1.csv\', \'lib/python3.6/site-packages/statsmodels/duration/tests/results/survival_data_50_2.csv\', \'lib/python3.6/site-packages/statsmodels/duration/tests/survival_enet_r_results.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/survival_r_results.py\', \'lib/python3.6/site-packages/statsmodels/duration/tests/test_phreg.py\', \'lib/python3.6/site-packages/statsmodels/emplike/__init__.py\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/aft_el.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/descriptive.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/elanova.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/elregress.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/koul_and_mc.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/__pycache__/originregress.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/aft_el.py\', \'lib/python3.6/site-packages/statsmodels/emplike/api.py\', \'lib/python3.6/site-packages/statsmodels/emplike/descriptive.py\', \'lib/python3.6/site-packages/statsmodels/emplike/elanova.py\', \'lib/python3.6/site-packages/statsmodels/emplike/elregress.py\', \'lib/python3.6/site-packages/statsmodels/emplike/koul_and_mc.py\', \'lib/python3.6/site-packages/statsmodels/emplike/originregress.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/test_aft.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/test_anova.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/test_descriptive.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/test_origin.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/results/__pycache__/el_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/results/el_results.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/test_aft.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/test_anova.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/test_descriptive.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/test_origin.py\', \'lib/python3.6/site-packages/statsmodels/emplike/tests/test_regression.py\', \'lib/python3.6/site-packages/statsmodels/formula/__init__.py\', \'lib/python3.6/site-packages/statsmodels/formula/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/formula/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/formula/__pycache__/formulatools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/formula/api.py\', \'lib/python3.6/site-packages/statsmodels/formula/formulatools.py\', \'lib/python3.6/site-packages/statsmodels/formula/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/formula/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/formula/tests/__pycache__/test_formula.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/formula/tests/test_formula.py\', \'lib/python3.6/site-packages/statsmodels/genmod/__init__.py\', \'lib/python3.6/site-packages/statsmodels/genmod/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/__pycache__/cov_struct.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/__pycache__/generalized_estimating_equations.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/__pycache__/generalized_linear_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/api.py\', \'lib/python3.6/site-packages/statsmodels/genmod/cov_struct.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/__init__.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/__pycache__/family.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/__pycache__/links.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/__pycache__/varfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/family.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/links.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/tests/__pycache__/test_link.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/families/tests/test_link.py\', \'lib/python3.6/site-packages/statsmodels/genmod/families/varfuncs.py\', \'lib/python3.6/site-packages/statsmodels/genmod/generalized_estimating_equations.py\', \'lib/python3.6/site-packages/statsmodels/genmod/generalized_linear_model.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/gee_categorical_simulation_check.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/gee_gaussian_simulation_check.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/gee_poisson_simulation_check.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/gee_simulation_check.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/test_gee.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/__pycache__/test_glm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/gee_categorical_simulation_check.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/gee_gaussian_simulation_check.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/gee_poisson_simulation_check.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/gee_simulation_check.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/__pycache__/gee_generate_tests.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/__pycache__/glm_test_resids.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/__pycache__/results_glm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/epil.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_generate_tests.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_linear_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_logistic_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_nested_linear_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_nominal_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_ordinal_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/gee_poisson_1.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/glm_test_resids.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/igaussident_resids.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/inv_gaussian.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/iris.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/medparlogresids.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/results_glm.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/stata_cancer_glm.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/stata_lbw_glm.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/results/stata_medpar1_glm.csv\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/test_gee.py\', \'lib/python3.6/site-packages/statsmodels/genmod/tests/test_glm.py\', \'lib/python3.6/site-packages/statsmodels/graphics/__init__.py\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/boxplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/correlation.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/dotplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/factorplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/functional.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/gofplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/mosaicplot.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/plot_grids.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/plottools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/regressionplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/tsaplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/tukeyplot.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/api.py\', \'lib/python3.6/site-packages/statsmodels/graphics/boxplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/correlation.py\', \'lib/python3.6/site-packages/statsmodels/graphics/dotplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/factorplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/functional.py\', \'lib/python3.6/site-packages/statsmodels/graphics/gofplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/mosaicplot.py\', \'lib/python3.6/site-packages/statsmodels/graphics/plot_grids.py\', \'lib/python3.6/site-packages/statsmodels/graphics/plottools.py\', \'lib/python3.6/site-packages/statsmodels/graphics/regressionplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_boxplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_correlation.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_dotplot.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_factorplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_functional.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_gofplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_mosaicplot.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_regressionplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/__pycache__/test_tsaplots.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_boxplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_correlation.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_dotplot.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_factorplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_functional.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_gofplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_mosaicplot.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_regressionplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tests/test_tsaplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tsaplots.py\', \'lib/python3.6/site-packages/statsmodels/graphics/tukeyplot.py\', \'lib/python3.6/site-packages/statsmodels/graphics/utils.py\', \'lib/python3.6/site-packages/statsmodels/info.py\', \'lib/python3.6/site-packages/statsmodels/interface/__init__.py\', \'lib/python3.6/site-packages/statsmodels/interface/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__init__.py\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/foreign.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/smpickle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/stata_summary_examples.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/summary.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/summary2.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/__pycache__/tableformatting.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/api.py\', \'lib/python3.6/site-packages/statsmodels/iolib/foreign.py\', \'lib/python3.6/site-packages/statsmodels/iolib/smpickle.py\', \'lib/python3.6/site-packages/statsmodels/iolib/stata_summary_examples.py\', \'lib/python3.6/site-packages/statsmodels/iolib/summary.py\', \'lib/python3.6/site-packages/statsmodels/iolib/summary2.py\', \'lib/python3.6/site-packages/statsmodels/iolib/table.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tableformatting.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_foreign.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_pickle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_summary.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_summary_old.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_table.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/__pycache__/test_table_econpy.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/__pycache__/macrodata.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/data_missing.dta\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/macrodata.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/results/time_series_examples.dta\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_foreign.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_pickle.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_summary.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_summary_old.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_table.py\', \'lib/python3.6/site-packages/statsmodels/iolib/tests/test_table_econpy.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__init__.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/count.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/nonlinls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/tmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/__pycache__/try_mlecov.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/api.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/count.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/nonlinls.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/results_tmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/test_generic_mle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/test_poisson.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/test_tarma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/__pycache__/test_tmodel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/results_tmodel.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/test_generic_mle.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/test_poisson.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/test_tarma.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tests/test_tmodel.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/tmodel.py\', \'lib/python3.6/site-packages/statsmodels/miscmodels/try_mlecov.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__init__.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/_kernel_base.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/bandwidths.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/kde.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/kdetools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/kernel_density.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/kernel_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/smoothers_lowess.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/__pycache__/smoothers_lowess_old.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/_kernel_base.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/_smoothers_lowess.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/statsmodels/nonparametric/api.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/bandwidths.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/kde.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/kdetools.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/kernel_density.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/kernel_regression.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/kernels.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/linbin.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/statsmodels/nonparametric/smoothers_lowess.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/smoothers_lowess_old.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_bandwidths.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_kde.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_kernel_density.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_kernel_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/__pycache__/test_lowess.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/results_kde.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/results_kde_fft.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/results_kde_univ_weights.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/results_kde_weights.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/results_kernel_regression.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/test_lowess_delta.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/test_lowess_frac.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/test_lowess_iter.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/results/test_lowess_simple.csv\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_bandwidths.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_kde.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_kernel_density.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_kernel_regression.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_kernels.py\', \'lib/python3.6/site-packages/statsmodels/nonparametric/tests/test_lowess.py\', \'lib/python3.6/site-packages/statsmodels/regression/__init__.py\', \'lib/python3.6/site-packages/statsmodels/regression/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/__pycache__/feasible_gls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/__pycache__/linear_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/__pycache__/mixed_linear_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/__pycache__/quantile_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/feasible_gls.py\', \'lib/python3.6/site-packages/statsmodels/regression/linear_model.py\', \'lib/python3.6/site-packages/statsmodels/regression/mixed_linear_model.py\', \'lib/python3.6/site-packages/statsmodels/regression/quantile_regression.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/generate_lasso.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/generate_lme.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/glmnet_r_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/lme_r_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/results_quantile_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_cov.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_glsar_gretl.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_glsar_stata.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_lme.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_quantile_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/test_robustcov.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/__pycache__/tests_predict.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/generate_lasso.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/generate_lme.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/glmnet_r_results.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/lme_r_results.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__pycache__/macro_gr_corc_stata.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__pycache__/results_grunfeld_ols_robust_cluster.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__pycache__/results_macro_ols_robust.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/__pycache__/results_regression.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lasso_data.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/leverage_influence_ols_nostars.txt\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme00.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme01.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme02.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme03.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme04.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme05.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme06.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme07.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme08.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme09.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme10.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/lme11.csv\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/macro_gr_corc_stata.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/results_grunfeld_ols_robust_cluster.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/results_macro_ols_robust.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results/results_regression.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/results_quantile_regression.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_cov.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_glsar_gretl.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_glsar_stata.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_lme.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_quantile_regression.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_regression.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/test_robustcov.py\', \'lib/python3.6/site-packages/statsmodels/regression/tests/tests_predict.py\', \'lib/python3.6/site-packages/statsmodels/resampling/__init__.py\', \'lib/python3.6/site-packages/statsmodels/resampling/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/__init__.py\', \'lib/python3.6/site-packages/statsmodels/robust/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/__pycache__/norms.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/__pycache__/robust_linear_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/__pycache__/scale.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/norms.py\', \'lib/python3.6/site-packages/statsmodels/robust/robust_linear_model.py\', \'lib/python3.6/site-packages/statsmodels/robust/scale.py\', \'lib/python3.6/site-packages/statsmodels/robust/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/robust/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/tests/__pycache__/test_rlm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/tests/__pycache__/test_scale.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/robust/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/tests/results/__pycache__/results_rlm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/robust/tests/results/results_rlm.py\', \'lib/python3.6/site-packages/statsmodels/robust/tests/test_rlm.py\', \'lib/python3.6/site-packages/statsmodels/robust/tests/test_scale.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/bspline.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/contrast_old.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/cox.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/descstats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/formula.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/gam.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/infotheo.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/km_class.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/mle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/multilinear.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/pca.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/rls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/survival.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/survival2.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/sysreg.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/__pycache__/utils_old.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/__pycache__/linalg_covmat.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/__pycache__/linalg_decomp_1.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/__pycache__/tsa.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/linalg_covmat.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/linalg_decomp_1.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/archive/tsa.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/bspline.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/contrast_old.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/cox.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/datarich/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/datarich/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/datarich/__pycache__/factormodels.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/datarich/factormodels.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/descstats.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/copula.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/estimators.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/extras.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/genpareto.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/gof_new.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/multivariate.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/mv_measures.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/mv_normal.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/otherdist.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/quantize.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/sppatch.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/transform_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/transformed.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/try_max.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/__pycache__/try_pot.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/copula.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/estimators.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/ex_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/ex_fitfr.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/ex_gof.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/ex_mvelliptical.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/ex_transf2.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/__pycache__/matchdist.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/ex_extras.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/ex_fitfr.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/ex_gof.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/ex_mvelliptical.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/ex_transf2.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/examples/matchdist.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/extras.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/genpareto.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/gof_new.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/multivariate.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/mv_measures.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/mv_normal.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/otherdist.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/quantize.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/sppatch.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/_est_fit.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/check_moments.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/distparams.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/test_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/test_multivariate.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/test_norm_expan.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/__pycache__/testtransf.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/_est_fit.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/check_moments.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/distparams.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/test_extras.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/test_multivariate.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/test_norm_expan.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/tests/testtransf.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/transform_functions.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/transformed.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/try_max.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/distributions/try_pot.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/formula.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/gam.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/infotheo.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/km_class.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/mcevaluate/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/mcevaluate/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/mcevaluate/__pycache__/arma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/mcevaluate/arma.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/mle.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/multilinear.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/densityorthopoly.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/dgp_examples.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/kde2.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/kdecovclass.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/kernel_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/kernels.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/smoothers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/__pycache__/testdata.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/densityorthopoly.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/dgp_examples.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/kde2.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/kdecovclass.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/kernel_extras.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/kernels.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/smoothers.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/testdata.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/ex_gam_am_new.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/ex_gam_new.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/ex_smoothers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/test_kernel_extras.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/__pycache__/test_smoothers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/ex_gam_am_new.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/ex_gam_new.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/ex_smoothers.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/test_kernel_extras.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/nonparametric/tests/test_smoothers.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/correlation_structures.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/mixed.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/panel_short.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/panelmod.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/random_panel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/sandwich_covariance.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/__pycache__/sandwich_covariance_generic.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/correlation_structures.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/mixed.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/panel_short.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/panelmod.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/random_panel.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/sandwich_covariance.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/sandwich_covariance_generic.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/tests/__pycache__/test_random_panel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/panel/tests/test_random_panel.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/pca.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/anova_nistcertified.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/ar_panel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/example_kernridge.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/gmm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/kernridgeregress_class.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/ols_anova_original.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/onewaygls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/penalized.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/predstd.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/runmnl.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/sympy_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/treewalkerclass.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/try_catdata.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/try_ols_anova.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/__pycache__/try_treewalker.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/anova_nistcertified.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/ar_panel.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/example_kernridge.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/gmm.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/kernridgeregress_class.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/ols_anova_original.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/onewaygls.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/penalized.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/predstd.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/runmnl.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/sympy_diff.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/results_gmm_griliches.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/results_gmm_griliches_iter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/results_gmm_poisson.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/results_ivreg2_griliches.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/test_gmm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/__pycache__/test_gmm_poisson.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/griliches76.dta\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/racd10data_with_transformed.csv\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/results_gmm_griliches.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/results_gmm_griliches_iter.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/results_gmm_poisson.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/results_ivreg2_griliches.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/test_gmm.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tests/test_gmm_poisson.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/tools.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/treewalkerclass.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/try_catdata.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/try_ols_anova.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/regression/try_treewalker.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/rls.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/contrast_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/diagnostic.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/ex_newtests.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/multicomp.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/runs.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/stats_dhuard.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/__pycache__/stats_mstats_short.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/contrast_tools.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/diagnostic.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/ex_newtests.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/multicomp.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/runs.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/stats_dhuard.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/stats_mstats_short.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/stats/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/survival.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/survival2.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/sysreg.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/datamlw.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/maketests_mlabwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/model_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/savervs.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/test_formula.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/test_gam.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/__pycache__/test_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/datamlw.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/maketests_mlabwrap.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/model_results.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/savervs.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/test_formula.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/test_gam.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tests/test_pca.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__pycache__/cross_val.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__pycache__/mctools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__pycache__/tools_pca.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/__pycache__/try_mctools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/cross_val.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/mctools.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/tools_pca.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tools/try_mctools.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__init__.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/diffusion.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/diffusion2.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/example_arma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/fftarma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/garch.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/movstat.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/try_arma_more.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/try_fi.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/try_var_convolve.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/__pycache__/varma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/diffusion.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/diffusion2.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/example_arma.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/fftarma.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/garch.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/movstat.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/try_arma_more.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/try_fi.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/try_var_convolve.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/tsa/varma.py\', \'lib/python3.6/site-packages/statsmodels/sandbox/utils_old.py\', \'lib/python3.6/site-packages/statsmodels/stats/__init__.py\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/adnorm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/anova.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/base.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/contrast.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/correlation_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/descriptivestats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/diagnostic.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/gof.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/inter_rater.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/lilliefors.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/moment_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/multicomp.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/multitest.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/multivariate_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/outliers_influence.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/power.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/proportion.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/sandwich_covariance.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/stattools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/tabledist.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/__pycache__/weightstats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/adnorm.py\', \'lib/python3.6/site-packages/statsmodels/stats/anova.py\', \'lib/python3.6/site-packages/statsmodels/stats/api.py\', \'lib/python3.6/site-packages/statsmodels/stats/base.py\', \'lib/python3.6/site-packages/statsmodels/stats/contrast.py\', \'lib/python3.6/site-packages/statsmodels/stats/correlation_tools.py\', \'lib/python3.6/site-packages/statsmodels/stats/descriptivestats.py\', \'lib/python3.6/site-packages/statsmodels/stats/diagnostic.py\', \'lib/python3.6/site-packages/statsmodels/stats/gof.py\', \'lib/python3.6/site-packages/statsmodels/stats/inter_rater.py\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/CH.r\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/LICENSE.txt\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/__init__.py\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/__pycache__/make_tbls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/__pycache__/qsturng_.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/make_tbls.py\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/qsturng_.py\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/tests/__pycache__/test_qsturng.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/tests/bootleg.dat\', \'lib/python3.6/site-packages/statsmodels/stats/libqsturng/tests/test_qsturng.py\', \'lib/python3.6/site-packages/statsmodels/stats/lilliefors.py\', \'lib/python3.6/site-packages/statsmodels/stats/moment_helpers.py\', \'lib/python3.6/site-packages/statsmodels/stats/multicomp.py\', \'lib/python3.6/site-packages/statsmodels/stats/multitest.py\', \'lib/python3.6/site-packages/statsmodels/stats/multivariate_tools.py\', \'lib/python3.6/site-packages/statsmodels/stats/outliers_influence.py\', \'lib/python3.6/site-packages/statsmodels/stats/power.py\', \'lib/python3.6/site-packages/statsmodels/stats/proportion.py\', \'lib/python3.6/site-packages/statsmodels/stats/sandwich_covariance.py\', \'lib/python3.6/site-packages/statsmodels/stats/stattools.py\', \'lib/python3.6/site-packages/statsmodels/stats/tabledist.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_anova.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_contrast.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_corrpsd.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_descriptivestats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_diagnostic.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_gof.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_groups_sw.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_inter_rater.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_moment_helpers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_multi.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_nonparametric.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_pairwise.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_panel_robustcov.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_power.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_proportion.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_qsturng.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_sandwich.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_statstools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_tost.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/__pycache__/test_weightstats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/__pycache__/results_panelrobust.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/__pycache__/results_power.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/__pycache__/results_proportion.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/bootleg.csv\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/influence_lsdiag_R.json\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/influence_measures_R.csv\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/influence_measures_bool_R.csv\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/results_panelrobust.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/results_power.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/results/results_proportion.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_anova.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_contrast.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_corrpsd.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_data.txt\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_descriptivestats.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_diagnostic.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_gof.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_groups_sw.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_inter_rater.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_moment_helpers.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_multi.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_nonparametric.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_pairwise.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_panel_robustcov.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_power.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_proportion.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_qsturng.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_sandwich.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_statstools.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_tost.py\', \'lib/python3.6/site-packages/statsmodels/stats/tests/test_weightstats.py\', \'lib/python3.6/site-packages/statsmodels/stats/weightstats.py\', \'lib/python3.6/site-packages/statsmodels/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tests/__pycache__/check_for_rpy.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tests/__pycache__/coverage_sm.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tests/__pycache__/rmodelwrap.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tests/check_for_rpy.py\', \'lib/python3.6/site-packages/statsmodels/tests/coverage_sm.py\', \'lib/python3.6/site-packages/statsmodels/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tests/results/cancer_resids.csv\', \'lib/python3.6/site-packages/statsmodels/tests/results/cancerdata.csv\', \'lib/python3.6/site-packages/statsmodels/tests/results/cancerident_resids.csv\', \'lib/python3.6/site-packages/statsmodels/tests/rmodelwrap.py\', \'lib/python3.6/site-packages/statsmodels/tools/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/catadd.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/dump2module.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/eval_measures.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/grouputils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/linalg.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/numdiff.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/print_version.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/rootfinding.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/sm_exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/transform_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/web.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/catadd.py\', \'lib/python3.6/site-packages/statsmodels/tools/compatibility.py\', \'lib/python3.6/site-packages/statsmodels/tools/data.py\', \'lib/python3.6/site-packages/statsmodels/tools/decorators.py\', \'lib/python3.6/site-packages/statsmodels/tools/dump2module.py\', \'lib/python3.6/site-packages/statsmodels/tools/eval_measures.py\', \'lib/python3.6/site-packages/statsmodels/tools/grouputils.py\', \'lib/python3.6/site-packages/statsmodels/tools/linalg.py\', \'lib/python3.6/site-packages/statsmodels/tools/numdiff.py\', \'lib/python3.6/site-packages/statsmodels/tools/parallel.py\', \'lib/python3.6/site-packages/statsmodels/tools/print_version.py\', \'lib/python3.6/site-packages/statsmodels/tools/rootfinding.py\', \'lib/python3.6/site-packages/statsmodels/tools/sm_exceptions.py\', \'lib/python3.6/site-packages/statsmodels/tools/testing.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_catadd.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_eval_measures.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_grouputils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_numdiff.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_rootfinding.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_transform_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/__pycache__/test_web.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_catadd.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_data.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_eval_measures.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_grouputils.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_numdiff.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_parallel.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_rootfinding.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_tools.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_transform_model.py\', \'lib/python3.6/site-packages/statsmodels/tools/tests/test_web.py\', \'lib/python3.6/site-packages/statsmodels/tools/tools.py\', \'lib/python3.6/site-packages/statsmodels/tools/transform_model.py\', \'lib/python3.6/site-packages/statsmodels/tools/web.py\', \'lib/python3.6/site-packages/statsmodels/tools/wrappers.py\', \'lib/python3.6/site-packages/statsmodels/tsa/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/adfvalues.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/ar_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/arima_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/arima_process.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/arma_mle.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/descriptivestats.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/mlemodel.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/seasonal.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/stattools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/tsatools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/varma_process.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/__pycache__/x13.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/adfvalues.py\', \'lib/python3.6/site-packages/statsmodels/tsa/api.py\', \'lib/python3.6/site-packages/statsmodels/tsa/ar_model.py\', \'lib/python3.6/site-packages/statsmodels/tsa/arima_model.py\', \'lib/python3.6/site-packages/statsmodels/tsa/arima_process.py\', \'lib/python3.6/site-packages/statsmodels/tsa/arma_mle.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/__pycache__/datetools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/__pycache__/tsa_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/datetools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/__pycache__/test_base.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/__pycache__/test_datetools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/test_base.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tests/test_datetools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/base/tsa_model.py\', \'lib/python3.6/site-packages/statsmodels/tsa/descriptivestats.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/bk_filter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/cf_filter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/filtertools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/__pycache__/hp_filter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/_utils.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/api.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/bk_filter.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/cf_filter.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/filtertools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/hp_filter.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/__pycache__/test_filters.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/results/__pycache__/filter_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/results/filter_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/filters/tests/test_filters.py\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/__pycache__/denton.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/denton.py\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/tests/__pycache__/test_denton.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/interp/tests/test_denton.py\', \'lib/python3.6/site-packages/statsmodels/tsa/kalmanf/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/kalmanf/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/kalmanf/__pycache__/kalmanfilter.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/kalmanf/kalman_loglike.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/statsmodels/tsa/kalmanf/kalmanfilter.py\', \'lib/python3.6/site-packages/statsmodels/tsa/mlemodel.py\', \'lib/python3.6/site-packages/statsmodels/tsa/seasonal.py\', \'lib/python3.6/site-packages/statsmodels/tsa/stattools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_adfuller_lag.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_ar.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_arima.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_arima_process.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_seasonal.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_stattools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_tsa_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/__pycache__/test_x13.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/ARMLEConstantPredict.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/AROLSConstantPredict.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/AROLSNoConstantPredict.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima111_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima111_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima111nc_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima111nc_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima112_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima112_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima112nc_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima112nc_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima211_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima211_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima211nc_css_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/arima211nc_results.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/datamlw_tls.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/make_arma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/results_ar.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/results_arima.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/results_arma.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/results_process.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/__pycache__/savedrvs.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima111_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima111_forecasts.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima111_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima111nc_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima111nc_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima112_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima112_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima112nc_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima112nc_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima211_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima211_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima211nc_css_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima211nc_results.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/arima212_forecast.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/datamlw_tls.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/make_arma.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/resids_css_c.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/resids_css_nc.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/resids_exact_c.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/resids_exact_nc.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_ar.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_ar_forecast_mle_dynamic.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_exog_forecasts_css.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_exog_forecasts_mle.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_forecasts.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_forecasts_all_css.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_forecasts_all_css_diff.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_forecasts_all_mle.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arima_forecasts_all_mle_diff.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arma.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_arma_forecasts.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_corrgram.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/results_process.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/savedrvs.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/y_arma_data.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/yhat_css_c.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/yhat_css_nc.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/yhat_exact_c.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/results/yhat_exact_nc.csv\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_adfuller_lag.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_ar.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_arima.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_arima_process.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_seasonal.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_stattools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_tsa_tools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tests/test_x13.py\', \'lib/python3.6/site-packages/statsmodels/tsa/tsatools.py\', \'lib/python3.6/site-packages/statsmodels/tsa/varma_process.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/api.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/dynamic.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/irf.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/output.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/plotting.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/svar_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/__pycache__/var_model.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/api.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e1.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e2.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e3.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e4.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e5.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/data/e6.dat\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/dynamic.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/irf.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/output.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/plotting.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/svar_model.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/__pycache__/example_svar.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/__pycache__/test_svar.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/__pycache__/test_var.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/example_svar.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__init__.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__pycache__/results_svar.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__pycache__/results_svar_st.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__pycache__/results_var.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/__pycache__/results_var_data.cpython-36.pyc\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/results_svar.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/results_svar_st.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/results_var.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/results_var_data.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/results/vars_results.npz\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/test_svar.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/tests/test_var.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/util.py\', \'lib/python3.6/site-packages/statsmodels/tsa/vector_ar/var_model.py\', \'lib/python3.6/site-packages/statsmodels/tsa/x13.py\', \'lib/python3.6/site-packages/statsmodels/version.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/statsmodels-0.6.1-np111py36_1\', type=1))", "defaults::sympy-1.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'mpmath >=0.19\', \'python 3.6*\'), license=\'3-clause BSD\', license_family=\'BSD\', md5=\'b813bd72048cd15bd22b733a40281eea\', name=\'sympy\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0\', fn=\'sympy-1.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/sympy-1.0-py36_0.tar.bz2\', files=(\'bin/isympy\', \'lib/python3.6/site-packages/sympy-1.0-py3.6.egg-info\', \'lib/python3.6/site-packages/sympy/__init__.py\', \'lib/python3.6/site-packages/sympy/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/__pycache__/abc.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/__pycache__/conftest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/__pycache__/galgebra.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/__pycache__/release.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/abc.py\', \'lib/python3.6/site-packages/sympy/assumptions/__init__.py\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/ask.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/ask_generated.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/assume.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/refine.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/satask.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/__pycache__/sathandlers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/ask.py\', \'lib/python3.6/site-packages/sympy/assumptions/ask_generated.py\', \'lib/python3.6/site-packages/sympy/assumptions/assume.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__init__.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/calculus.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/ntheory.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/order.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/__pycache__/sets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/calculus.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/common.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/matrices.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/ntheory.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/order.py\', \'lib/python3.6/site-packages/sympy/assumptions/handlers/sets.py\', \'lib/python3.6/site-packages/sympy/assumptions/refine.py\', \'lib/python3.6/site-packages/sympy/assumptions/satask.py\', \'lib/python3.6/site-packages/sympy/assumptions/sathandlers.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_assumptions_2.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_context.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_query.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_refine.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_satask.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/__pycache__/test_sathandlers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_assumptions_2.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_context.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_matrices.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_query.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_refine.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_satask.py\', \'lib/python3.6/site-packages/sympy/assumptions/tests/test_sathandlers.py\', \'lib/python3.6/site-packages/sympy/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/benchmarks/__pycache__/bench_meijerint.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/benchmarks/__pycache__/bench_symbench.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/benchmarks/bench_meijerint.py\', \'lib/python3.6/site-packages/sympy/benchmarks/bench_symbench.py\', \'lib/python3.6/site-packages/sympy/calculus/__init__.py\', \'lib/python3.6/site-packages/sympy/calculus/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/__pycache__/euler.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/__pycache__/finite_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/__pycache__/singularities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/euler.py\', \'lib/python3.6/site-packages/sympy/calculus/finite_diff.py\', \'lib/python3.6/site-packages/sympy/calculus/singularities.py\', \'lib/python3.6/site-packages/sympy/calculus/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/calculus/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/tests/__pycache__/test_euler.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/tests/__pycache__/test_finite_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/tests/__pycache__/test_singularities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/calculus/tests/test_euler.py\', \'lib/python3.6/site-packages/sympy/calculus/tests/test_finite_diff.py\', \'lib/python3.6/site-packages/sympy/calculus/tests/test_singularities.py\', \'lib/python3.6/site-packages/sympy/calculus/tests/test_util.py\', \'lib/python3.6/site-packages/sympy/calculus/util.py\', \'lib/python3.6/site-packages/sympy/categories/__init__.py\', \'lib/python3.6/site-packages/sympy/categories/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/__pycache__/baseclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/__pycache__/diagram_drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/baseclasses.py\', \'lib/python3.6/site-packages/sympy/categories/diagram_drawing.py\', \'lib/python3.6/site-packages/sympy/categories/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/categories/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/tests/__pycache__/test_baseclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/tests/__pycache__/test_drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/categories/tests/test_baseclasses.py\', \'lib/python3.6/site-packages/sympy/categories/tests/test_drawing.py\', \'lib/python3.6/site-packages/sympy/combinatorics/__init__.py\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/generators.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/graycode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/group_constructs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/named_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/partitions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/perm_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/permutations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/polyhedron.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/prufer.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/subsets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/tensor_can.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/testutil.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/generators.py\', \'lib/python3.6/site-packages/sympy/combinatorics/graycode.py\', \'lib/python3.6/site-packages/sympy/combinatorics/group_constructs.py\', \'lib/python3.6/site-packages/sympy/combinatorics/named_groups.py\', \'lib/python3.6/site-packages/sympy/combinatorics/partitions.py\', \'lib/python3.6/site-packages/sympy/combinatorics/perm_groups.py\', \'lib/python3.6/site-packages/sympy/combinatorics/permutations.py\', \'lib/python3.6/site-packages/sympy/combinatorics/polyhedron.py\', \'lib/python3.6/site-packages/sympy/combinatorics/prufer.py\', \'lib/python3.6/site-packages/sympy/combinatorics/subsets.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tensor_can.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_generators.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_graycode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_group_constructs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_named_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_partitions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_perm_groups.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_permutations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_polyhedron.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_prufer.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_subsets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_tensor_can.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_testutil.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_generators.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_graycode.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_group_constructs.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_named_groups.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_partitions.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_perm_groups.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_permutations.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_polyhedron.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_prufer.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_subsets.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_tensor_can.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_testutil.py\', \'lib/python3.6/site-packages/sympy/combinatorics/tests/test_util.py\', \'lib/python3.6/site-packages/sympy/combinatorics/testutil.py\', \'lib/python3.6/site-packages/sympy/combinatorics/util.py\', \'lib/python3.6/site-packages/sympy/concrete/__init__.py\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/delta.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/expr_with_intlimits.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/expr_with_limits.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/gosper.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/guess.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/products.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/__pycache__/summations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/delta.py\', \'lib/python3.6/site-packages/sympy/concrete/expr_with_intlimits.py\', \'lib/python3.6/site-packages/sympy/concrete/expr_with_limits.py\', \'lib/python3.6/site-packages/sympy/concrete/gosper.py\', \'lib/python3.6/site-packages/sympy/concrete/guess.py\', \'lib/python3.6/site-packages/sympy/concrete/products.py\', \'lib/python3.6/site-packages/sympy/concrete/summations.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/test_delta.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/test_gosper.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/test_guess.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/test_products.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/__pycache__/test_sums_products.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/concrete/tests/test_delta.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/test_gosper.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/test_guess.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/test_products.py\', \'lib/python3.6/site-packages/sympy/concrete/tests/test_sums_products.py\', \'lib/python3.6/site-packages/sympy/conftest.py\', \'lib/python3.6/site-packages/sympy/core/__init__.py\', \'lib/python3.6/site-packages/sympy/core/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/add.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/alphabets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/assumptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/basic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/containers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/coreerrors.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/evalf.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/evaluate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/expr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/exprtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/facts.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/function.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/logic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/mod.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/mul.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/multidimensional.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/operations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/power.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/relational.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/rules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/singleton.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/symbol.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/sympify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/__pycache__/trace.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/add.py\', \'lib/python3.6/site-packages/sympy/core/alphabets.py\', \'lib/python3.6/site-packages/sympy/core/assumptions.py\', \'lib/python3.6/site-packages/sympy/core/basic.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_arit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_assumptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_expand.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/__pycache__/bench_sympify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_arit.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_assumptions.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_basic.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_expand.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_numbers.py\', \'lib/python3.6/site-packages/sympy/core/benchmarks/bench_sympify.py\', \'lib/python3.6/site-packages/sympy/core/cache.py\', \'lib/python3.6/site-packages/sympy/core/compatibility.py\', \'lib/python3.6/site-packages/sympy/core/containers.py\', \'lib/python3.6/site-packages/sympy/core/core.py\', \'lib/python3.6/site-packages/sympy/core/coreerrors.py\', \'lib/python3.6/site-packages/sympy/core/decorators.py\', \'lib/python3.6/site-packages/sympy/core/evalf.py\', \'lib/python3.6/site-packages/sympy/core/evaluate.py\', \'lib/python3.6/site-packages/sympy/core/expr.py\', \'lib/python3.6/site-packages/sympy/core/exprtools.py\', \'lib/python3.6/site-packages/sympy/core/facts.py\', \'lib/python3.6/site-packages/sympy/core/function.py\', \'lib/python3.6/site-packages/sympy/core/logic.py\', \'lib/python3.6/site-packages/sympy/core/mod.py\', \'lib/python3.6/site-packages/sympy/core/mul.py\', \'lib/python3.6/site-packages/sympy/core/multidimensional.py\', \'lib/python3.6/site-packages/sympy/core/numbers.py\', \'lib/python3.6/site-packages/sympy/core/operations.py\', \'lib/python3.6/site-packages/sympy/core/power.py\', \'lib/python3.6/site-packages/sympy/core/relational.py\', \'lib/python3.6/site-packages/sympy/core/rules.py\', \'lib/python3.6/site-packages/sympy/core/singleton.py\', \'lib/python3.6/site-packages/sympy/core/symbol.py\', \'lib/python3.6/site-packages/sympy/core/sympify.py\', \'lib/python3.6/site-packages/sympy/core/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_args.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_arit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_assumptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_cache.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_complex.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_containers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_count_ops.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_diff.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_equal.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_eval.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_eval_power.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_evalf.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_evaluate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_expand.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_expr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_exprtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_facts.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_function.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_logic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_match.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_noncommutative.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_operations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_priority.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_relational.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_rules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_subs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_symbol.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_sympify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_trace.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_truediv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_var.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/__pycache__/test_wester.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/core/tests/test_args.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_arit.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_assumptions.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_basic.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_cache.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_compatibility.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_complex.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_containers.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_count_ops.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_diff.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_equal.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_eval.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_eval_power.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_evalf.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_evaluate.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_expand.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_expr.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_exprtools.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_facts.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_function.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_logic.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_match.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_noncommutative.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_numbers.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_operations.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_priority.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_relational.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_rules.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_subs.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_symbol.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_sympify.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_trace.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_truediv.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_var.py\', \'lib/python3.6/site-packages/sympy/core/tests/test_wester.py\', \'lib/python3.6/site-packages/sympy/core/trace.py\', \'lib/python3.6/site-packages/sympy/crypto/__init__.py\', \'lib/python3.6/site-packages/sympy/crypto/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/crypto/__pycache__/crypto.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/crypto/crypto.py\', \'lib/python3.6/site-packages/sympy/crypto/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/crypto/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/crypto/tests/__pycache__/test_crypto.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/crypto/tests/test_crypto.py\', \'lib/python3.6/site-packages/sympy/deprecated/__init__.py\', \'lib/python3.6/site-packages/sympy/deprecated/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/deprecated/__pycache__/class_registry.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/deprecated/class_registry.py\', \'lib/python3.6/site-packages/sympy/deprecated/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/deprecated/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/deprecated/tests/__pycache__/test_class_registry.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/deprecated/tests/test_class_registry.py\', \'lib/python3.6/site-packages/sympy/diffgeom/__init__.py\', \'lib/python3.6/site-packages/sympy/diffgeom/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/__pycache__/diffgeom.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/__pycache__/rn.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/diffgeom.py\', \'lib/python3.6/site-packages/sympy/diffgeom/rn.py\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__pycache__/test_class_structure.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__pycache__/test_diffgeom.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__pycache__/test_function_diffgeom_book.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/__pycache__/test_hyperbolic_space.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/test_class_structure.py\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/test_diffgeom.py\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/test_function_diffgeom_book.py\', \'lib/python3.6/site-packages/sympy/diffgeom/tests/test_hyperbolic_space.py\', \'lib/python3.6/site-packages/sympy/external/__init__.py\', \'lib/python3.6/site-packages/sympy/external/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/__pycache__/importtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/importtools.py\', \'lib/python3.6/site-packages/sympy/external/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_autowrap.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_importtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_sage.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/__pycache__/test_scipy.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/external/tests/test_autowrap.py\', \'lib/python3.6/site-packages/sympy/external/tests/test_codegen.py\', \'lib/python3.6/site-packages/sympy/external/tests/test_importtools.py\', \'lib/python3.6/site-packages/sympy/external/tests/test_numpy.py\', \'lib/python3.6/site-packages/sympy/external/tests/test_sage.py\', \'lib/python3.6/site-packages/sympy/external/tests/test_scipy.py\', \'lib/python3.6/site-packages/sympy/functions/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/__pycache__/factorials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/__pycache__/numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/factorials.py\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/numbers.py\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_factorials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/__pycache__/test_comb_numbers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/test_comb_factorials.py\', \'lib/python3.6/site-packages/sympy/functions/combinatorial/tests/test_comb_numbers.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/complexes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/exponential.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/hyperbolic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/integers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/miscellaneous.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/piecewise.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/__pycache__/trigonometric.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/benchmarks/__pycache__/bench_exp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/benchmarks/bench_exp.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/complexes.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/exponential.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/hyperbolic.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/integers.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/miscellaneous.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/piecewise.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_complexes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_exponential.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_hyperbolic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_integers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_interface.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_miscellaneous.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_piecewise.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/__pycache__/test_trigonometric.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_complexes.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_exponential.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_hyperbolic.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_integers.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_interface.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_miscellaneous.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_piecewise.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/tests/test_trigonometric.py\', \'lib/python3.6/site-packages/sympy/functions/elementary/trigonometric.py\', \'lib/python3.6/site-packages/sympy/functions/special/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/beta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/bsplines.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/delta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/elliptic_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/error_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/gamma_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/hyper.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/mathieu_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/polynomials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/spherical_harmonics.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/tensor_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/__pycache__/zeta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/special/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/benchmarks/__pycache__/bench_special.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/benchmarks/bench_special.py\', \'lib/python3.6/site-packages/sympy/functions/special/bessel.py\', \'lib/python3.6/site-packages/sympy/functions/special/beta_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/bsplines.py\', \'lib/python3.6/site-packages/sympy/functions/special/delta_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/elliptic_integrals.py\', \'lib/python3.6/site-packages/sympy/functions/special/error_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/gamma_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/hyper.py\', \'lib/python3.6/site-packages/sympy/functions/special/mathieu_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/polynomials.py\', \'lib/python3.6/site-packages/sympy/functions/special/spherical_harmonics.py\', \'lib/python3.6/site-packages/sympy/functions/special/tensor_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_bessel.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_beta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_bsplines.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_delta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_elliptic_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_error_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_gamma_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_hyper.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_mathieu.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_spec_polynomials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_spherical_harmonics.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_tensor_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/__pycache__/test_zeta_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_bessel.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_beta_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_bsplines.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_delta_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_elliptic_integrals.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_error_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_gamma_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_hyper.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_mathieu.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_spec_polynomials.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_spherical_harmonics.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_tensor_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/tests/test_zeta_functions.py\', \'lib/python3.6/site-packages/sympy/functions/special/zeta_functions.py\', \'lib/python3.6/site-packages/sympy/galgebra.py\', \'lib/python3.6/site-packages/sympy/geometry/__init__.py\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/curve.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/ellipse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/entity.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/line.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/line3d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/plane.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/point.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/polygon.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/curve.py\', \'lib/python3.6/site-packages/sympy/geometry/ellipse.py\', \'lib/python3.6/site-packages/sympy/geometry/entity.py\', \'lib/python3.6/site-packages/sympy/geometry/exceptions.py\', \'lib/python3.6/site-packages/sympy/geometry/line.py\', \'lib/python3.6/site-packages/sympy/geometry/line3d.py\', \'lib/python3.6/site-packages/sympy/geometry/plane.py\', \'lib/python3.6/site-packages/sympy/geometry/point.py\', \'lib/python3.6/site-packages/sympy/geometry/polygon.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_curve.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_ellipse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_entity.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_geometrysets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_line.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_plane.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_point.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_polygon.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/__pycache__/test_util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_curve.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_ellipse.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_entity.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_geometrysets.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_line.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_plane.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_point.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_polygon.py\', \'lib/python3.6/site-packages/sympy/geometry/tests/test_util.py\', \'lib/python3.6/site-packages/sympy/geometry/util.py\', \'lib/python3.6/site-packages/sympy/integrals/__init__.py\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/deltafunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/heurisch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/manualintegrate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/meijerint.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/meijerint_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/prde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/quadrature.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/rationaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/rde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/risch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/__pycache__/trigonometry.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/__pycache__/bench_integrate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/__pycache__/bench_trigintegrate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/bench_integrate.py\', \'lib/python3.6/site-packages/sympy/integrals/benchmarks/bench_trigintegrate.py\', \'lib/python3.6/site-packages/sympy/integrals/deltafunctions.py\', \'lib/python3.6/site-packages/sympy/integrals/heurisch.py\', \'lib/python3.6/site-packages/sympy/integrals/integrals.py\', \'lib/python3.6/site-packages/sympy/integrals/manualintegrate.py\', \'lib/python3.6/site-packages/sympy/integrals/meijerint.py\', \'lib/python3.6/site-packages/sympy/integrals/meijerint_doc.py\', \'lib/python3.6/site-packages/sympy/integrals/prde.py\', \'lib/python3.6/site-packages/sympy/integrals/quadrature.py\', \'lib/python3.6/site-packages/sympy/integrals/rationaltools.py\', \'lib/python3.6/site-packages/sympy/integrals/rde.py\', \'lib/python3.6/site-packages/sympy/integrals/risch.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_deltafunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_failing_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_heurisch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_lineintegrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_manual.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_meijerint.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_prde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_quadrature.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_rationaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_rde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_risch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_transforms.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/__pycache__/test_trigonometry.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_deltafunctions.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_failing_integrals.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_heurisch.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_integrals.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_lineintegrals.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_manual.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_meijerint.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_prde.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_quadrature.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_rationaltools.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_rde.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_risch.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_transforms.py\', \'lib/python3.6/site-packages/sympy/integrals/tests/test_trigonometry.py\', \'lib/python3.6/site-packages/sympy/integrals/transforms.py\', \'lib/python3.6/site-packages/sympy/integrals/trigonometry.py\', \'lib/python3.6/site-packages/sympy/interactive/__init__.py\', \'lib/python3.6/site-packages/sympy/interactive/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/__pycache__/ipythonprinting.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/__pycache__/printing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/__pycache__/session.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/ipythonprinting.py\', \'lib/python3.6/site-packages/sympy/interactive/printing.py\', \'lib/python3.6/site-packages/sympy/interactive/session.py\', \'lib/python3.6/site-packages/sympy/interactive/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/interactive/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/tests/__pycache__/test_interactive.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/tests/__pycache__/test_ipython.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/tests/__pycache__/test_ipythonprinting.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/interactive/tests/test_interactive.py\', \'lib/python3.6/site-packages/sympy/interactive/tests/test_ipython.py\', \'lib/python3.6/site-packages/sympy/interactive/tests/test_ipythonprinting.py\', \'lib/python3.6/site-packages/sympy/liealgebras/__init__.py\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/cartan_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/cartan_type.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/dynkin_diagram.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/root_system.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_a.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_b.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_c.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_e.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_f.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/type_g.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/__pycache__/weyl_group.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/cartan_matrix.py\', \'lib/python3.6/site-packages/sympy/liealgebras/cartan_type.py\', \'lib/python3.6/site-packages/sympy/liealgebras/dynkin_diagram.py\', \'lib/python3.6/site-packages/sympy/liealgebras/root_system.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_cartan_type.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_dynkin_diagram.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_root_system.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_A.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_B.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_C.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_D.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_E.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_F.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_type_G.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/__pycache__/test_weyl_group.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_cartan_matrix.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_cartan_type.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_dynkin_diagram.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_root_system.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_A.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_B.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_C.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_D.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_E.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_F.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_type_G.py\', \'lib/python3.6/site-packages/sympy/liealgebras/tests/test_weyl_group.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_a.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_b.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_c.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_d.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_e.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_f.py\', \'lib/python3.6/site-packages/sympy/liealgebras/type_g.py\', \'lib/python3.6/site-packages/sympy/liealgebras/weyl_group.py\', \'lib/python3.6/site-packages/sympy/logic/__init__.py\', \'lib/python3.6/site-packages/sympy/logic/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/__pycache__/boolalg.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/__pycache__/inference.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/algorithms/__init__.py\', \'lib/python3.6/site-packages/sympy/logic/algorithms/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/algorithms/__pycache__/dpll.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/algorithms/__pycache__/dpll2.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/algorithms/dpll.py\', \'lib/python3.6/site-packages/sympy/logic/algorithms/dpll2.py\', \'lib/python3.6/site-packages/sympy/logic/boolalg.py\', \'lib/python3.6/site-packages/sympy/logic/inference.py\', \'lib/python3.6/site-packages/sympy/logic/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/logic/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/tests/__pycache__/test_boolalg.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/tests/__pycache__/test_dimacs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/tests/__pycache__/test_inference.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/tests/test_boolalg.py\', \'lib/python3.6/site-packages/sympy/logic/tests/test_dimacs.py\', \'lib/python3.6/site-packages/sympy/logic/tests/test_inference.py\', \'lib/python3.6/site-packages/sympy/logic/utilities/__init__.py\', \'lib/python3.6/site-packages/sympy/logic/utilities/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/utilities/__pycache__/dimacs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/logic/utilities/dimacs.py\', \'lib/python3.6/site-packages/sympy/matrices/__init__.py\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/dense.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/densearith.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/densesolve.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/densetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/immutable.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/sparse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/__pycache__/sparsetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/matrices/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/benchmarks/__pycache__/bench_matrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/benchmarks/bench_matrix.py\', \'lib/python3.6/site-packages/sympy/matrices/dense.py\', \'lib/python3.6/site-packages/sympy/matrices/densearith.py\', \'lib/python3.6/site-packages/sympy/matrices/densesolve.py\', \'lib/python3.6/site-packages/sympy/matrices/densetools.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__init__.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/adjoint.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/blockmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/determinant.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/diagonal.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/dotproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/factorizations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/fourier.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/funcmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/hadamard.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/inverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/matadd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/matexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/matmul.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/matpow.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/slice.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/trace.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/__pycache__/transpose.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/adjoint.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/blockmatrix.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/determinant.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/diagonal.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/dotproduct.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/factorizations.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/fourier.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/funcmatrix.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/hadamard.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/inverse.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/matadd.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/matexpr.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/matmul.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/matpow.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/slice.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_adjoint.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_blockmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_determinant.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_diagonal.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_dotproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_factorizations.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_fourier.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_funcmatrix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_hadamard.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_indexing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_inverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matadd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matmul.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matpow.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_matrix_exprs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_slice.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_trace.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/__pycache__/test_transpose.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_adjoint.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_blockmatrix.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_determinant.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_diagonal.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_dotproduct.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_factorizations.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_fourier.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_funcmatrix.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_hadamard.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_indexing.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_inverse.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_matadd.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_matmul.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_matpow.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_matrix_exprs.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_slice.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_trace.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/tests/test_transpose.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/trace.py\', \'lib/python3.6/site-packages/sympy/matrices/expressions/transpose.py\', \'lib/python3.6/site-packages/sympy/matrices/immutable.py\', \'lib/python3.6/site-packages/sympy/matrices/matrices.py\', \'lib/python3.6/site-packages/sympy/matrices/sparse.py\', \'lib/python3.6/site-packages/sympy/matrices/sparsetools.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_densearith.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_densesolve.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_densetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_immutable.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_interactions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_sparse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/__pycache__/test_sparsetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_densearith.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_densesolve.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_densetools.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_immutable.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_interactions.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_matrices.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_sparse.py\', \'lib/python3.6/site-packages/sympy/matrices/tests/test_sparsetools.py\', \'lib/python3.6/site-packages/sympy/ntheory/__init__.py\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/bbp_pi.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/continued_fraction.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/egyptian_fraction.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/factor_.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/generate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/modular.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/multinomial.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/partitions_.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/primetest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/__pycache__/residue_ntheory.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/bbp_pi.py\', \'lib/python3.6/site-packages/sympy/ntheory/continued_fraction.py\', \'lib/python3.6/site-packages/sympy/ntheory/egyptian_fraction.py\', \'lib/python3.6/site-packages/sympy/ntheory/factor_.py\', \'lib/python3.6/site-packages/sympy/ntheory/generate.py\', \'lib/python3.6/site-packages/sympy/ntheory/modular.py\', \'lib/python3.6/site-packages/sympy/ntheory/multinomial.py\', \'lib/python3.6/site-packages/sympy/ntheory/partitions_.py\', \'lib/python3.6/site-packages/sympy/ntheory/primetest.py\', \'lib/python3.6/site-packages/sympy/ntheory/residue_ntheory.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_bbp_pi.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_continued_fraction.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_egyptian_fraction.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_factor_.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_generate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_modular.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_multinomial.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_partitions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_primetest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/__pycache__/test_residue.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_bbp_pi.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_continued_fraction.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_egyptian_fraction.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_factor_.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_generate.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_modular.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_multinomial.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_partitions.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_primetest.py\', \'lib/python3.6/site-packages/sympy/ntheory/tests/test_residue.py\', \'lib/python3.6/site-packages/sympy/parsing/__init__.py\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/ast_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/mathematica.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/maxima.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/sympy_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/__pycache__/sympy_tokenize.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/ast_parser.py\', \'lib/python3.6/site-packages/sympy/parsing/mathematica.py\', \'lib/python3.6/site-packages/sympy/parsing/maxima.py\', \'lib/python3.6/site-packages/sympy/parsing/sympy_parser.py\', \'lib/python3.6/site-packages/sympy/parsing/sympy_tokenize.py\', \'lib/python3.6/site-packages/sympy/parsing/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/parsing/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/tests/__pycache__/test_implicit_multiplication_application.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/tests/__pycache__/test_mathematica.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/tests/__pycache__/test_maxima.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/tests/__pycache__/test_sympy_parser.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/parsing/tests/test_implicit_multiplication_application.py\', \'lib/python3.6/site-packages/sympy/parsing/tests/test_mathematica.py\', \'lib/python3.6/site-packages/sympy/parsing/tests/test_maxima.py\', \'lib/python3.6/site-packages/sympy/parsing/tests/test_sympy_parser.py\', \'lib/python3.6/site-packages/sympy/physics/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/gaussopt.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/hydrogen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/paulialgebra.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/pring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/qho_1d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/secondquant.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/sho.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/__pycache__/wigner.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/gaussopt.py\', \'lib/python3.6/site-packages/sympy/physics/hep/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/hep/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/hep/__pycache__/gamma_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/hep/gamma_matrices.py\', \'lib/python3.6/site-packages/sympy/physics/hep/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/hep/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/hep/tests/__pycache__/test_gamma_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/hep/tests/test_gamma_matrices.py\', \'lib/python3.6/site-packages/sympy/physics/hydrogen.py\', \'lib/python3.6/site-packages/sympy/physics/matrices.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/body.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/kane.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/lagrange.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/linearize.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/particle.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/__pycache__/rigidbody.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/body.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/functions.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/kane.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/lagrange.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/linearize.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/particle.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/rigidbody.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_body.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane2.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_kane3.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_lagrange2.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_linearize.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_particle.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/__pycache__/test_rigidbody.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_body.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_functions.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_kane.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_kane2.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_kane3.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_lagrange.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_lagrange2.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_linearize.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_particle.py\', \'lib/python3.6/site-packages/sympy/physics/mechanics/tests/test_rigidbody.py\', \'lib/python3.6/site-packages/sympy/physics/optics/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/optics/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/__pycache__/gaussopt.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/__pycache__/medium.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/__pycache__/waves.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/gaussopt.py\', \'lib/python3.6/site-packages/sympy/physics/optics/medium.py\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__pycache__/test_gaussopt.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__pycache__/test_medium.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/__pycache__/test_waves.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/test_gaussopt.py\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/test_medium.py\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/test_utils.py\', \'lib/python3.6/site-packages/sympy/physics/optics/tests/test_waves.py\', \'lib/python3.6/site-packages/sympy/physics/optics/utils.py\', \'lib/python3.6/site-packages/sympy/physics/optics/waves.py\', \'lib/python3.6/site-packages/sympy/physics/paulialgebra.py\', \'lib/python3.6/site-packages/sympy/physics/pring.py\', \'lib/python3.6/site-packages/sympy/physics/qho_1d.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/anticommutator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/boson.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/cartesian.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/cg.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/circuitplot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/circuitutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/commutator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/constants.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/dagger.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/density.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/fermion.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/gate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/grover.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/hilbert.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/identitysearch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/innerproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/matrixcache.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/matrixutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/operator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/operatorordering.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/operatorset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/pauli.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/piab.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/qapply.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/qasm.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/qexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/qft.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/qubit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/represent.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/sho1d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/shor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/spin.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/state.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/__pycache__/tensorproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/anticommutator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/boson.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/cartesian.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/cg.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/circuitplot.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/circuitutils.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/commutator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/constants.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/dagger.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/density.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/fermion.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/gate.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/grover.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/hilbert.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/identitysearch.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/innerproduct.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/matrixcache.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/matrixutils.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/operator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/operatorordering.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/operatorset.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/pauli.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/piab.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/qapply.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/qasm.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/qexpr.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/qft.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/qubit.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/represent.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/sho1d.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/shor.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/spin.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/state.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tensorproduct.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_anticommutator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_boson.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_cartesian.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_cg.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitplot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_circuitutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_commutator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_constants.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_dagger.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_density.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_fermion.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_gate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_grover.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_hilbert.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_identitysearch.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_innerproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_matrixutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_operator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorordering.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_operatorset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_pauli.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_piab.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_printing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_qapply.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_qasm.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_qexpr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_qft.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_qubit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_represent.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_sho1d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_shor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_spin.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_state.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/__pycache__/test_tensorproduct.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_anticommutator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_boson.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_cartesian.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_cg.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_circuitplot.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_circuitutils.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_commutator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_constants.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_dagger.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_density.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_fermion.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_gate.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_grover.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_hilbert.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_identitysearch.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_innerproduct.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_matrixutils.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_operator.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_operatorordering.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_operatorset.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_pauli.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_piab.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_printing.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_qapply.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_qasm.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_qexpr.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_qft.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_qubit.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_represent.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_sho1d.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_shor.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_spin.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_state.py\', \'lib/python3.6/site-packages/sympy/physics/quantum/tests/test_tensorproduct.py\', \'lib/python3.6/site-packages/sympy/physics/secondquant.py\', \'lib/python3.6/site-packages/sympy/physics/sho.py\', \'lib/python3.6/site-packages/sympy/physics/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_clebsch_gordan.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_hydrogen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_paulialgebra.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_physics_matrices.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_pring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_qho_1d.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_secondquant.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_sho.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/__pycache__/test_units.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/tests/test_clebsch_gordan.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_hydrogen.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_paulialgebra.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_physics_matrices.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_pring.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_qho_1d.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_secondquant.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_sho.py\', \'lib/python3.6/site-packages/sympy/physics/tests/test_units.py\', \'lib/python3.6/site-packages/sympy/physics/units.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/dimensions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/prefixes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/quantities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/simplifiers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/__pycache__/units.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/dimensions.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/prefixes.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/quantities.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/simplifiers.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/__pycache__/mks.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/__pycache__/mksa.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/__pycache__/natural.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/mks.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/mksa.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/systems/natural.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_dimensions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_dimensionsystem.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_prefixes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_quantities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_simplifiers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_units.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/__pycache__/test_unitsystem.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_dimensions.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_dimensionsystem.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_prefixes.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_quantities.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_simplifiers.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_units.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/tests/test_unitsystem.py\', \'lib/python3.6/site-packages/sympy/physics/unitsystems/units.py\', \'lib/python3.6/site-packages/sympy/physics/vector/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/dyadic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/fieldfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/frame.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/point.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/printing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/__pycache__/vector.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/dyadic.py\', \'lib/python3.6/site-packages/sympy/physics/vector/fieldfunctions.py\', \'lib/python3.6/site-packages/sympy/physics/vector/frame.py\', \'lib/python3.6/site-packages/sympy/physics/vector/functions.py\', \'lib/python3.6/site-packages/sympy/physics/vector/point.py\', \'lib/python3.6/site-packages/sympy/physics/vector/printing.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_dyadic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_fieldfunctions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_frame.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_output.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_point.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_printing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/__pycache__/test_vector.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_dyadic.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_fieldfunctions.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_frame.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_functions.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_output.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_point.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_printing.py\', \'lib/python3.6/site-packages/sympy/physics/vector/tests/test_vector.py\', \'lib/python3.6/site-packages/sympy/physics/vector/vector.py\', \'lib/python3.6/site-packages/sympy/physics/wigner.py\', \'lib/python3.6/site-packages/sympy/plotting/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/__pycache__/experimental_lambdify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/__pycache__/plot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/__pycache__/plot_implicit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/__pycache__/textplot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/experimental_lambdify.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/__pycache__/interval_arithmetic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/__pycache__/lib_interval.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/interval_arithmetic.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/lib_interval.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_interval_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/__pycache__/test_intervalmath.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/test_interval_functions.py\', \'lib/python3.6/site-packages/sympy/plotting/intervalmath/tests/test_intervalmath.py\', \'lib/python3.6/site-packages/sympy/plotting/plot.py\', \'lib/python3.6/site-packages/sympy/plotting/plot_implicit.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/color_scheme.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/managed_window.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_axes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_camera.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_controller.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_curve.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_interval.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_mode_base.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_modes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_object.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_rotation.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_surface.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/plot_window.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/color_scheme.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/managed_window.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_axes.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_camera.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_controller.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_curve.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_interval.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_mode.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_mode_base.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_modes.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_object.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_rotation.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_surface.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/plot_window.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/tests/__pycache__/test_plotting.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/tests/test_plotting.py\', \'lib/python3.6/site-packages/sympy/plotting/pygletplot/util.py\', \'lib/python3.6/site-packages/sympy/plotting/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/plotting/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/tests/__pycache__/test_plot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/tests/__pycache__/test_plot_implicit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/plotting/tests/test_plot.py\', \'lib/python3.6/site-packages/sympy/plotting/tests/test_plot_implicit.py\', \'lib/python3.6/site-packages/sympy/plotting/textplot.py\', \'lib/python3.6/site-packages/sympy/polys/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/constructor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/densearith.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/densebasic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/densetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/dispersion.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/distributedmodules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/euclidtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/factortools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/fglmtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/fields.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/galoistools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/groebnertools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/heuristicgcd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/modulargcd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/monomials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/numberfields.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/orderings.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/orthopolys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/partfrac.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyconfig.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyerrors.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyoptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyquinticconst.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyroots.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polytools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/polyutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/rationaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/ring_series.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/rings.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/rootisolation.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/rootoftools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/specialpolys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/sqfreetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/__pycache__/subresultants_qq_zz.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/agca/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/__pycache__/homomorphisms.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/__pycache__/ideals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/__pycache__/modules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/homomorphisms.py\', \'lib/python3.6/site-packages/sympy/polys/agca/ideals.py\', \'lib/python3.6/site-packages/sympy/polys/agca/modules.py\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/__pycache__/test_homomorphisms.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/__pycache__/test_ideals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/__pycache__/test_modules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/test_homomorphisms.py\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/test_ideals.py\', \'lib/python3.6/site-packages/sympy/polys/agca/tests/test_modules.py\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/__pycache__/bench_galoispolys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/__pycache__/bench_groebnertools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/__pycache__/bench_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/bench_galoispolys.py\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/bench_groebnertools.py\', \'lib/python3.6/site-packages/sympy/polys/benchmarks/bench_solvers.py\', \'lib/python3.6/site-packages/sympy/polys/compatibility.py\', \'lib/python3.6/site-packages/sympy/polys/constructor.py\', \'lib/python3.6/site-packages/sympy/polys/densearith.py\', \'lib/python3.6/site-packages/sympy/polys/densebasic.py\', \'lib/python3.6/site-packages/sympy/polys/densetools.py\', \'lib/python3.6/site-packages/sympy/polys/dispersion.py\', \'lib/python3.6/site-packages/sympy/polys/distributedmodules.py\', \'lib/python3.6/site-packages/sympy/polys/domains/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/algebraicfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/characteristiczero.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/complexfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/compositedomain.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/domain.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/domainelement.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/expressiondomain.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/field.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/finitefield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/fractionfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/gmpyfinitefield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/gmpyintegerring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/gmpyrationalfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/groundtypes.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/integerring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/modularinteger.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/mpelements.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/old_fractionfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/old_polynomialring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/polynomialring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/pythonfinitefield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/pythonintegerring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/pythonrational.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/pythonrationalfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/quotientring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/rationalfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/realfield.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/ring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/__pycache__/simpledomain.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/algebraicfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/characteristiczero.py\', \'lib/python3.6/site-packages/sympy/polys/domains/complexfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/compositedomain.py\', \'lib/python3.6/site-packages/sympy/polys/domains/domain.py\', \'lib/python3.6/site-packages/sympy/polys/domains/domainelement.py\', \'lib/python3.6/site-packages/sympy/polys/domains/expressiondomain.py\', \'lib/python3.6/site-packages/sympy/polys/domains/field.py\', \'lib/python3.6/site-packages/sympy/polys/domains/finitefield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/fractionfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/gmpyfinitefield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/gmpyintegerring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/gmpyrationalfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/groundtypes.py\', \'lib/python3.6/site-packages/sympy/polys/domains/integerring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/modularinteger.py\', \'lib/python3.6/site-packages/sympy/polys/domains/mpelements.py\', \'lib/python3.6/site-packages/sympy/polys/domains/old_fractionfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/old_polynomialring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/polynomialring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/pythonfinitefield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/pythonintegerring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/pythonrational.py\', \'lib/python3.6/site-packages/sympy/polys/domains/pythonrationalfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/quotientring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/rationalfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/realfield.py\', \'lib/python3.6/site-packages/sympy/polys/domains/ring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/simpledomain.py\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/__pycache__/test_domains.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/__pycache__/test_polynomialring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/__pycache__/test_quotientring.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/test_domains.py\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/test_polynomialring.py\', \'lib/python3.6/site-packages/sympy/polys/domains/tests/test_quotientring.py\', \'lib/python3.6/site-packages/sympy/polys/euclidtools.py\', \'lib/python3.6/site-packages/sympy/polys/factortools.py\', \'lib/python3.6/site-packages/sympy/polys/fglmtools.py\', \'lib/python3.6/site-packages/sympy/polys/fields.py\', \'lib/python3.6/site-packages/sympy/polys/galoistools.py\', \'lib/python3.6/site-packages/sympy/polys/groebnertools.py\', \'lib/python3.6/site-packages/sympy/polys/heuristicgcd.py\', \'lib/python3.6/site-packages/sympy/polys/modulargcd.py\', \'lib/python3.6/site-packages/sympy/polys/monomials.py\', \'lib/python3.6/site-packages/sympy/polys/numberfields.py\', \'lib/python3.6/site-packages/sympy/polys/orderings.py\', \'lib/python3.6/site-packages/sympy/polys/orthopolys.py\', \'lib/python3.6/site-packages/sympy/polys/partfrac.py\', \'lib/python3.6/site-packages/sympy/polys/polyclasses.py\', \'lib/python3.6/site-packages/sympy/polys/polyconfig.py\', \'lib/python3.6/site-packages/sympy/polys/polyerrors.py\', \'lib/python3.6/site-packages/sympy/polys/polyfuncs.py\', \'lib/python3.6/site-packages/sympy/polys/polyoptions.py\', \'lib/python3.6/site-packages/sympy/polys/polyquinticconst.py\', \'lib/python3.6/site-packages/sympy/polys/polyroots.py\', \'lib/python3.6/site-packages/sympy/polys/polytools.py\', \'lib/python3.6/site-packages/sympy/polys/polyutils.py\', \'lib/python3.6/site-packages/sympy/polys/rationaltools.py\', \'lib/python3.6/site-packages/sympy/polys/ring_series.py\', \'lib/python3.6/site-packages/sympy/polys/rings.py\', \'lib/python3.6/site-packages/sympy/polys/rootisolation.py\', \'lib/python3.6/site-packages/sympy/polys/rootoftools.py\', \'lib/python3.6/site-packages/sympy/polys/solvers.py\', \'lib/python3.6/site-packages/sympy/polys/specialpolys.py\', \'lib/python3.6/site-packages/sympy/polys/sqfreetools.py\', \'lib/python3.6/site-packages/sympy/polys/subresultants_qq_zz.py\', \'lib/python3.6/site-packages/sympy/polys/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_constructor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_densearith.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_densebasic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_densetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_dispersion.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_distributedmodules.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_euclidtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_factortools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_fields.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_galoistools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_groebnertools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_heuristicgcd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_injections.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_modulargcd.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_monomials.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_numberfields.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_orderings.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_orthopolys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_partfrac.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polyclasses.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polyfuncs.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polyoptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polyroots.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polytools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_polyutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_pythonrational.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_rationaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_ring_series.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_rings.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_rootisolation.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_rootoftools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_specialpolys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_sqfreetools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/__pycache__/test_subresultants_qq_zz.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/polys/tests/test_constructor.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_densearith.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_densebasic.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_densetools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_dispersion.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_distributedmodules.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_euclidtools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_factortools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_fields.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_galoistools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_groebnertools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_heuristicgcd.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_injections.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_modulargcd.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_monomials.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_numberfields.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_orderings.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_orthopolys.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_partfrac.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polyclasses.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polyfuncs.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polyoptions.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polyroots.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polytools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_polyutils.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_pythonrational.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_rationaltools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_ring_series.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_rings.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_rootisolation.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_rootoftools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_solvers.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_specialpolys.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_sqfreetools.py\', \'lib/python3.6/site-packages/sympy/polys/tests/test_subresultants_qq_zz.py\', \'lib/python3.6/site-packages/sympy/printing/__init__.py\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/ccode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/codeprinter.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/conventions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/defaults.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/dot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/fcode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/gtk.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/jscode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/julia.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/lambdarepr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/latex.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/mathematica.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/mathml.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/octave.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/precedence.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/preview.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/printer.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/python.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/repr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/str.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/tableform.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/theanocode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/ccode.py\', \'lib/python3.6/site-packages/sympy/printing/codeprinter.py\', \'lib/python3.6/site-packages/sympy/printing/conventions.py\', \'lib/python3.6/site-packages/sympy/printing/defaults.py\', \'lib/python3.6/site-packages/sympy/printing/dot.py\', \'lib/python3.6/site-packages/sympy/printing/fcode.py\', \'lib/python3.6/site-packages/sympy/printing/gtk.py\', \'lib/python3.6/site-packages/sympy/printing/jscode.py\', \'lib/python3.6/site-packages/sympy/printing/julia.py\', \'lib/python3.6/site-packages/sympy/printing/lambdarepr.py\', \'lib/python3.6/site-packages/sympy/printing/latex.py\', \'lib/python3.6/site-packages/sympy/printing/mathematica.py\', \'lib/python3.6/site-packages/sympy/printing/mathml.py\', \'lib/python3.6/site-packages/sympy/printing/octave.py\', \'lib/python3.6/site-packages/sympy/printing/precedence.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/__init__.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/__pycache__/pretty.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/__pycache__/pretty_symbology.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/__pycache__/stringpict.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/pretty.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/pretty_symbology.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/stringpict.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/printing/pretty/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/tests/__pycache__/test_pretty.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/pretty/tests/test_pretty.py\', \'lib/python3.6/site-packages/sympy/printing/preview.py\', \'lib/python3.6/site-packages/sympy/printing/printer.py\', \'lib/python3.6/site-packages/sympy/printing/python.py\', \'lib/python3.6/site-packages/sympy/printing/repr.py\', \'lib/python3.6/site-packages/sympy/printing/str.py\', \'lib/python3.6/site-packages/sympy/printing/tableform.py\', \'lib/python3.6/site-packages/sympy/printing/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_ccode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_codeprinter.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_conventions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_dot.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_fcode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_gtk.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_jscode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_julia.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_lambdarepr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_latex.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_mathematica.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_mathml.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_numpy.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_octave.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_precedence.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_preview.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_python.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_repr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_str.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_tableform.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/__pycache__/test_theanocode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/printing/tests/test_ccode.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_codeprinter.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_conventions.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_dot.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_fcode.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_gtk.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_jscode.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_julia.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_lambdarepr.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_latex.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_mathematica.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_mathml.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_numpy.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_octave.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_precedence.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_preview.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_python.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_repr.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_str.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_tableform.py\', \'lib/python3.6/site-packages/sympy/printing/tests/test_theanocode.py\', \'lib/python3.6/site-packages/sympy/printing/theanocode.py\', \'lib/python3.6/site-packages/sympy/printing/tree.py\', \'lib/python3.6/site-packages/sympy/release.py\', \'lib/python3.6/site-packages/sympy/sandbox/__init__.py\', \'lib/python3.6/site-packages/sympy/sandbox/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sandbox/__pycache__/indexed_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sandbox/indexed_integrals.py\', \'lib/python3.6/site-packages/sympy/sandbox/tests/__pycache__/test_indexed_integrals.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sandbox/tests/test_indexed_integrals.py\', \'lib/python3.6/site-packages/sympy/series/__init__.py\', \'lib/python3.6/site-packages/sympy/series/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/acceleration.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/approximants.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/formal.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/fourier.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/gruntz.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/kauers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/limits.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/limitseq.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/order.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/residues.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/sequences.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/series.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/__pycache__/series_class.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/acceleration.py\', \'lib/python3.6/site-packages/sympy/series/approximants.py\', \'lib/python3.6/site-packages/sympy/series/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/series/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/benchmarks/__pycache__/bench_limit.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/benchmarks/__pycache__/bench_order.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/benchmarks/bench_limit.py\', \'lib/python3.6/site-packages/sympy/series/benchmarks/bench_order.py\', \'lib/python3.6/site-packages/sympy/series/formal.py\', \'lib/python3.6/site-packages/sympy/series/fourier.py\', \'lib/python3.6/site-packages/sympy/series/gruntz.py\', \'lib/python3.6/site-packages/sympy/series/kauers.py\', \'lib/python3.6/site-packages/sympy/series/limits.py\', \'lib/python3.6/site-packages/sympy/series/limitseq.py\', \'lib/python3.6/site-packages/sympy/series/order.py\', \'lib/python3.6/site-packages/sympy/series/residues.py\', \'lib/python3.6/site-packages/sympy/series/sequences.py\', \'lib/python3.6/site-packages/sympy/series/series.py\', \'lib/python3.6/site-packages/sympy/series/series_class.py\', \'lib/python3.6/site-packages/sympy/series/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_approximants.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_demidovich.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_formal.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_fourier.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_gruntz.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_kauers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_limits.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_limitseq.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_lseries.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_nseries.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_order.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_residues.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_sequences.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/__pycache__/test_series.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/series/tests/test_approximants.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_demidovich.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_formal.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_fourier.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_gruntz.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_kauers.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_limits.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_limitseq.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_lseries.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_nseries.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_order.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_residues.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_sequences.py\', \'lib/python3.6/site-packages/sympy/series/tests/test_series.py\', \'lib/python3.6/site-packages/sympy/sets/__init__.py\', \'lib/python3.6/site-packages/sympy/sets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/__pycache__/conditionset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/__pycache__/contains.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/__pycache__/fancysets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/__pycache__/sets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/conditionset.py\', \'lib/python3.6/site-packages/sympy/sets/contains.py\', \'lib/python3.6/site-packages/sympy/sets/fancysets.py\', \'lib/python3.6/site-packages/sympy/sets/sets.py\', \'lib/python3.6/site-packages/sympy/sets/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/sets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/tests/__pycache__/test_conditionset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/tests/__pycache__/test_contains.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/tests/__pycache__/test_fancysets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/tests/__pycache__/test_sets.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/sets/tests/test_conditionset.py\', \'lib/python3.6/site-packages/sympy/sets/tests/test_contains.py\', \'lib/python3.6/site-packages/sympy/sets/tests/test_fancysets.py\', \'lib/python3.6/site-packages/sympy/sets/tests/test_sets.py\', \'lib/python3.6/site-packages/sympy/simplify/__init__.py\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/combsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/cse_main.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/cse_opts.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/epathtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/fu.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/hyperexpand.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/hyperexpand_doc.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/powsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/radsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/ratsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/simplify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/sqrtdenest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/traversaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/__pycache__/trigsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/combsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/cse_main.py\', \'lib/python3.6/site-packages/sympy/simplify/cse_opts.py\', \'lib/python3.6/site-packages/sympy/simplify/epathtools.py\', \'lib/python3.6/site-packages/sympy/simplify/fu.py\', \'lib/python3.6/site-packages/sympy/simplify/hyperexpand.py\', \'lib/python3.6/site-packages/sympy/simplify/hyperexpand_doc.py\', \'lib/python3.6/site-packages/sympy/simplify/powsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/radsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/ratsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/simplify.py\', \'lib/python3.6/site-packages/sympy/simplify/sqrtdenest.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_combsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_cse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_epathtools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_fu.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_function.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_hyperexpand.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_powsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_radsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_ratsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_simplify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_sqrtdenest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_traversaltools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/__pycache__/test_trigsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_combsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_cse.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_epathtools.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_fu.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_function.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_hyperexpand.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_powsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_radsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_ratsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_rewrite.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_simplify.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_sqrtdenest.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_traversaltools.py\', \'lib/python3.6/site-packages/sympy/simplify/tests/test_trigsimp.py\', \'lib/python3.6/site-packages/sympy/simplify/traversaltools.py\', \'lib/python3.6/site-packages/sympy/simplify/trigsimp.py\', \'lib/python3.6/site-packages/sympy/solvers/__init__.py\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/bivariate.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/decompogen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/deutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/diophantine.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/inequalities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/ode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/pde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/polysys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/recurr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/__pycache__/solveset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/benchmarks/__init__.py\', \'lib/python3.6/site-packages/sympy/solvers/benchmarks/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/benchmarks/__pycache__/bench_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/benchmarks/bench_solvers.py\', \'lib/python3.6/site-packages/sympy/solvers/bivariate.py\', \'lib/python3.6/site-packages/sympy/solvers/decompogen.py\', \'lib/python3.6/site-packages/sympy/solvers/deutils.py\', \'lib/python3.6/site-packages/sympy/solvers/diophantine.py\', \'lib/python3.6/site-packages/sympy/solvers/inequalities.py\', \'lib/python3.6/site-packages/sympy/solvers/ode.py\', \'lib/python3.6/site-packages/sympy/solvers/pde.py\', \'lib/python3.6/site-packages/sympy/solvers/polysys.py\', \'lib/python3.6/site-packages/sympy/solvers/recurr.py\', \'lib/python3.6/site-packages/sympy/solvers/solvers.py\', \'lib/python3.6/site-packages/sympy/solvers/solveset.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_constantsimp.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_decompogen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_diophantine.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_inequalities.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_numeric.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_ode.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_pde.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_polysys.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_recurr.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_solvers.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/__pycache__/test_solveset.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_constantsimp.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_decompogen.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_diophantine.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_inequalities.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_numeric.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_ode.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_pde.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_polysys.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_recurr.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_solvers.py\', \'lib/python3.6/site-packages/sympy/solvers/tests/test_solveset.py\', \'lib/python3.6/site-packages/sympy/stats/__init__.py\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/crv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/crv_types.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/drv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/drv_types.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/frv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/frv_types.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/rv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/__pycache__/rv_interface.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/crv.py\', \'lib/python3.6/site-packages/sympy/stats/crv_types.py\', \'lib/python3.6/site-packages/sympy/stats/drv.py\', \'lib/python3.6/site-packages/sympy/stats/drv_types.py\', \'lib/python3.6/site-packages/sympy/stats/frv.py\', \'lib/python3.6/site-packages/sympy/stats/frv_types.py\', \'lib/python3.6/site-packages/sympy/stats/rv.py\', \'lib/python3.6/site-packages/sympy/stats/rv_interface.py\', \'lib/python3.6/site-packages/sympy/stats/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/test_continuous_rv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/test_discrete_rv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/test_finite_rv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/test_mix.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/__pycache__/test_rv.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/stats/tests/test_continuous_rv.py\', \'lib/python3.6/site-packages/sympy/stats/tests/test_discrete_rv.py\', \'lib/python3.6/site-packages/sympy/stats/tests/test_finite_rv.py\', \'lib/python3.6/site-packages/sympy/stats/tests/test_mix.py\', \'lib/python3.6/site-packages/sympy/stats/tests/test_rv.py\', \'lib/python3.6/site-packages/sympy/strategies/__init__.py\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/rl.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/traverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/__init__.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/__pycache__/tools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/__pycache__/traverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/core.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/__pycache__/test_traverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/test_core.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/test_tools.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/tests/test_traverse.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/tools.py\', \'lib/python3.6/site-packages/sympy/strategies/branch/traverse.py\', \'lib/python3.6/site-packages/sympy/strategies/core.py\', \'lib/python3.6/site-packages/sympy/strategies/rl.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_rl.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_strat.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_tools.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_traverse.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/__pycache__/test_tree.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_core.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_rl.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_strat.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_tools.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_traverse.py\', \'lib/python3.6/site-packages/sympy/strategies/tests/test_tree.py\', \'lib/python3.6/site-packages/sympy/strategies/tools.py\', \'lib/python3.6/site-packages/sympy/strategies/traverse.py\', \'lib/python3.6/site-packages/sympy/strategies/tree.py\', \'lib/python3.6/site-packages/sympy/strategies/util.py\', \'lib/python3.6/site-packages/sympy/tensor/__init__.py\', \'lib/python3.6/site-packages/sympy/tensor/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/__pycache__/index_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/__pycache__/indexed.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/__pycache__/tensor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__init__.py\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/arrayop.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/dense_ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/mutable_ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/__pycache__/sparse_ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/arrayop.py\', \'lib/python3.6/site-packages/sympy/tensor/array/dense_ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/array/mutable_ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/array/ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/array/sparse_ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/__pycache__/test_arrayop.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/__pycache__/test_immutable_ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/__pycache__/test_mutable_ndim_array.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/test_arrayop.py\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/test_immutable_ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/array/tests/test_mutable_ndim_array.py\', \'lib/python3.6/site-packages/sympy/tensor/index_methods.py\', \'lib/python3.6/site-packages/sympy/tensor/indexed.py\', \'lib/python3.6/site-packages/sympy/tensor/tensor.py\', \'lib/python3.6/site-packages/sympy/tensor/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/tensor/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/tests/__pycache__/test_index_methods.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/tests/__pycache__/test_indexed.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/tests/__pycache__/test_tensor.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/tensor/tests/test_index_methods.py\', \'lib/python3.6/site-packages/sympy/tensor/tests/test_indexed.py\', \'lib/python3.6/site-packages/sympy/tensor/tests/test_tensor.py\', \'lib/python3.6/site-packages/sympy/unify/__init__.py\', \'lib/python3.6/site-packages/sympy/unify/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/__pycache__/rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/__pycache__/usympy.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/core.py\', \'lib/python3.6/site-packages/sympy/unify/rewrite.py\', \'lib/python3.6/site-packages/sympy/unify/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/unify/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/tests/__pycache__/test_rewrite.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/tests/__pycache__/test_sympy.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/tests/__pycache__/test_unify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/unify/tests/test_rewrite.py\', \'lib/python3.6/site-packages/sympy/unify/tests/test_sympy.py\', \'lib/python3.6/site-packages/sympy/unify/tests/test_unify.py\', \'lib/python3.6/site-packages/sympy/unify/usympy.py\', \'lib/python3.6/site-packages/sympy/utilities/__init__.py\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/autowrap.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/benchmarking.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/enumerative.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/iterables.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/lambdify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/magic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/memoization.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/misc.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/pkgdata.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/pytest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/randtest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/source.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/__pycache__/timeutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/autowrap.py\', \'lib/python3.6/site-packages/sympy/utilities/benchmarking.py\', \'lib/python3.6/site-packages/sympy/utilities/codegen.py\', \'lib/python3.6/site-packages/sympy/utilities/decorator.py\', \'lib/python3.6/site-packages/sympy/utilities/enumerative.py\', \'lib/python3.6/site-packages/sympy/utilities/exceptions.py\', \'lib/python3.6/site-packages/sympy/utilities/iterables.py\', \'lib/python3.6/site-packages/sympy/utilities/lambdify.py\', \'lib/python3.6/site-packages/sympy/utilities/magic.py\', \'lib/python3.6/site-packages/sympy/utilities/mathml/__init__.py\', \'lib/python3.6/site-packages/sympy/utilities/mathml/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/mathml/data/mmlctop.xsl\', \'lib/python3.6/site-packages/sympy/utilities/mathml/data/mmltex.xsl\', \'lib/python3.6/site-packages/sympy/utilities/mathml/data/simple_mmlctop.xsl\', \'lib/python3.6/site-packages/sympy/utilities/memoization.py\', \'lib/python3.6/site-packages/sympy/utilities/misc.py\', \'lib/python3.6/site-packages/sympy/utilities/pkgdata.py\', \'lib/python3.6/site-packages/sympy/utilities/pytest.py\', \'lib/python3.6/site-packages/sympy/utilities/randtest.py\', \'lib/python3.6/site-packages/sympy/utilities/runtests.py\', \'lib/python3.6/site-packages/sympy/utilities/source.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/diagnose_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_autowrap.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_code_quality.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_codegen.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_codegen_julia.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_codegen_octave.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_enumerative.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_iterables.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_lambdify.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_misc.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_module_imports.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_pickling.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_pytest.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_source.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/__pycache__/test_timeutils.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/utilities/tests/diagnose_imports.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_autowrap.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_code_quality.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_codegen.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_codegen_julia.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_codegen_octave.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_decorator.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_enumerative.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_iterables.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_lambdify.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_misc.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_module_imports.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_pickling.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_pytest.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_source.py\', \'lib/python3.6/site-packages/sympy/utilities/tests/test_timeutils.py\', \'lib/python3.6/site-packages/sympy/utilities/timeutils.py\', \'lib/python3.6/site-packages/sympy/vector/__init__.py\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/basisdependent.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/coordsysrect.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/deloperator.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/dyadic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/orienters.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/point.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/scalar.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/__pycache__/vector.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/basisdependent.py\', \'lib/python3.6/site-packages/sympy/vector/coordsysrect.py\', \'lib/python3.6/site-packages/sympy/vector/deloperator.py\', \'lib/python3.6/site-packages/sympy/vector/dyadic.py\', \'lib/python3.6/site-packages/sympy/vector/functions.py\', \'lib/python3.6/site-packages/sympy/vector/orienters.py\', \'lib/python3.6/site-packages/sympy/vector/point.py\', \'lib/python3.6/site-packages/sympy/vector/scalar.py\', \'lib/python3.6/site-packages/sympy/vector/tests/__init__.py\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_coordsysrect.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_dyadic.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_field_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_functions.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_printing.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/__pycache__/test_vector.cpython-36.pyc\', \'lib/python3.6/site-packages/sympy/vector/tests/test_coordsysrect.py\', \'lib/python3.6/site-packages/sympy/vector/tests/test_dyadic.py\', \'lib/python3.6/site-packages/sympy/vector/tests/test_field_functions.py\', \'lib/python3.6/site-packages/sympy/vector/tests/test_functions.py\', \'lib/python3.6/site-packages/sympy/vector/tests/test_printing.py\', \'lib/python3.6/site-packages/sympy/vector/tests/test_vector.py\', \'lib/python3.6/site-packages/sympy/vector/vector.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/sympy-1.0-py36_0\', type=1))", "defaults::terminado-0.6-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'ptyprocess\', \'python 3.6*\', \'tornado >=4.0\'), license=\'BSD\', md5=\'e6d71011f1336aefba33bb4ee12db999\', name=\'terminado\', platform=\'linux\', subdir=\'linux-64\', version=\'0.6\', fn=\'terminado-0.6-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/terminado-0.6-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/terminado-0.6-py3.6.egg-info\', \'lib/python3.6/site-packages/terminado/__init__.py\', \'lib/python3.6/site-packages/terminado/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/__pycache__/management.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/__pycache__/uimodule.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/__pycache__/websocket.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/_static/terminado.js\', \'lib/python3.6/site-packages/terminado/management.py\', \'lib/python3.6/site-packages/terminado/tests/__init__.py\', \'lib/python3.6/site-packages/terminado/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/tests/__pycache__/basic_test.cpython-36.pyc\', \'lib/python3.6/site-packages/terminado/tests/basic_test.py\', \'lib/python3.6/site-packages/terminado/uimod_embed.js\', \'lib/python3.6/site-packages/terminado/uimodule.py\', \'lib/python3.6/site-packages/terminado/websocket.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/terminado-0.6-py36_0\', type=1))", "defaults::tk-8.5.18-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'BSD-style\', md5=\'902f0fd689a01a835c9e69aefbe58fdd\', name=\'tk\', platform=\'linux\', requires=(), version=\'8.5.18\', fn=\'tk-8.5.18-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/tk-8.5.18-0.tar.bz2\', files=(\'bin/tclsh8.5\', \'bin/wish8.5\', \'include/tcl.h\', \'include/tclDecls.h\', \'include/tclPlatDecls.h\', \'include/tclTomMath.h\', \'include/tclTomMathDecls.h\', \'include/tk.h\', \'include/tkDecls.h\', \'include/tkPlatDecls.h\', \'lib/libtcl8.5.so\', \'lib/libtclstub8.5.a\', \'lib/libtk8.5.so\', \'lib/libtkstub8.5.a\', \'lib/pkgconfig/tcl.pc\', \'lib/pkgconfig/tk.pc\', \'lib/tcl8.5/auto.tcl\', \'lib/tcl8.5/clock.tcl\', \'lib/tcl8.5/encoding/ascii.enc\', \'lib/tcl8.5/encoding/big5.enc\', \'lib/tcl8.5/encoding/cp1250.enc\', \'lib/tcl8.5/encoding/cp1251.enc\', \'lib/tcl8.5/encoding/cp1252.enc\', \'lib/tcl8.5/encoding/cp1253.enc\', \'lib/tcl8.5/encoding/cp1254.enc\', \'lib/tcl8.5/encoding/cp1255.enc\', \'lib/tcl8.5/encoding/cp1256.enc\', \'lib/tcl8.5/encoding/cp1257.enc\', \'lib/tcl8.5/encoding/cp1258.enc\', \'lib/tcl8.5/encoding/cp437.enc\', \'lib/tcl8.5/encoding/cp737.enc\', \'lib/tcl8.5/encoding/cp775.enc\', \'lib/tcl8.5/encoding/cp850.enc\', \'lib/tcl8.5/encoding/cp852.enc\', \'lib/tcl8.5/encoding/cp855.enc\', \'lib/tcl8.5/encoding/cp857.enc\', \'lib/tcl8.5/encoding/cp860.enc\', \'lib/tcl8.5/encoding/cp861.enc\', \'lib/tcl8.5/encoding/cp862.enc\', \'lib/tcl8.5/encoding/cp863.enc\', \'lib/tcl8.5/encoding/cp864.enc\', \'lib/tcl8.5/encoding/cp865.enc\', \'lib/tcl8.5/encoding/cp866.enc\', \'lib/tcl8.5/encoding/cp869.enc\', \'lib/tcl8.5/encoding/cp874.enc\', \'lib/tcl8.5/encoding/cp932.enc\', \'lib/tcl8.5/encoding/cp936.enc\', \'lib/tcl8.5/encoding/cp949.enc\', \'lib/tcl8.5/encoding/cp950.enc\', \'lib/tcl8.5/encoding/dingbats.enc\', \'lib/tcl8.5/encoding/ebcdic.enc\', \'lib/tcl8.5/encoding/euc-cn.enc\', \'lib/tcl8.5/encoding/euc-jp.enc\', \'lib/tcl8.5/encoding/euc-kr.enc\', \'lib/tcl8.5/encoding/gb12345.enc\', \'lib/tcl8.5/encoding/gb1988.enc\', \'lib/tcl8.5/encoding/gb2312-raw.enc\', \'lib/tcl8.5/encoding/gb2312.enc\', \'lib/tcl8.5/encoding/iso2022-jp.enc\', \'lib/tcl8.5/encoding/iso2022-kr.enc\', \'lib/tcl8.5/encoding/iso2022.enc\', \'lib/tcl8.5/encoding/iso8859-1.enc\', \'lib/tcl8.5/encoding/iso8859-10.enc\', \'lib/tcl8.5/encoding/iso8859-13.enc\', \'lib/tcl8.5/encoding/iso8859-14.enc\', \'lib/tcl8.5/encoding/iso8859-15.enc\', \'lib/tcl8.5/encoding/iso8859-16.enc\', \'lib/tcl8.5/encoding/iso8859-2.enc\', \'lib/tcl8.5/encoding/iso8859-3.enc\', \'lib/tcl8.5/encoding/iso8859-4.enc\', \'lib/tcl8.5/encoding/iso8859-5.enc\', \'lib/tcl8.5/encoding/iso8859-6.enc\', \'lib/tcl8.5/encoding/iso8859-7.enc\', \'lib/tcl8.5/encoding/iso8859-8.enc\', \'lib/tcl8.5/encoding/iso8859-9.enc\', \'lib/tcl8.5/encoding/jis0201.enc\', \'lib/tcl8.5/encoding/jis0208.enc\', \'lib/tcl8.5/encoding/jis0212.enc\', \'lib/tcl8.5/encoding/koi8-r.enc\', \'lib/tcl8.5/encoding/koi8-u.enc\', \'lib/tcl8.5/encoding/ksc5601.enc\', \'lib/tcl8.5/encoding/macCentEuro.enc\', \'lib/tcl8.5/encoding/macCroatian.enc\', \'lib/tcl8.5/encoding/macCyrillic.enc\', \'lib/tcl8.5/encoding/macDingbats.enc\', \'lib/tcl8.5/encoding/macGreek.enc\', \'lib/tcl8.5/encoding/macIceland.enc\', \'lib/tcl8.5/encoding/macJapan.enc\', \'lib/tcl8.5/encoding/macRoman.enc\', \'lib/tcl8.5/encoding/macRomania.enc\', \'lib/tcl8.5/encoding/macThai.enc\', \'lib/tcl8.5/encoding/macTurkish.enc\', \'lib/tcl8.5/encoding/macUkraine.enc\', \'lib/tcl8.5/encoding/shiftjis.enc\', \'lib/tcl8.5/encoding/symbol.enc\', \'lib/tcl8.5/encoding/tis-620.enc\', \'lib/tcl8.5/history.tcl\', \'lib/tcl8.5/http1.0/http.tcl\', \'lib/tcl8.5/http1.0/pkgIndex.tcl\', \'lib/tcl8.5/init.tcl\', \'lib/tcl8.5/msgs/af.msg\', \'lib/tcl8.5/msgs/af_za.msg\', \'lib/tcl8.5/msgs/ar.msg\', \'lib/tcl8.5/msgs/ar_in.msg\', \'lib/tcl8.5/msgs/ar_jo.msg\', \'lib/tcl8.5/msgs/ar_lb.msg\', \'lib/tcl8.5/msgs/ar_sy.msg\', \'lib/tcl8.5/msgs/be.msg\', \'lib/tcl8.5/msgs/bg.msg\', \'lib/tcl8.5/msgs/bn.msg\', \'lib/tcl8.5/msgs/bn_in.msg\', \'lib/tcl8.5/msgs/ca.msg\', \'lib/tcl8.5/msgs/cs.msg\', \'lib/tcl8.5/msgs/da.msg\', \'lib/tcl8.5/msgs/de.msg\', \'lib/tcl8.5/msgs/de_at.msg\', \'lib/tcl8.5/msgs/de_be.msg\', \'lib/tcl8.5/msgs/el.msg\', \'lib/tcl8.5/msgs/en_au.msg\', \'lib/tcl8.5/msgs/en_be.msg\', \'lib/tcl8.5/msgs/en_bw.msg\', \'lib/tcl8.5/msgs/en_ca.msg\', \'lib/tcl8.5/msgs/en_gb.msg\', \'lib/tcl8.5/msgs/en_hk.msg\', \'lib/tcl8.5/msgs/en_ie.msg\', \'lib/tcl8.5/msgs/en_in.msg\', \'lib/tcl8.5/msgs/en_nz.msg\', \'lib/tcl8.5/msgs/en_ph.msg\', \'lib/tcl8.5/msgs/en_sg.msg\', \'lib/tcl8.5/msgs/en_za.msg\', \'lib/tcl8.5/msgs/en_zw.msg\', \'lib/tcl8.5/msgs/eo.msg\', \'lib/tcl8.5/msgs/es.msg\', \'lib/tcl8.5/msgs/es_ar.msg\', \'lib/tcl8.5/msgs/es_bo.msg\', \'lib/tcl8.5/msgs/es_cl.msg\', \'lib/tcl8.5/msgs/es_co.msg\', \'lib/tcl8.5/msgs/es_cr.msg\', \'lib/tcl8.5/msgs/es_do.msg\', \'lib/tcl8.5/msgs/es_ec.msg\', \'lib/tcl8.5/msgs/es_gt.msg\', \'lib/tcl8.5/msgs/es_hn.msg\', \'lib/tcl8.5/msgs/es_mx.msg\', \'lib/tcl8.5/msgs/es_ni.msg\', \'lib/tcl8.5/msgs/es_pa.msg\', \'lib/tcl8.5/msgs/es_pe.msg\', \'lib/tcl8.5/msgs/es_pr.msg\', \'lib/tcl8.5/msgs/es_py.msg\', \'lib/tcl8.5/msgs/es_sv.msg\', \'lib/tcl8.5/msgs/es_uy.msg\', \'lib/tcl8.5/msgs/es_ve.msg\', \'lib/tcl8.5/msgs/et.msg\', \'lib/tcl8.5/msgs/eu.msg\', \'lib/tcl8.5/msgs/eu_es.msg\', \'lib/tcl8.5/msgs/fa.msg\', \'lib/tcl8.5/msgs/fa_in.msg\', \'lib/tcl8.5/msgs/fa_ir.msg\', \'lib/tcl8.5/msgs/fi.msg\', \'lib/tcl8.5/msgs/fo.msg\', \'lib/tcl8.5/msgs/fo_fo.msg\', \'lib/tcl8.5/msgs/fr.msg\', \'lib/tcl8.5/msgs/fr_be.msg\', \'lib/tcl8.5/msgs/fr_ca.msg\', \'lib/tcl8.5/msgs/fr_ch.msg\', \'lib/tcl8.5/msgs/ga.msg\', \'lib/tcl8.5/msgs/ga_ie.msg\', \'lib/tcl8.5/msgs/gl.msg\', \'lib/tcl8.5/msgs/gl_es.msg\', \'lib/tcl8.5/msgs/gv.msg\', \'lib/tcl8.5/msgs/gv_gb.msg\', \'lib/tcl8.5/msgs/he.msg\', \'lib/tcl8.5/msgs/hi.msg\', \'lib/tcl8.5/msgs/hi_in.msg\', \'lib/tcl8.5/msgs/hr.msg\', \'lib/tcl8.5/msgs/hu.msg\', \'lib/tcl8.5/msgs/id.msg\', \'lib/tcl8.5/msgs/id_id.msg\', \'lib/tcl8.5/msgs/is.msg\', \'lib/tcl8.5/msgs/it.msg\', \'lib/tcl8.5/msgs/it_ch.msg\', \'lib/tcl8.5/msgs/ja.msg\', \'lib/tcl8.5/msgs/kl.msg\', \'lib/tcl8.5/msgs/kl_gl.msg\', \'lib/tcl8.5/msgs/ko.msg\', \'lib/tcl8.5/msgs/ko_kr.msg\', \'lib/tcl8.5/msgs/kok.msg\', \'lib/tcl8.5/msgs/kok_in.msg\', \'lib/tcl8.5/msgs/kw.msg\', \'lib/tcl8.5/msgs/kw_gb.msg\', \'lib/tcl8.5/msgs/lt.msg\', \'lib/tcl8.5/msgs/lv.msg\', \'lib/tcl8.5/msgs/mk.msg\', \'lib/tcl8.5/msgs/mr.msg\', \'lib/tcl8.5/msgs/mr_in.msg\', \'lib/tcl8.5/msgs/ms.msg\', \'lib/tcl8.5/msgs/ms_my.msg\', \'lib/tcl8.5/msgs/mt.msg\', \'lib/tcl8.5/msgs/nb.msg\', \'lib/tcl8.5/msgs/nl.msg\', \'lib/tcl8.5/msgs/nl_be.msg\', \'lib/tcl8.5/msgs/nn.msg\', \'lib/tcl8.5/msgs/pl.msg\', \'lib/tcl8.5/msgs/pt.msg\', \'lib/tcl8.5/msgs/pt_br.msg\', \'lib/tcl8.5/msgs/ro.msg\', \'lib/tcl8.5/msgs/ru.msg\', \'lib/tcl8.5/msgs/ru_ua.msg\', \'lib/tcl8.5/msgs/sh.msg\', \'lib/tcl8.5/msgs/sk.msg\', \'lib/tcl8.5/msgs/sl.msg\', \'lib/tcl8.5/msgs/sq.msg\', \'lib/tcl8.5/msgs/sr.msg\', \'lib/tcl8.5/msgs/sv.msg\', \'lib/tcl8.5/msgs/sw.msg\', \'lib/tcl8.5/msgs/ta.msg\', \'lib/tcl8.5/msgs/ta_in.msg\', \'lib/tcl8.5/msgs/te.msg\', \'lib/tcl8.5/msgs/te_in.msg\', \'lib/tcl8.5/msgs/th.msg\', \'lib/tcl8.5/msgs/tr.msg\', \'lib/tcl8.5/msgs/uk.msg\', \'lib/tcl8.5/msgs/vi.msg\', \'lib/tcl8.5/msgs/zh.msg\', \'lib/tcl8.5/msgs/zh_cn.msg\', \'lib/tcl8.5/msgs/zh_hk.msg\', \'lib/tcl8.5/msgs/zh_sg.msg\', \'lib/tcl8.5/msgs/zh_tw.msg\', \'lib/tcl8.5/opt0.4/optparse.tcl\', \'lib/tcl8.5/opt0.4/pkgIndex.tcl\', \'lib/tcl8.5/package.tcl\', \'lib/tcl8.5/parray.tcl\', \'lib/tcl8.5/safe.tcl\', \'lib/tcl8.5/tclAppInit.c\', \'lib/tcl8.5/tclIndex\', \'lib/tcl8.5/tm.tcl\', \'lib/tcl8.5/word.tcl\', \'lib/tcl8/8.4/http-2.7.13.tm\', \'lib/tcl8/8.4/platform-1.0.13.tm\', \'lib/tcl8/8.4/platform/shell-1.1.4.tm\', \'lib/tcl8/8.5/msgcat-1.5.2.tm\', \'lib/tcl8/8.5/tcltest-2.3.8.tm\', \'lib/tclConfig.sh\', \'lib/tk8.5/bgerror.tcl\', \'lib/tk8.5/button.tcl\', \'lib/tk8.5/choosedir.tcl\', \'lib/tk8.5/clrpick.tcl\', \'lib/tk8.5/comdlg.tcl\', \'lib/tk8.5/console.tcl\', \'lib/tk8.5/demos/README\', \'lib/tk8.5/demos/anilabel.tcl\', \'lib/tk8.5/demos/aniwave.tcl\', \'lib/tk8.5/demos/arrow.tcl\', \'lib/tk8.5/demos/bind.tcl\', \'lib/tk8.5/demos/bitmap.tcl\', \'lib/tk8.5/demos/browse\', \'lib/tk8.5/demos/button.tcl\', \'lib/tk8.5/demos/check.tcl\', \'lib/tk8.5/demos/clrpick.tcl\', \'lib/tk8.5/demos/colors.tcl\', \'lib/tk8.5/demos/combo.tcl\', \'lib/tk8.5/demos/cscroll.tcl\', \'lib/tk8.5/demos/ctext.tcl\', \'lib/tk8.5/demos/dialog1.tcl\', \'lib/tk8.5/demos/dialog2.tcl\', \'lib/tk8.5/demos/en.msg\', \'lib/tk8.5/demos/entry1.tcl\', \'lib/tk8.5/demos/entry2.tcl\', \'lib/tk8.5/demos/entry3.tcl\', \'lib/tk8.5/demos/filebox.tcl\', \'lib/tk8.5/demos/floor.tcl\', \'lib/tk8.5/demos/form.tcl\', \'lib/tk8.5/demos/goldberg.tcl\', \'lib/tk8.5/demos/hello\', \'lib/tk8.5/demos/hscale.tcl\', \'lib/tk8.5/demos/icon.tcl\', \'lib/tk8.5/demos/image1.tcl\', \'lib/tk8.5/demos/image2.tcl\', \'lib/tk8.5/demos/images/earth.gif\', \'lib/tk8.5/demos/images/earthris.gif\', \'lib/tk8.5/demos/images/face.xbm\', \'lib/tk8.5/demos/images/flagdown.xbm\', \'lib/tk8.5/demos/images/flagup.xbm\', \'lib/tk8.5/demos/images/gray25.xbm\', \'lib/tk8.5/demos/images/letters.xbm\', \'lib/tk8.5/demos/images/noletter.xbm\', \'lib/tk8.5/demos/images/pattern.xbm\', \'lib/tk8.5/demos/images/tcllogo.gif\', \'lib/tk8.5/demos/images/teapot.ppm\', \'lib/tk8.5/demos/items.tcl\', \'lib/tk8.5/demos/ixset\', \'lib/tk8.5/demos/knightstour.tcl\', \'lib/tk8.5/demos/label.tcl\', \'lib/tk8.5/demos/labelframe.tcl\', \'lib/tk8.5/demos/license.terms\', \'lib/tk8.5/demos/mclist.tcl\', \'lib/tk8.5/demos/menu.tcl\', \'lib/tk8.5/demos/menubu.tcl\', \'lib/tk8.5/demos/msgbox.tcl\', \'lib/tk8.5/demos/nl.msg\', \'lib/tk8.5/demos/paned1.tcl\', \'lib/tk8.5/demos/paned2.tcl\', \'lib/tk8.5/demos/pendulum.tcl\', \'lib/tk8.5/demos/plot.tcl\', \'lib/tk8.5/demos/puzzle.tcl\', \'lib/tk8.5/demos/radio.tcl\', \'lib/tk8.5/demos/rmt\', \'lib/tk8.5/demos/rolodex\', \'lib/tk8.5/demos/ruler.tcl\', \'lib/tk8.5/demos/sayings.tcl\', \'lib/tk8.5/demos/search.tcl\', \'lib/tk8.5/demos/spin.tcl\', \'lib/tk8.5/demos/states.tcl\', \'lib/tk8.5/demos/style.tcl\', \'lib/tk8.5/demos/tclIndex\', \'lib/tk8.5/demos/tcolor\', \'lib/tk8.5/demos/text.tcl\', \'lib/tk8.5/demos/textpeer.tcl\', \'lib/tk8.5/demos/timer\', \'lib/tk8.5/demos/toolbar.tcl\', \'lib/tk8.5/demos/tree.tcl\', \'lib/tk8.5/demos/ttkbut.tcl\', \'lib/tk8.5/demos/ttkmenu.tcl\', \'lib/tk8.5/demos/ttknote.tcl\', \'lib/tk8.5/demos/ttkpane.tcl\', \'lib/tk8.5/demos/ttkprogress.tcl\', \'lib/tk8.5/demos/ttkscale.tcl\', \'lib/tk8.5/demos/twind.tcl\', \'lib/tk8.5/demos/unicodeout.tcl\', \'lib/tk8.5/demos/vscale.tcl\', \'lib/tk8.5/demos/widget\', \'lib/tk8.5/dialog.tcl\', \'lib/tk8.5/entry.tcl\', \'lib/tk8.5/focus.tcl\', \'lib/tk8.5/images/README\', \'lib/tk8.5/images/logo.eps\', \'lib/tk8.5/images/logo100.gif\', \'lib/tk8.5/images/logo64.gif\', \'lib/tk8.5/images/logoLarge.gif\', \'lib/tk8.5/images/logoMed.gif\', \'lib/tk8.5/images/pwrdLogo.eps\', \'lib/tk8.5/images/pwrdLogo100.gif\', \'lib/tk8.5/images/pwrdLogo150.gif\', \'lib/tk8.5/images/pwrdLogo175.gif\', \'lib/tk8.5/images/pwrdLogo200.gif\', \'lib/tk8.5/images/pwrdLogo75.gif\', \'lib/tk8.5/images/tai-ku.gif\', \'lib/tk8.5/listbox.tcl\', \'lib/tk8.5/menu.tcl\', \'lib/tk8.5/mkpsenc.tcl\', \'lib/tk8.5/msgbox.tcl\', \'lib/tk8.5/msgs/cs.msg\', \'lib/tk8.5/msgs/da.msg\', \'lib/tk8.5/msgs/de.msg\', \'lib/tk8.5/msgs/el.msg\', \'lib/tk8.5/msgs/en.msg\', \'lib/tk8.5/msgs/en_gb.msg\', \'lib/tk8.5/msgs/eo.msg\', \'lib/tk8.5/msgs/es.msg\', \'lib/tk8.5/msgs/fr.msg\', \'lib/tk8.5/msgs/hu.msg\', \'lib/tk8.5/msgs/it.msg\', \'lib/tk8.5/msgs/nl.msg\', \'lib/tk8.5/msgs/pl.msg\', \'lib/tk8.5/msgs/pt.msg\', \'lib/tk8.5/msgs/ru.msg\', \'lib/tk8.5/msgs/sv.msg\', \'lib/tk8.5/obsolete.tcl\', \'lib/tk8.5/optMenu.tcl\', \'lib/tk8.5/palette.tcl\', \'lib/tk8.5/panedwindow.tcl\', \'lib/tk8.5/pkgIndex.tcl\', \'lib/tk8.5/safetk.tcl\', \'lib/tk8.5/scale.tcl\', \'lib/tk8.5/scrlbar.tcl\', \'lib/tk8.5/spinbox.tcl\', \'lib/tk8.5/tclIndex\', \'lib/tk8.5/tearoff.tcl\', \'lib/tk8.5/text.tcl\', \'lib/tk8.5/tk.tcl\', \'lib/tk8.5/tkAppInit.c\', \'lib/tk8.5/tkfbox.tcl\', \'lib/tk8.5/ttk/altTheme.tcl\', \'lib/tk8.5/ttk/aquaTheme.tcl\', \'lib/tk8.5/ttk/button.tcl\', \'lib/tk8.5/ttk/clamTheme.tcl\', \'lib/tk8.5/ttk/classicTheme.tcl\', \'lib/tk8.5/ttk/combobox.tcl\', \'lib/tk8.5/ttk/cursors.tcl\', \'lib/tk8.5/ttk/defaults.tcl\', \'lib/tk8.5/ttk/entry.tcl\', \'lib/tk8.5/ttk/fonts.tcl\', \'lib/tk8.5/ttk/menubutton.tcl\', \'lib/tk8.5/ttk/notebook.tcl\', \'lib/tk8.5/ttk/panedwindow.tcl\', \'lib/tk8.5/ttk/progress.tcl\', \'lib/tk8.5/ttk/scale.tcl\', \'lib/tk8.5/ttk/scrollbar.tcl\', \'lib/tk8.5/ttk/sizegrip.tcl\', \'lib/tk8.5/ttk/spinbox.tcl\', \'lib/tk8.5/ttk/treeview.tcl\', \'lib/tk8.5/ttk/ttk.tcl\', \'lib/tk8.5/ttk/utils.tcl\', \'lib/tk8.5/ttk/vistaTheme.tcl\', \'lib/tk8.5/ttk/winTheme.tcl\', \'lib/tk8.5/ttk/xpTheme.tcl\', \'lib/tk8.5/unsupported.tcl\', \'lib/tk8.5/xmfbox.tcl\', \'lib/tkConfig.sh\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/tk-8.5.18-0\', type=1))", "defaults::toolz-0.8.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'27837c98525c1985c83a7ce323173ebc\', name=\'toolz\', platform=\'linux\', subdir=\'linux-64\', version=\'0.8.2\', fn=\'toolz-0.8.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/toolz-0.8.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/tlz/__init__.py\', \'lib/python3.6/site-packages/tlz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tlz/__pycache__/_build_tlz.cpython-36.pyc\', \'lib/python3.6/site-packages/tlz/_build_tlz.py\', \'lib/python3.6/site-packages/toolz-0.8.2-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/toolz-0.8.2-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/toolz-0.8.2-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/toolz-0.8.2-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/toolz-0.8.2-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/toolz/__init__.py\', \'lib/python3.6/site-packages/toolz/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/dicttoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/functoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/itertoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/recipes.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/_signatures.py\', \'lib/python3.6/site-packages/toolz/compatibility.py\', \'lib/python3.6/site-packages/toolz/curried/__init__.py\', \'lib/python3.6/site-packages/toolz/curried/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/curried/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/curried/__pycache__/operator.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/curried/exceptions.py\', \'lib/python3.6/site-packages/toolz/curried/operator.py\', \'lib/python3.6/site-packages/toolz/dicttoolz.py\', \'lib/python3.6/site-packages/toolz/functoolz.py\', \'lib/python3.6/site-packages/toolz/itertoolz.py\', \'lib/python3.6/site-packages/toolz/recipes.py\', \'lib/python3.6/site-packages/toolz/sandbox/__init__.py\', \'lib/python3.6/site-packages/toolz/sandbox/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/sandbox/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/sandbox/__pycache__/parallel.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/sandbox/core.py\', \'lib/python3.6/site-packages/toolz/sandbox/parallel.py\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_curried.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_curried_doctests.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_dicttoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_functoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_inspect_args.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_itertoolz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_recipes.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_serialization.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_tlz.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/__pycache__/test_utils.cpython-36.pyc\', \'lib/python3.6/site-packages/toolz/tests/test_compatibility.py\', \'lib/python3.6/site-packages/toolz/tests/test_curried.py\', \'lib/python3.6/site-packages/toolz/tests/test_curried_doctests.py\', \'lib/python3.6/site-packages/toolz/tests/test_dicttoolz.py\', \'lib/python3.6/site-packages/toolz/tests/test_functoolz.py\', \'lib/python3.6/site-packages/toolz/tests/test_inspect_args.py\', \'lib/python3.6/site-packages/toolz/tests/test_itertoolz.py\', \'lib/python3.6/site-packages/toolz/tests/test_recipes.py\', \'lib/python3.6/site-packages/toolz/tests/test_serialization.py\', \'lib/python3.6/site-packages/toolz/tests/test_signatures.py\', \'lib/python3.6/site-packages/toolz/tests/test_tlz.py\', \'lib/python3.6/site-packages/toolz/tests/test_utils.py\', \'lib/python3.6/site-packages/toolz/utils.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/toolz-0.8.2-py36_0\', type=1))", "defaults::tornado-4.4.2-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'Apache\', md5=\'aa6e74615a90ca9398153bfed49384d2\', name=\'tornado\', platform=\'linux\', subdir=\'linux-64\', version=\'4.4.2\', fn=\'tornado-4.4.2-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/tornado-4.4.2-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/tornado-4.4.2-py3.6.egg-info\', \'lib/python3.6/site-packages/tornado/__init__.py\', \'lib/python3.6/site-packages/tornado/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/_locale_data.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/auth.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/autoreload.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/concurrent.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/curl_httpclient.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/escape.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/gen.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/http1connection.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/httpclient.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/httpserver.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/httputil.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/ioloop.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/iostream.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/locale.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/locks.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/netutil.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/options.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/process.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/queues.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/simple_httpclient.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/stack_context.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/tcpclient.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/tcpserver.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/template.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/testing.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/web.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/websocket.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/__pycache__/wsgi.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/_locale_data.py\', \'lib/python3.6/site-packages/tornado/auth.py\', \'lib/python3.6/site-packages/tornado/autoreload.py\', \'lib/python3.6/site-packages/tornado/concurrent.py\', \'lib/python3.6/site-packages/tornado/curl_httpclient.py\', \'lib/python3.6/site-packages/tornado/escape.py\', \'lib/python3.6/site-packages/tornado/gen.py\', \'lib/python3.6/site-packages/tornado/http1connection.py\', \'lib/python3.6/site-packages/tornado/httpclient.py\', \'lib/python3.6/site-packages/tornado/httpserver.py\', \'lib/python3.6/site-packages/tornado/httputil.py\', \'lib/python3.6/site-packages/tornado/ioloop.py\', \'lib/python3.6/site-packages/tornado/iostream.py\', \'lib/python3.6/site-packages/tornado/locale.py\', \'lib/python3.6/site-packages/tornado/locks.py\', \'lib/python3.6/site-packages/tornado/log.py\', \'lib/python3.6/site-packages/tornado/netutil.py\', \'lib/python3.6/site-packages/tornado/options.py\', \'lib/python3.6/site-packages/tornado/platform/__init__.py\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/asyncio.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/auto.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/caresresolver.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/common.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/epoll.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/interface.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/kqueue.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/posix.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/select.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/twisted.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/__pycache__/windows.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/platform/asyncio.py\', \'lib/python3.6/site-packages/tornado/platform/auto.py\', \'lib/python3.6/site-packages/tornado/platform/caresresolver.py\', \'lib/python3.6/site-packages/tornado/platform/common.py\', \'lib/python3.6/site-packages/tornado/platform/epoll.py\', \'lib/python3.6/site-packages/tornado/platform/interface.py\', \'lib/python3.6/site-packages/tornado/platform/kqueue.py\', \'lib/python3.6/site-packages/tornado/platform/posix.py\', \'lib/python3.6/site-packages/tornado/platform/select.py\', \'lib/python3.6/site-packages/tornado/platform/twisted.py\', \'lib/python3.6/site-packages/tornado/platform/windows.py\', \'lib/python3.6/site-packages/tornado/process.py\', \'lib/python3.6/site-packages/tornado/queues.py\', \'lib/python3.6/site-packages/tornado/simple_httpclient.py\', \'lib/python3.6/site-packages/tornado/speedups.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/tornado/stack_context.py\', \'lib/python3.6/site-packages/tornado/tcpclient.py\', \'lib/python3.6/site-packages/tornado/tcpserver.py\', \'lib/python3.6/site-packages/tornado/template.py\', \'lib/python3.6/site-packages/tornado/test/__init__.py\', \'lib/python3.6/site-packages/tornado/test/__main__.py\', \'lib/python3.6/site-packages/tornado/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/asyncio_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/auth_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/concurrent_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/curl_httpclient_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/escape_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/gen_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/http1connection_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/httpclient_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/httpserver_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/httputil_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/import_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/ioloop_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/iostream_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/locale_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/locks_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/log_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/netutil_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/options_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/process_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/queues_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/resolve_test_helper.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/runtests.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/simple_httpclient_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/stack_context_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/tcpclient_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/tcpserver_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/template_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/testing_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/twisted_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/util_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/web_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/websocket_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/windows_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/__pycache__/wsgi_test.cpython-36.pyc\', \'lib/python3.6/site-packages/tornado/test/asyncio_test.py\', \'lib/python3.6/site-packages/tornado/test/auth_test.py\', \'lib/python3.6/site-packages/tornado/test/concurrent_test.py\', \'lib/python3.6/site-packages/tornado/test/csv_translations/fr_FR.csv\', \'lib/python3.6/site-packages/tornado/test/curl_httpclient_test.py\', \'lib/python3.6/site-packages/tornado/test/escape_test.py\', \'lib/python3.6/site-packages/tornado/test/gen_test.py\', \'lib/python3.6/site-packages/tornado/test/gettext_translations/fr_FR/LC_MESSAGES/tornado_test.mo\', \'lib/python3.6/site-packages/tornado/test/gettext_translations/fr_FR/LC_MESSAGES/tornado_test.po\', \'lib/python3.6/site-packages/tornado/test/http1connection_test.py\', \'lib/python3.6/site-packages/tornado/test/httpclient_test.py\', \'lib/python3.6/site-packages/tornado/test/httpserver_test.py\', \'lib/python3.6/site-packages/tornado/test/httputil_test.py\', \'lib/python3.6/site-packages/tornado/test/import_test.py\', \'lib/python3.6/site-packages/tornado/test/ioloop_test.py\', \'lib/python3.6/site-packages/tornado/test/iostream_test.py\', \'lib/python3.6/site-packages/tornado/test/locale_test.py\', \'lib/python3.6/site-packages/tornado/test/locks_test.py\', \'lib/python3.6/site-packages/tornado/test/log_test.py\', \'lib/python3.6/site-packages/tornado/test/netutil_test.py\', \'lib/python3.6/site-packages/tornado/test/options_test.cfg\', \'lib/python3.6/site-packages/tornado/test/options_test.py\', \'lib/python3.6/site-packages/tornado/test/process_test.py\', \'lib/python3.6/site-packages/tornado/test/queues_test.py\', \'lib/python3.6/site-packages/tornado/test/resolve_test_helper.py\', \'lib/python3.6/site-packages/tornado/test/runtests.py\', \'lib/python3.6/site-packages/tornado/test/simple_httpclient_test.py\', \'lib/python3.6/site-packages/tornado/test/stack_context_test.py\', \'lib/python3.6/site-packages/tornado/test/static/dir/index.html\', \'lib/python3.6/site-packages/tornado/test/static/robots.txt\', \'lib/python3.6/site-packages/tornado/test/static/sample.xml\', \'lib/python3.6/site-packages/tornado/test/static/sample.xml.bz2\', \'lib/python3.6/site-packages/tornado/test/static/sample.xml.gz\', \'lib/python3.6/site-packages/tornado/test/static_foo.txt\', \'lib/python3.6/site-packages/tornado/test/tcpclient_test.py\', \'lib/python3.6/site-packages/tornado/test/tcpserver_test.py\', \'lib/python3.6/site-packages/tornado/test/template_test.py\', \'lib/python3.6/site-packages/tornado/test/templates/utf8.html\', \'lib/python3.6/site-packages/tornado/test/test.crt\', \'lib/python3.6/site-packages/tornado/test/test.key\', \'lib/python3.6/site-packages/tornado/test/testing_test.py\', \'lib/python3.6/site-packages/tornado/test/twisted_test.py\', \'lib/python3.6/site-packages/tornado/test/util.py\', \'lib/python3.6/site-packages/tornado/test/util_test.py\', \'lib/python3.6/site-packages/tornado/test/web_test.py\', \'lib/python3.6/site-packages/tornado/test/websocket_test.py\', \'lib/python3.6/site-packages/tornado/test/windows_test.py\', \'lib/python3.6/site-packages/tornado/test/wsgi_test.py\', \'lib/python3.6/site-packages/tornado/testing.py\', \'lib/python3.6/site-packages/tornado/util.py\', \'lib/python3.6/site-packages/tornado/web.py\', \'lib/python3.6/site-packages/tornado/websocket.py\', \'lib/python3.6/site-packages/tornado/wsgi.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/tornado-4.4.2-py36_0\', type=1))", "defaults::traitlets-4.3.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'decorator\', \'ipython_genutils\', \'python 3.6*\', \'six\'), license=\'BSD\', md5=\'622e380f71bcfadb643dfe4281508ac0\', name=\'traitlets\', platform=\'linux\', subdir=\'linux-64\', version=\'4.3.1\', fn=\'traitlets-4.3.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/traitlets-4.3.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/traitlets-4.3.1-py3.6.egg-info\', \'lib/python3.6/site-packages/traitlets/__init__.py\', \'lib/python3.6/site-packages/traitlets/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/__pycache__/log.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/__pycache__/traitlets.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/_version.py\', \'lib/python3.6/site-packages/traitlets/config/__init__.py\', \'lib/python3.6/site-packages/traitlets/config/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/__pycache__/application.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/__pycache__/configurable.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/__pycache__/loader.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/__pycache__/manager.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/application.py\', \'lib/python3.6/site-packages/traitlets/config/configurable.py\', \'lib/python3.6/site-packages/traitlets/config/loader.py\', \'lib/python3.6/site-packages/traitlets/config/manager.py\', \'lib/python3.6/site-packages/traitlets/config/tests/__init__.py\', \'lib/python3.6/site-packages/traitlets/config/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/tests/__pycache__/test_application.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/tests/__pycache__/test_configurable.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/tests/__pycache__/test_loader.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/config/tests/test_application.py\', \'lib/python3.6/site-packages/traitlets/config/tests/test_configurable.py\', \'lib/python3.6/site-packages/traitlets/config/tests/test_loader.py\', \'lib/python3.6/site-packages/traitlets/log.py\', \'lib/python3.6/site-packages/traitlets/tests/__init__.py\', \'lib/python3.6/site-packages/traitlets/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/tests/__pycache__/_warnings.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/tests/__pycache__/test_traitlets.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/tests/__pycache__/test_traitlets_enum.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/tests/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/tests/_warnings.py\', \'lib/python3.6/site-packages/traitlets/tests/test_traitlets.py\', \'lib/python3.6/site-packages/traitlets/tests/test_traitlets_enum.py\', \'lib/python3.6/site-packages/traitlets/tests/utils.py\', \'lib/python3.6/site-packages/traitlets/traitlets.py\', \'lib/python3.6/site-packages/traitlets/utils/__init__.py\', \'lib/python3.6/site-packages/traitlets/utils/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/__pycache__/bunch.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/__pycache__/getargspec.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/__pycache__/importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/__pycache__/sentinel.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/bunch.py\', \'lib/python3.6/site-packages/traitlets/utils/getargspec.py\', \'lib/python3.6/site-packages/traitlets/utils/importstring.py\', \'lib/python3.6/site-packages/traitlets/utils/sentinel.py\', \'lib/python3.6/site-packages/traitlets/utils/tests/__init__.py\', \'lib/python3.6/site-packages/traitlets/utils/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/tests/__pycache__/test_bunch.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/tests/__pycache__/test_importstring.cpython-36.pyc\', \'lib/python3.6/site-packages/traitlets/utils/tests/test_bunch.py\', \'lib/python3.6/site-packages/traitlets/utils/tests/test_importstring.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/traitlets-4.3.1-py36_0\', type=1))", "defaults::unicodecsv-0.14.1-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'ff8a7a925456e9096c31624ab4a8d2dc\', name=\'unicodecsv\', platform=\'linux\', subdir=\'linux-64\', version=\'0.14.1\', fn=\'unicodecsv-0.14.1-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/unicodecsv-0.14.1-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/unicodecsv-0.14.1-py3.6.egg-info\', \'lib/python3.6/site-packages/unicodecsv/__init__.py\', \'lib/python3.6/site-packages/unicodecsv/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/unicodecsv/__pycache__/py2.cpython-36.pyc\', \'lib/python3.6/site-packages/unicodecsv/__pycache__/py3.cpython-36.pyc\', \'lib/python3.6/site-packages/unicodecsv/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/unicodecsv/py2.py\', \'lib/python3.6/site-packages/unicodecsv/py3.py\', \'lib/python3.6/site-packages/unicodecsv/test.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/unicodecsv-0.14.1-py36_0\', type=1))", "defaults::wcwidth-0.1.7-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'e1e78c179cf3c91553aa727e112c642f\', name=\'wcwidth\', platform=\'linux\', subdir=\'linux-64\', version=\'0.1.7\', fn=\'wcwidth-0.1.7-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/wcwidth-0.1.7-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/wcwidth-0.1.7-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/wcwidth-0.1.7-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/wcwidth-0.1.7-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/wcwidth-0.1.7-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/wcwidth-0.1.7-py3.6.egg-info/zip-safe\', \'lib/python3.6/site-packages/wcwidth/__init__.py\', \'lib/python3.6/site-packages/wcwidth/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/__pycache__/table_wide.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/__pycache__/table_zero.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/__pycache__/wcwidth.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/table_wide.py\', \'lib/python3.6/site-packages/wcwidth/table_zero.py\', \'lib/python3.6/site-packages/wcwidth/tests/__init__.py\', \'lib/python3.6/site-packages/wcwidth/tests/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/tests/__pycache__/test_core.cpython-36.pyc\', \'lib/python3.6/site-packages/wcwidth/tests/test_core.py\', \'lib/python3.6/site-packages/wcwidth/wcwidth.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/wcwidth-0.1.7-py36_0\', type=1))", "defaults::werkzeug-0.11.15-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'b010cfa2321e8ffaf630f6ba15b9cc68\', name=\'werkzeug\', platform=\'linux\', subdir=\'linux-64\', version=\'0.11.15\', fn=\'werkzeug-0.11.15-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/werkzeug-0.11.15-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/Werkzeug-0.11.15-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/Werkzeug-0.11.15-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/Werkzeug-0.11.15-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/Werkzeug-0.11.15-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/Werkzeug-0.11.15-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/werkzeug/__init__.py\', \'lib/python3.6/site-packages/werkzeug/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/_compat.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/_internal.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/_reloader.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/datastructures.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/exceptions.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/filesystem.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/formparser.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/http.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/local.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/posixemulation.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/routing.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/script.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/security.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/serving.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/test.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/testapp.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/urls.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/useragents.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/utils.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/__pycache__/wsgi.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/_compat.py\', \'lib/python3.6/site-packages/werkzeug/_internal.py\', \'lib/python3.6/site-packages/werkzeug/_reloader.py\', \'lib/python3.6/site-packages/werkzeug/contrib/__init__.py\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/atom.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/cache.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/fixers.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/iterio.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/jsrouting.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/limiter.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/lint.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/profiler.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/securecookie.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/sessions.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/testtools.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/contrib/atom.py\', \'lib/python3.6/site-packages/werkzeug/contrib/cache.py\', \'lib/python3.6/site-packages/werkzeug/contrib/fixers.py\', \'lib/python3.6/site-packages/werkzeug/contrib/iterio.py\', \'lib/python3.6/site-packages/werkzeug/contrib/jsrouting.py\', \'lib/python3.6/site-packages/werkzeug/contrib/limiter.py\', \'lib/python3.6/site-packages/werkzeug/contrib/lint.py\', \'lib/python3.6/site-packages/werkzeug/contrib/profiler.py\', \'lib/python3.6/site-packages/werkzeug/contrib/securecookie.py\', \'lib/python3.6/site-packages/werkzeug/contrib/sessions.py\', \'lib/python3.6/site-packages/werkzeug/contrib/testtools.py\', \'lib/python3.6/site-packages/werkzeug/contrib/wrappers.py\', \'lib/python3.6/site-packages/werkzeug/datastructures.py\', \'lib/python3.6/site-packages/werkzeug/debug/__init__.py\', \'lib/python3.6/site-packages/werkzeug/debug/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/debug/__pycache__/console.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/debug/__pycache__/repr.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/debug/__pycache__/tbtools.cpython-36.pyc\', \'lib/python3.6/site-packages/werkzeug/debug/console.py\', \'lib/python3.6/site-packages/werkzeug/debug/repr.py\', \'lib/python3.6/site-packages/werkzeug/debug/shared/FONT_LICENSE\', \'lib/python3.6/site-packages/werkzeug/debug/shared/console.png\', \'lib/python3.6/site-packages/werkzeug/debug/shared/debugger.js\', \'lib/python3.6/site-packages/werkzeug/debug/shared/jquery.js\', \'lib/python3.6/site-packages/werkzeug/debug/shared/less.png\', \'lib/python3.6/site-packages/werkzeug/debug/shared/more.png\', \'lib/python3.6/site-packages/werkzeug/debug/shared/source.png\', \'lib/python3.6/site-packages/werkzeug/debug/shared/style.css\', \'lib/python3.6/site-packages/werkzeug/debug/shared/ubuntu.ttf\', \'lib/python3.6/site-packages/werkzeug/debug/tbtools.py\', \'lib/python3.6/site-packages/werkzeug/exceptions.py\', \'lib/python3.6/site-packages/werkzeug/filesystem.py\', \'lib/python3.6/site-packages/werkzeug/formparser.py\', \'lib/python3.6/site-packages/werkzeug/http.py\', \'lib/python3.6/site-packages/werkzeug/local.py\', \'lib/python3.6/site-packages/werkzeug/posixemulation.py\', \'lib/python3.6/site-packages/werkzeug/routing.py\', \'lib/python3.6/site-packages/werkzeug/script.py\', \'lib/python3.6/site-packages/werkzeug/security.py\', \'lib/python3.6/site-packages/werkzeug/serving.py\', \'lib/python3.6/site-packages/werkzeug/test.py\', \'lib/python3.6/site-packages/werkzeug/testapp.py\', \'lib/python3.6/site-packages/werkzeug/urls.py\', \'lib/python3.6/site-packages/werkzeug/useragents.py\', \'lib/python3.6/site-packages/werkzeug/utils.py\', \'lib/python3.6/site-packages/werkzeug/wrappers.py\', \'lib/python3.6/site-packages/werkzeug/wsgi.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/werkzeug-0.11.15-py36_0\', type=1))", "defaults::wheel-0.29.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'MIT\', md5=\'7850aa092a737bba0639ba729e49f47b\', name=\'wheel\', platform=\'linux\', subdir=\'linux-64\', version=\'0.29.0\', fn=\'wheel-0.29.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/wheel-0.29.0-py36_0.tar.bz2\', files=(\'bin/wheel\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/entry_points.txt\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/wheel-0.29.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/wheel/__init__.py\', \'lib/python3.6/site-packages/wheel/__main__.py\', \'lib/python3.6/site-packages/wheel/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/__main__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/archive.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/bdist_wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/decorator.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/egg2wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/install.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/metadata.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/paths.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/pep425tags.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/pkginfo.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/util.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/__pycache__/wininst2wheel.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/archive.py\', \'lib/python3.6/site-packages/wheel/bdist_wheel.py\', \'lib/python3.6/site-packages/wheel/decorator.py\', \'lib/python3.6/site-packages/wheel/egg2wheel.py\', \'lib/python3.6/site-packages/wheel/eggnames.txt\', \'lib/python3.6/site-packages/wheel/install.py\', \'lib/python3.6/site-packages/wheel/metadata.py\', \'lib/python3.6/site-packages/wheel/paths.py\', \'lib/python3.6/site-packages/wheel/pep425tags.py\', \'lib/python3.6/site-packages/wheel/pkginfo.py\', \'lib/python3.6/site-packages/wheel/signatures/__init__.py\', \'lib/python3.6/site-packages/wheel/signatures/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/signatures/__pycache__/djbec.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/signatures/__pycache__/ed25519py.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/signatures/__pycache__/keys.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/signatures/djbec.py\', \'lib/python3.6/site-packages/wheel/signatures/ed25519py.py\', \'lib/python3.6/site-packages/wheel/signatures/keys.py\', \'lib/python3.6/site-packages/wheel/test/__init__.py\', \'lib/python3.6/site-packages/wheel/test/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_basic.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_install.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_keys.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_paths.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_ranking.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_signatures.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_tagopt.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_tool.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/__pycache__/test_wheelfile.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/complex-dist/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/complex-dist/complexdist/__init__.py\', \'lib/python3.6/site-packages/wheel/test/complex-dist/complexdist/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/complex-dist/setup.py\', \'lib/python3.6/site-packages/wheel/test/headers.dist/__pycache__/headersdist.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/headers.dist/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/headers.dist/header.h\', \'lib/python3.6/site-packages/wheel/test/headers.dist/headersdist.py\', \'lib/python3.6/site-packages/wheel/test/headers.dist/setup.py\', \'lib/python3.6/site-packages/wheel/test/pydist-schema.json\', \'lib/python3.6/site-packages/wheel/test/simple.dist/__pycache__/setup.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/simple.dist/setup.py\', \'lib/python3.6/site-packages/wheel/test/simple.dist/simpledist/__init__.py\', \'lib/python3.6/site-packages/wheel/test/simple.dist/simpledist/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/test/test-1.0-py2.py3-none-win32.whl\', \'lib/python3.6/site-packages/wheel/test/test_basic.py\', \'lib/python3.6/site-packages/wheel/test/test_install.py\', \'lib/python3.6/site-packages/wheel/test/test_keys.py\', \'lib/python3.6/site-packages/wheel/test/test_paths.py\', \'lib/python3.6/site-packages/wheel/test/test_ranking.py\', \'lib/python3.6/site-packages/wheel/test/test_signatures.py\', \'lib/python3.6/site-packages/wheel/test/test_tagopt.py\', \'lib/python3.6/site-packages/wheel/test/test_tool.py\', \'lib/python3.6/site-packages/wheel/test/test_wheelfile.py\', \'lib/python3.6/site-packages/wheel/tool/__init__.py\', \'lib/python3.6/site-packages/wheel/tool/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wheel/util.py\', \'lib/python3.6/site-packages/wheel/wininst2wheel.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/wheel-0.29.0-py36_0\', type=1))", "defaults::widgetsnbextension-1.2.6-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'notebook >=4.2.0\', \'python 3.6*\'), license=\'BSD 3-clause\', license_family=\'BSD\', md5=\'d6dc02df90e6abf7518ba1bfc4be3f24\', name=\'widgetsnbextension\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.6\', fn=\'widgetsnbextension-1.2.6-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/widgetsnbextension-1.2.6-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/requires.txt\', \'lib/python3.6/site-packages/widgetsnbextension-1.2.6-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/widgetsnbextension/__init__.py\', \'lib/python3.6/site-packages/widgetsnbextension/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/widgetsnbextension/__pycache__/_version.cpython-36.pyc\', \'lib/python3.6/site-packages/widgetsnbextension/_version.py\', \'lib/python3.6/site-packages/widgetsnbextension/static/extension.js\', \'lib/python3.6/site-packages/widgetsnbextension/static/extension.js.map\', \'share/jupyter/nbextensions/jupyter-js-widgets/extension.js\', \'share/jupyter/nbextensions/jupyter-js-widgets/extension.js.map\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/widgetsnbextension-1.2.6-py36_0\', type=1))", "defaults::wrapt-1.10.8-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'8f4ae5cf7bd34b8540a4219fbe87f841\', name=\'wrapt\', platform=\'linux\', subdir=\'linux-64\', version=\'1.10.8\', fn=\'wrapt-1.10.8-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/wrapt-1.10.8-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/wrapt-1.10.8-py3.6.egg-info\', \'lib/python3.6/site-packages/wrapt/__init__.py\', \'lib/python3.6/site-packages/wrapt/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/wrapt/__pycache__/arguments.cpython-36.pyc\', \'lib/python3.6/site-packages/wrapt/__pycache__/decorators.cpython-36.pyc\', \'lib/python3.6/site-packages/wrapt/__pycache__/importer.cpython-36.pyc\', \'lib/python3.6/site-packages/wrapt/__pycache__/wrappers.cpython-36.pyc\', \'lib/python3.6/site-packages/wrapt/_wrappers.cpython-36m-x86_64-linux-gnu.so\', \'lib/python3.6/site-packages/wrapt/arguments.py\', \'lib/python3.6/site-packages/wrapt/decorators.py\', \'lib/python3.6/site-packages/wrapt/importer.py\', \'lib/python3.6/site-packages/wrapt/wrappers.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/wrapt-1.10.8-py36_0\', type=1))", "defaults::xlrd-1.0.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'b478781d3852b50d2529300174717191\', name=\'xlrd\', platform=\'linux\', subdir=\'linux-64\', version=\'1.0.0\', fn=\'xlrd-1.0.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/xlrd-1.0.0-py36_0.tar.bz2\', files=(\'bin/runxlrd.py\', \'lib/python3.6/site-packages/xlrd-1.0.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/xlrd-1.0.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/xlrd-1.0.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/xlrd-1.0.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/xlrd/__init__.py\', \'lib/python3.6/site-packages/xlrd/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/biffh.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/book.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/compdoc.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/formatting.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/formula.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/info.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/licences.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/sheet.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/timemachine.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/xldate.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/__pycache__/xlsx.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/biffh.py\', \'lib/python3.6/site-packages/xlrd/book.py\', \'lib/python3.6/site-packages/xlrd/compdoc.py\', \'lib/python3.6/site-packages/xlrd/doc/compdoc.html\', \'lib/python3.6/site-packages/xlrd/doc/xlrd.html\', \'lib/python3.6/site-packages/xlrd/examples/__pycache__/xlrdnameAPIdemo.cpython-36.pyc\', \'lib/python3.6/site-packages/xlrd/examples/namesdemo.xls\', \'lib/python3.6/site-packages/xlrd/examples/xlrdnameAPIdemo.py\', \'lib/python3.6/site-packages/xlrd/formatting.py\', \'lib/python3.6/site-packages/xlrd/formula.py\', \'lib/python3.6/site-packages/xlrd/info.py\', \'lib/python3.6/site-packages/xlrd/licences.py\', \'lib/python3.6/site-packages/xlrd/sheet.py\', \'lib/python3.6/site-packages/xlrd/timemachine.py\', \'lib/python3.6/site-packages/xlrd/xldate.py\', \'lib/python3.6/site-packages/xlrd/xlsx.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/xlrd-1.0.0-py36_0\', type=1))", "defaults::xlsxwriter-0.9.6-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'3bd9f9975d2c7dd2a209bd5707ee1011\', name=\'xlsxwriter\', platform=\'linux\', subdir=\'linux-64\', version=\'0.9.6\', fn=\'xlsxwriter-0.9.6-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/xlsxwriter-0.9.6-py36_0.tar.bz2\', files=(\'bin/vba_extract.py\', \'lib/python3.6/site-packages/XlsxWriter-0.9.6-py3.6.egg-info\', \'lib/python3.6/site-packages/xlsxwriter/__init__.py\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/app.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_area.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_bar.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_column.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_doughnut.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_line.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_pie.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_radar.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_scatter.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chart_stock.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/chartsheet.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/comments.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/compat_collections.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/compatibility.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/contenttypes.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/core.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/custom.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/drawing.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/format.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/packager.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/relationships.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/shape.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/sharedstrings.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/styles.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/table.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/theme.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/utility.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/vml.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/workbook.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/__pycache__/xmlwriter.cpython-36.pyc\', \'lib/python3.6/site-packages/xlsxwriter/app.py\', \'lib/python3.6/site-packages/xlsxwriter/chart.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_area.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_bar.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_column.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_doughnut.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_line.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_pie.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_radar.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_scatter.py\', \'lib/python3.6/site-packages/xlsxwriter/chart_stock.py\', \'lib/python3.6/site-packages/xlsxwriter/chartsheet.py\', \'lib/python3.6/site-packages/xlsxwriter/comments.py\', \'lib/python3.6/site-packages/xlsxwriter/compat_collections.py\', \'lib/python3.6/site-packages/xlsxwriter/compatibility.py\', \'lib/python3.6/site-packages/xlsxwriter/contenttypes.py\', \'lib/python3.6/site-packages/xlsxwriter/core.py\', \'lib/python3.6/site-packages/xlsxwriter/custom.py\', \'lib/python3.6/site-packages/xlsxwriter/drawing.py\', \'lib/python3.6/site-packages/xlsxwriter/format.py\', \'lib/python3.6/site-packages/xlsxwriter/packager.py\', \'lib/python3.6/site-packages/xlsxwriter/relationships.py\', \'lib/python3.6/site-packages/xlsxwriter/shape.py\', \'lib/python3.6/site-packages/xlsxwriter/sharedstrings.py\', \'lib/python3.6/site-packages/xlsxwriter/styles.py\', \'lib/python3.6/site-packages/xlsxwriter/table.py\', \'lib/python3.6/site-packages/xlsxwriter/theme.py\', \'lib/python3.6/site-packages/xlsxwriter/utility.py\', \'lib/python3.6/site-packages/xlsxwriter/vml.py\', \'lib/python3.6/site-packages/xlsxwriter/workbook.py\', \'lib/python3.6/site-packages/xlsxwriter/worksheet.py\', \'lib/python3.6/site-packages/xlsxwriter/xmlwriter.py\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/xlsxwriter-0.9.6-py36_0\', type=1))", "defaults::xlwt-1.2.0-py36_0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'py36_0\', build_number=0, depends=(\'python 3.6*\',), license=\'BSD\', md5=\'c191a1b4b283a5c952da97754a1452d0\', name=\'xlwt\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.0\', fn=\'xlwt-1.2.0-py36_0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/xlwt-1.2.0-py36_0.tar.bz2\', files=(\'lib/python3.6/site-packages/xlwt-1.2.0-py3.6.egg-info/PKG-INFO\', \'lib/python3.6/site-packages/xlwt-1.2.0-py3.6.egg-info/SOURCES.txt\', \'lib/python3.6/site-packages/xlwt-1.2.0-py3.6.egg-info/dependency_links.txt\', \'lib/python3.6/site-packages/xlwt-1.2.0-py3.6.egg-info/not-zip-safe\', \'lib/python3.6/site-packages/xlwt-1.2.0-py3.6.egg-info/top_level.txt\', \'lib/python3.6/site-packages/xlwt/BIFFRecords.py\', \'lib/python3.6/site-packages/xlwt/Bitmap.py\', \'lib/python3.6/site-packages/xlwt/Cell.py\', \'lib/python3.6/site-packages/xlwt/Column.py\', \'lib/python3.6/site-packages/xlwt/CompoundDoc.py\', \'lib/python3.6/site-packages/xlwt/ExcelFormula.py\', \'lib/python3.6/site-packages/xlwt/ExcelFormulaLexer.py\', \'lib/python3.6/site-packages/xlwt/ExcelFormulaParser.py\', \'lib/python3.6/site-packages/xlwt/ExcelMagic.py\', \'lib/python3.6/site-packages/xlwt/Formatting.py\', \'lib/python3.6/site-packages/xlwt/Row.py\', \'lib/python3.6/site-packages/xlwt/Style.py\', \'lib/python3.6/site-packages/xlwt/UnicodeUtils.py\', \'lib/python3.6/site-packages/xlwt/Utils.py\', \'lib/python3.6/site-packages/xlwt/Workbook.py\', \'lib/python3.6/site-packages/xlwt/Worksheet.py\', \'lib/python3.6/site-packages/xlwt/__init__.py\', \'lib/python3.6/site-packages/xlwt/__pycache__/BIFFRecords.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Bitmap.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Cell.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Column.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/CompoundDoc.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/ExcelFormula.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/ExcelFormulaLexer.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/ExcelFormulaParser.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/ExcelMagic.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Formatting.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Row.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Style.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/UnicodeUtils.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Utils.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Workbook.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/Worksheet.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/__init__.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/antlr.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/__pycache__/compat.cpython-36.pyc\', \'lib/python3.6/site-packages/xlwt/antlr.py\', \'lib/python3.6/site-packages/xlwt/compat.py\', \'lib/python3.6/site-packages/xlwt/excel-formula.g\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/xlwt-1.2.0-py36_0\', type=1))", "defaults::xz-5.2.2-1": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'1\', build_number=1, depends=(), license=\'Public-Domain, GPL\', license_family=\'GPL2\', md5=\'6352a951a56d7e96a49cbcb3abdda7ed\', name=\'xz\', platform=\'linux\', subdir=\'linux-64\', version=\'5.2.2\', fn=\'xz-5.2.2-1.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/xz-5.2.2-1.tar.bz2\', files=(\'bin/unxz\', \'bin/xz\', \'include/lzma.h\', \'include/lzma/base.h\', \'include/lzma/bcj.h\', \'include/lzma/block.h\', \'include/lzma/check.h\', \'include/lzma/container.h\', \'include/lzma/delta.h\', \'include/lzma/filter.h\', \'include/lzma/hardware.h\', \'include/lzma/index.h\', \'include/lzma/index_hash.h\', \'include/lzma/lzma12.h\', \'include/lzma/stream_flags.h\', \'include/lzma/version.h\', \'include/lzma/vli.h\', \'lib/liblzma.a\', \'lib/liblzma.la\', \'lib/liblzma.so\', \'lib/liblzma.so.5\', \'lib/liblzma.so.5.2.2\', \'lib/pkgconfig/liblzma.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/xz-5.2.2-1\', type=1))", "defaults::yaml-0.1.6-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(), license=\'MIT\', md5=\'dac36570434ddc9e16e54709c114bd96\', name=\'yaml\', platform=\'linux\', requires=(), version=\'0.1.6\', fn=\'yaml-0.1.6-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/yaml-0.1.6-0.tar.bz2\', files=(\'include/yaml.h\', \'lib/libyaml-0.so.2\', \'lib/libyaml-0.so.2.0.4\', \'lib/libyaml.a\', \'lib/libyaml.la\', \'lib/libyaml.so\', \'lib/pkgconfig/yaml-0.1.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/yaml-0.1.6-0\', type=1))", "defaults::zeromq-4.1.5-0": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'0\', build_number=0, depends=(\'libsodium 1.0.*\',), license=\'LGPL\', md5=\'07fe48d7c52cfb01eb38d13ac7ccc237\', name=\'zeromq\', platform=\'linux\', subdir=\'linux-64\', version=\'4.1.5\', fn=\'zeromq-4.1.5-0.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/zeromq-4.1.5-0.tar.bz2\', files=(\'bin/curve_keygen\', \'include/zmq.h\', \'include/zmq_utils.h\', \'lib/libzmq.a\', \'lib/libzmq.la\', \'lib/libzmq.so\', \'lib/libzmq.so.5\', \'lib/libzmq.so.5.0.1\', \'lib/pkgconfig/libzmq.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/zeromq-4.1.5-0\', type=1))", "defaults::zlib-1.2.8-3": "IndexRecord(_IndexRecord__initd=True, arch=\'x86_64\', build=\'3\', build_number=3, depends=(), license=\'zlib (http://zlib.net/zlib_license.html)\', license_family=\'Other\', md5=\'60d5ea874984e4c750f187a26c827382\', name=\'zlib\', platform=\'linux\', subdir=\'linux-64\', version=\'1.2.8\', fn=\'zlib-1.2.8-3.tar.bz2\', schannel=\'defaults\', channel=\'https://repo.continuum.io/pkgs/free\', url=\'https://repo.continuum.io/pkgs/free/linux-64/zlib-1.2.8-3.tar.bz2\', files=(\'include/zconf.h\', \'include/zlib.h\', \'lib/libz.a\', \'lib/libz.so\', \'lib/libz.so.1\', \'lib/libz.so.1.2.8\', \'lib/pkgconfig/zlib.pc\'), link=Link(_Link__initd=True, source=\'/usr/local/continuum/anaconda3/pkgs/zlib-1.2.8-3\', type=1))"}',
 'offline_mode': 'false',
 'package_cache': '["/usr/local/continuum/anaconda3/pkgs", "/home/chroxvi/.conda/pkgs"]',
 'platform': 'linux-64',
 'python_version': '3.6.0.final.0',
 'root_prefix': '/usr/local/continuum/anaconda3',
 'status': 'Succeeded'}