├── .gitignore ├── ==16.2.0 ├── Include │ ├── Python-ast.h │ ├── Python.h │ ├── abstract.h │ ├── accu.h │ ├── asdl.h │ ├── ast.h │ ├── bitset.h │ ├── bltinmodule.h │ ├── boolobject.h │ ├── bytearrayobject.h │ ├── bytes_methods.h │ ├── bytesobject.h │ ├── cellobject.h │ ├── ceval.h │ ├── classobject.h │ ├── code.h │ ├── codecs.h │ ├── compile.h │ ├── complexobject.h │ ├── context.h │ ├── datetime.h │ ├── descrobject.h │ ├── dictobject.h │ ├── dtoa.h │ ├── dynamic_annotations.h │ ├── enumobject.h │ ├── errcode.h │ ├── eval.h │ ├── fileobject.h │ ├── fileutils.h │ ├── floatobject.h │ ├── frameobject.h │ ├── funcobject.h │ ├── genobject.h │ ├── graminit.h │ ├── grammar.h │ ├── import.h │ ├── internal │ │ ├── ceval.h │ │ ├── condvar.h │ │ ├── context.h │ │ ├── gil.h │ │ ├── hamt.h │ │ ├── hash.h │ │ ├── import.h │ │ ├── mem.h │ │ ├── pygetopt.h │ │ ├── pystate.h │ │ └── warnings.h │ ├── intrcheck.h │ ├── iterobject.h │ ├── listobject.h │ ├── longintrepr.h │ ├── longobject.h │ ├── marshal.h │ ├── memoryobject.h │ ├── metagrammar.h │ ├── methodobject.h │ ├── modsupport.h │ ├── moduleobject.h │ ├── namespaceobject.h │ ├── node.h │ ├── object.h │ ├── objimpl.h │ ├── odictobject.h │ ├── opcode.h │ ├── osdefs.h │ ├── osmodule.h │ ├── parsetok.h │ ├── patchlevel.h │ ├── pgen.h │ ├── pgenheaders.h │ ├── py_curses.h │ ├── pyarena.h │ ├── pyatomic.h │ ├── pycapsule.h │ ├── pyconfig.h │ ├── pyctype.h │ ├── pydebug.h │ ├── pydtrace.h │ ├── pyerrors.h │ ├── pyexpat.h │ ├── pyfpe.h │ ├── pyhash.h │ ├── pylifecycle.h │ ├── pymacconfig.h │ ├── pymacro.h │ ├── pymath.h │ ├── pymem.h │ ├── pyport.h │ ├── pystate.h │ ├── pystrcmp.h │ ├── pystrhex.h │ ├── pystrtod.h │ ├── pythonrun.h │ ├── pythread.h │ ├── pytime.h │ ├── rangeobject.h │ ├── setobject.h │ ├── sliceobject.h │ ├── structmember.h │ ├── structseq.h │ ├── symtable.h │ ├── sysmodule.h │ ├── token.h │ ├── traceback.h │ ├── tupleobject.h │ ├── typeslots.h │ ├── ucnhash.h │ ├── unicodeobject.h │ ├── warnings.h │ └── weakrefobject.h ├── Lib │ ├── __future__.py │ ├── __pycache__ │ │ ├── __future__.cpython-37.pyc │ │ ├── _bootlocale.cpython-37.pyc │ │ ├── _collections_abc.cpython-37.pyc │ │ ├── _weakrefset.cpython-37.pyc │ │ ├── abc.cpython-37.pyc │ │ ├── base64.cpython-37.pyc │ │ ├── bisect.cpython-37.pyc │ │ ├── codecs.cpython-37.pyc │ │ ├── copy.cpython-37.pyc │ │ ├── copyreg.cpython-37.pyc │ │ ├── enum.cpython-37.pyc │ │ ├── fnmatch.cpython-37.pyc │ │ ├── functools.cpython-37.pyc │ │ ├── genericpath.cpython-37.pyc │ │ ├── hashlib.cpython-37.pyc │ │ ├── heapq.cpython-37.pyc │ │ ├── hmac.cpython-37.pyc │ │ ├── imp.cpython-37.pyc │ │ ├── io.cpython-37.pyc │ │ ├── keyword.cpython-37.pyc │ │ ├── linecache.cpython-37.pyc │ │ ├── locale.cpython-37.pyc │ │ ├── ntpath.cpython-37.pyc │ │ ├── operator.cpython-37.pyc │ │ ├── os.cpython-37.pyc │ │ ├── posixpath.cpython-37.pyc │ │ ├── random.cpython-37.pyc │ │ ├── re.cpython-37.pyc │ │ ├── reprlib.cpython-37.pyc │ │ ├── shutil.cpython-37.pyc │ │ ├── site.cpython-37.pyc │ │ ├── sre_compile.cpython-37.pyc │ │ ├── sre_constants.cpython-37.pyc │ │ ├── sre_parse.cpython-37.pyc │ │ ├── stat.cpython-37.pyc │ │ ├── struct.cpython-37.pyc │ │ ├── tarfile.cpython-37.pyc │ │ ├── tempfile.cpython-37.pyc │ │ ├── token.cpython-37.pyc │ │ ├── tokenize.cpython-37.pyc │ │ ├── types.cpython-37.pyc │ │ ├── warnings.cpython-37.pyc │ │ └── weakref.cpython-37.pyc │ ├── _bootlocale.py │ ├── _collections_abc.py │ ├── _dummy_thread.py │ ├── _weakrefset.py │ ├── abc.py │ ├── base64.py │ ├── bisect.py │ ├── codecs.py │ ├── collections │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── abc.cpython-37.pyc │ │ └── abc.py │ ├── copy.py │ ├── copyreg.py │ ├── distutils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-37.pyc │ │ └── distutils.cfg │ ├── encodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── aliases.cpython-37.pyc │ │ │ ├── cp1252.cpython-37.pyc │ │ │ ├── cp437.cpython-37.pyc │ │ │ ├── idna.cpython-37.pyc │ │ │ ├── latin_1.cpython-37.pyc │ │ │ ├── mbcs.cpython-37.pyc │ │ │ ├── utf_16_be.cpython-37.pyc │ │ │ ├── utf_16_le.cpython-37.pyc │ │ │ └── utf_8.cpython-37.pyc │ │ ├── aliases.py │ │ ├── ascii.py │ │ ├── base64_codec.py │ │ ├── big5.py │ │ ├── big5hkscs.py │ │ ├── bz2_codec.py │ │ ├── charmap.py │ │ ├── cp037.py │ │ ├── cp1006.py │ │ ├── cp1026.py │ │ ├── cp1125.py │ │ ├── cp1140.py │ │ ├── cp1250.py │ │ ├── cp1251.py │ │ ├── cp1252.py │ │ ├── cp1253.py │ │ ├── cp1254.py │ │ ├── cp1255.py │ │ ├── cp1256.py │ │ ├── cp1257.py │ │ ├── cp1258.py │ │ ├── cp273.py │ │ ├── cp424.py │ │ ├── cp437.py │ │ ├── cp500.py │ │ ├── cp65001.py │ │ ├── cp720.py │ │ ├── cp737.py │ │ ├── cp775.py │ │ ├── cp850.py │ │ ├── cp852.py │ │ ├── cp855.py │ │ ├── cp856.py │ │ ├── cp857.py │ │ ├── cp858.py │ │ ├── cp860.py │ │ ├── cp861.py │ │ ├── cp862.py │ │ ├── cp863.py │ │ ├── cp864.py │ │ ├── cp865.py │ │ ├── cp866.py │ │ ├── cp869.py │ │ ├── cp874.py │ │ ├── cp875.py │ │ ├── cp932.py │ │ ├── cp949.py │ │ ├── cp950.py │ │ ├── euc_jis_2004.py │ │ ├── euc_jisx0213.py │ │ ├── euc_jp.py │ │ ├── euc_kr.py │ │ ├── gb18030.py │ │ ├── gb2312.py │ │ ├── gbk.py │ │ ├── hex_codec.py │ │ ├── hp_roman8.py │ │ ├── hz.py │ │ ├── idna.py │ │ ├── iso2022_jp.py │ │ ├── iso2022_jp_1.py │ │ ├── iso2022_jp_2.py │ │ ├── iso2022_jp_2004.py │ │ ├── iso2022_jp_3.py │ │ ├── iso2022_jp_ext.py │ │ ├── iso2022_kr.py │ │ ├── iso8859_1.py │ │ ├── iso8859_10.py │ │ ├── iso8859_11.py │ │ ├── iso8859_13.py │ │ ├── iso8859_14.py │ │ ├── iso8859_15.py │ │ ├── iso8859_16.py │ │ ├── iso8859_2.py │ │ ├── iso8859_3.py │ │ ├── iso8859_4.py │ │ ├── iso8859_5.py │ │ ├── iso8859_6.py │ │ ├── iso8859_7.py │ │ ├── iso8859_8.py │ │ ├── iso8859_9.py │ │ ├── johab.py │ │ ├── koi8_r.py │ │ ├── koi8_t.py │ │ ├── koi8_u.py │ │ ├── kz1048.py │ │ ├── latin_1.py │ │ ├── mac_arabic.py │ │ ├── mac_centeuro.py │ │ ├── mac_croatian.py │ │ ├── mac_cyrillic.py │ │ ├── mac_farsi.py │ │ ├── mac_greek.py │ │ ├── mac_iceland.py │ │ ├── mac_latin2.py │ │ ├── mac_roman.py │ │ ├── mac_romanian.py │ │ ├── mac_turkish.py │ │ ├── mbcs.py │ │ ├── oem.py │ │ ├── palmos.py │ │ ├── ptcp154.py │ │ ├── punycode.py │ │ ├── quopri_codec.py │ │ ├── raw_unicode_escape.py │ │ ├── rot_13.py │ │ ├── shift_jis.py │ │ ├── shift_jis_2004.py │ │ ├── shift_jisx0213.py │ │ ├── tis_620.py │ │ ├── undefined.py │ │ ├── unicode_escape.py │ │ ├── unicode_internal.py │ │ ├── utf_16.py │ │ ├── utf_16_be.py │ │ ├── utf_16_le.py │ │ ├── utf_32.py │ │ ├── utf_32_be.py │ │ ├── utf_32_le.py │ │ ├── utf_7.py │ │ ├── utf_8.py │ │ ├── utf_8_sig.py │ │ ├── uu_codec.py │ │ └── zlib_codec.py │ ├── enum.py │ ├── fnmatch.py │ ├── functools.py │ ├── genericpath.py │ ├── hashlib.py │ ├── heapq.py │ ├── hmac.py │ ├── imp.py │ ├── importlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── abc.cpython-37.pyc │ │ │ ├── machinery.cpython-37.pyc │ │ │ └── util.cpython-37.pyc │ │ ├── _bootstrap.py │ │ ├── _bootstrap_external.py │ │ ├── abc.py │ │ ├── machinery.py │ │ ├── resources.py │ │ └── util.py │ ├── io.py │ ├── keyword.py │ ├── linecache.py │ ├── locale.py │ ├── no-global-site-packages.txt │ ├── ntpath.py │ ├── operator.py │ ├── orig-prefix.txt │ ├── os.py │ ├── posixpath.py │ ├── random.py │ ├── re.py │ ├── reprlib.py │ ├── rlcompleter.py │ ├── shutil.py │ ├── site-packages │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-37.pyc │ │ ├── easy_install.py │ │ ├── pip-19.0.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __main__.cpython-37.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── build_env.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locations.cpython-37.pyc │ │ │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ │ │ ├── pyproject.cpython-37.pyc │ │ │ │ │ ├── resolve.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── autocompletion.cpython-37.pyc │ │ │ │ │ │ ├── base_command.cpython-37.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-37.pyc │ │ │ │ │ │ ├── main_parser.cpython-37.pyc │ │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ │ └── status_codes.cpython-37.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── completion.cpython-37.pyc │ │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ ├── hash.cpython-37.pyc │ │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ │ ├── list.cpython-37.pyc │ │ │ │ │ │ ├── search.cpython-37.pyc │ │ │ │ │ │ ├── show.cpython-37.pyc │ │ │ │ │ │ ├── uninstall.cpython-37.pyc │ │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index.py │ │ │ │ ├── locations.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── candidate.cpython-37.pyc │ │ │ │ │ │ ├── format_control.cpython-37.pyc │ │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ │ └── link.cpython-37.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ └── prepare.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── constructors.cpython-37.pyc │ │ │ │ │ │ ├── req_file.cpython-37.pyc │ │ │ │ │ │ ├── req_install.cpython-37.pyc │ │ │ │ │ │ ├── req_set.cpython-37.pyc │ │ │ │ │ │ ├── req_tracker.cpython-37.pyc │ │ │ │ │ │ └── req_uninstall.cpython-37.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ │ ├── deprecation.cpython-37.pyc │ │ │ │ │ │ ├── encoding.cpython-37.pyc │ │ │ │ │ │ ├── filesystem.cpython-37.pyc │ │ │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ │ │ ├── hashes.cpython-37.pyc │ │ │ │ │ │ ├── logging.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ │ ├── outdated.cpython-37.pyc │ │ │ │ │ │ ├── packaging.cpython-37.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-37.pyc │ │ │ │ │ │ ├── temp_dir.cpython-37.pyc │ │ │ │ │ │ ├── typing.cpython-37.pyc │ │ │ │ │ │ └── ui.cpython-37.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ └── ui.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── bazaar.cpython-37.pyc │ │ │ │ │ │ ├── git.cpython-37.pyc │ │ │ │ │ │ ├── mercurial.cpython-37.pyc │ │ │ │ │ │ └── subversion.cpython-37.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ ├── distro.cpython-37.pyc │ │ │ │ ├── ipaddress.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ ├── retrying.cpython-37.pyc │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _cmd.cpython-37.pyc │ │ │ │ │ ├── adapter.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── controller.cpython-37.pyc │ │ │ │ │ ├── filewrapper.cpython-37.pyc │ │ │ │ │ ├── heuristics.cpython-37.pyc │ │ │ │ │ ├── serialize.cpython-37.pyc │ │ │ │ │ └── wrapper.cpython-37.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── file_cache.cpython-37.pyc │ │ │ │ │ │ └── redis_cache.cpython-37.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __main__.cpython-37.pyc │ │ │ │ │ └── core.cpython-37.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── big5freq.cpython-37.pyc │ │ │ │ │ ├── big5prober.cpython-37.pyc │ │ │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ │ │ ├── enums.cpython-37.pyc │ │ │ │ │ ├── escprober.cpython-37.pyc │ │ │ │ │ ├── escsm.cpython-37.pyc │ │ │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-37.pyc │ │ │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ │ │ ├── universaldetector.cpython-37.pyc │ │ │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── chardetect.cpython-37.pyc │ │ │ │ │ └── chardetect.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── enums.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── langturkishmodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ ├── utf8prober.py │ │ │ │ └── version.py │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── ansi.cpython-37.pyc │ │ │ │ │ ├── ansitowin32.cpython-37.pyc │ │ │ │ │ ├── initialise.cpython-37.pyc │ │ │ │ │ ├── win32.cpython-37.pyc │ │ │ │ │ └── winterm.cpython-37.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── database.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locators.cpython-37.pyc │ │ │ │ │ ├── manifest.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── metadata.cpython-37.pyc │ │ │ │ │ ├── resources.cpython-37.pyc │ │ │ │ │ ├── scripts.cpython-37.pyc │ │ │ │ │ ├── util.cpython-37.pyc │ │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── shutil.cpython-37.pyc │ │ │ │ │ │ ├── sysconfig.cpython-37.pyc │ │ │ │ │ │ └── tarfile.cpython-37.pyc │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── shutil.py │ │ │ │ │ ├── sysconfig.cfg │ │ │ │ │ ├── sysconfig.py │ │ │ │ │ └── tarfile.py │ │ │ │ ├── compat.py │ │ │ │ ├── database.py │ │ │ │ ├── index.py │ │ │ │ ├── locators.py │ │ │ │ ├── manifest.py │ │ │ │ ├── markers.py │ │ │ │ ├── metadata.py │ │ │ │ ├── resources.py │ │ │ │ ├── scripts.py │ │ │ │ ├── t32.exe │ │ │ │ ├── t64.exe │ │ │ │ ├── util.py │ │ │ │ ├── version.py │ │ │ │ ├── w32.exe │ │ │ │ ├── w64.exe │ │ │ │ └── wheel.py │ │ │ │ ├── distro.py │ │ │ │ ├── html5lib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _ihatexml.cpython-37.pyc │ │ │ │ │ ├── _inputstream.cpython-37.pyc │ │ │ │ │ ├── _tokenizer.cpython-37.pyc │ │ │ │ │ ├── _utils.cpython-37.pyc │ │ │ │ │ ├── constants.cpython-37.pyc │ │ │ │ │ ├── html5parser.cpython-37.pyc │ │ │ │ │ └── serializer.cpython-37.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _base.cpython-37.pyc │ │ │ │ │ │ ├── datrie.cpython-37.pyc │ │ │ │ │ │ └── py.cpython-37.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-37.pyc │ │ │ │ │ │ ├── lint.cpython-37.pyc │ │ │ │ │ │ ├── optionaltags.cpython-37.pyc │ │ │ │ │ │ ├── sanitizer.cpython-37.pyc │ │ │ │ │ │ └── whitespace.cpython-37.pyc │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── genshi.cpython-37.pyc │ │ │ │ │ │ └── sax.cpython-37.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ │ └── etree_lxml.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ ├── etree_lxml.cpython-37.pyc │ │ │ │ │ └── genshi.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── codec.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── idnadata.cpython-37.pyc │ │ │ │ │ ├── intranges.cpython-37.pyc │ │ │ │ │ ├── package_data.cpython-37.pyc │ │ │ │ │ └── uts46data.cpython-37.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── linklockfile.cpython-37.pyc │ │ │ │ │ ├── mkdirlockfile.cpython-37.pyc │ │ │ │ │ ├── pidlockfile.cpython-37.pyc │ │ │ │ │ ├── sqlitelockfile.cpython-37.pyc │ │ │ │ │ └── symlinklockfile.cpython-37.pyc │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _version.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ └── fallback.cpython-37.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _in_process.cpython-37.pyc │ │ │ │ │ ├── build.cpython-37.pyc │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── colorlog.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── envbuild.cpython-37.pyc │ │ │ │ │ └── wrappers.cpython-37.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── bar.cpython-37.pyc │ │ │ │ │ ├── counter.cpython-37.pyc │ │ │ │ │ ├── helpers.cpython-37.pyc │ │ │ │ │ └── spinner.cpython-37.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── writer.cpython-37.pyc │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __version__.cpython-37.pyc │ │ │ │ │ ├── _internal_utils.cpython-37.pyc │ │ │ │ │ ├── adapters.cpython-37.pyc │ │ │ │ │ ├── api.cpython-37.pyc │ │ │ │ │ ├── auth.cpython-37.pyc │ │ │ │ │ ├── certs.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cookies.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ ├── hooks.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── packages.cpython-37.pyc │ │ │ │ │ ├── sessions.cpython-37.pyc │ │ │ │ │ ├── status_codes.cpython-37.pyc │ │ │ │ │ ├── structures.cpython-37.pyc │ │ │ │ │ └── utils.cpython-37.pyc │ │ │ │ ├── __version__.py │ │ │ │ ├── _internal_utils.py │ │ │ │ ├── adapters.py │ │ │ │ ├── api.py │ │ │ │ ├── auth.py │ │ │ │ ├── certs.py │ │ │ │ ├── compat.py │ │ │ │ ├── cookies.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── help.py │ │ │ │ ├── hooks.py │ │ │ │ ├── models.py │ │ │ │ ├── packages.py │ │ │ │ ├── sessions.py │ │ │ │ ├── status_codes.py │ │ │ │ ├── structures.py │ │ │ │ └── utils.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _collections.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── connectionpool.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── fields.cpython-37.pyc │ │ │ │ │ ├── filepost.cpython-37.pyc │ │ │ │ │ ├── poolmanager.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ └── response.cpython-37.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-37.pyc │ │ │ │ │ │ ├── appengine.cpython-37.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ │ │ │ ├── securetransport.cpython-37.pyc │ │ │ │ │ │ └── socks.cpython-37.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ │ │ │ └── low_level.cpython-37.pyc │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ └── makefile.cpython-37.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── _implementation.cpython-37.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── queue.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ │ ├── retry.cpython-37.pyc │ │ │ │ │ ├── ssl_.cpython-37.pyc │ │ │ │ │ ├── timeout.cpython-37.pyc │ │ │ │ │ ├── url.cpython-37.pyc │ │ │ │ │ └── wait.cpython-37.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── labels.cpython-37.pyc │ │ │ │ ├── mklabels.cpython-37.pyc │ │ │ │ ├── tests.cpython-37.pyc │ │ │ │ └── x_user_defined.cpython-37.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ └── py31compat.py │ │ ├── setuptools-40.8.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ ├── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _deprecation_warning.cpython-37.pyc │ │ │ │ ├── archive_util.cpython-37.pyc │ │ │ │ ├── build_meta.cpython-37.pyc │ │ │ │ ├── config.cpython-37.pyc │ │ │ │ ├── dep_util.cpython-37.pyc │ │ │ │ ├── depends.cpython-37.pyc │ │ │ │ ├── dist.cpython-37.pyc │ │ │ │ ├── extension.cpython-37.pyc │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ ├── glob.cpython-37.pyc │ │ │ │ ├── launch.cpython-37.pyc │ │ │ │ ├── lib2to3_ex.cpython-37.pyc │ │ │ │ ├── monkey.cpython-37.pyc │ │ │ │ ├── msvc.cpython-37.pyc │ │ │ │ ├── namespaces.cpython-37.pyc │ │ │ │ ├── package_index.cpython-37.pyc │ │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ │ ├── py27compat.cpython-37.pyc │ │ │ │ ├── py31compat.cpython-37.pyc │ │ │ │ ├── py33compat.cpython-37.pyc │ │ │ │ ├── sandbox.cpython-37.pyc │ │ │ │ ├── site-patch.cpython-37.pyc │ │ │ │ ├── ssl_support.cpython-37.pyc │ │ │ │ ├── unicode_utils.cpython-37.pyc │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ ├── wheel.cpython-37.pyc │ │ │ │ └── windows_support.cpython-37.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── alias.cpython-37.pyc │ │ │ │ │ ├── bdist_egg.cpython-37.pyc │ │ │ │ │ ├── bdist_rpm.cpython-37.pyc │ │ │ │ │ ├── bdist_wininst.cpython-37.pyc │ │ │ │ │ ├── build_clib.cpython-37.pyc │ │ │ │ │ ├── build_ext.cpython-37.pyc │ │ │ │ │ ├── build_py.cpython-37.pyc │ │ │ │ │ ├── develop.cpython-37.pyc │ │ │ │ │ ├── dist_info.cpython-37.pyc │ │ │ │ │ ├── easy_install.cpython-37.pyc │ │ │ │ │ ├── egg_info.cpython-37.pyc │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ ├── install_egg_info.cpython-37.pyc │ │ │ │ │ ├── install_lib.cpython-37.pyc │ │ │ │ │ ├── install_scripts.cpython-37.pyc │ │ │ │ │ ├── py36compat.cpython-37.pyc │ │ │ │ │ ├── register.cpython-37.pyc │ │ │ │ │ ├── rotate.cpython-37.pyc │ │ │ │ │ ├── saveopts.cpython-37.pyc │ │ │ │ │ ├── sdist.cpython-37.pyc │ │ │ │ │ ├── setopt.cpython-37.pyc │ │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ │ ├── upload.cpython-37.pyc │ │ │ │ │ └── upload_docs.cpython-37.pyc │ │ │ │ ├── alias.py │ │ │ │ ├── bdist_egg.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── develop.py │ │ │ │ ├── dist_info.py │ │ │ │ ├── easy_install.py │ │ │ │ ├── egg_info.py │ │ │ │ ├── install.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── launcher manifest.xml │ │ │ │ ├── py36compat.py │ │ │ │ ├── register.py │ │ │ │ ├── rotate.py │ │ │ │ ├── saveopts.py │ │ │ │ ├── sdist.py │ │ │ │ ├── setopt.py │ │ │ │ ├── test.py │ │ │ │ ├── upload.py │ │ │ │ └── upload_docs.py │ │ │ ├── config.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── glibc.py │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── pep425tags.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── wheel-0.33.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ └── wheel │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __main__.cpython-37.pyc │ │ │ ├── bdist_wheel.cpython-37.pyc │ │ │ ├── metadata.cpython-37.pyc │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ ├── pkginfo.cpython-37.pyc │ │ │ ├── util.cpython-37.pyc │ │ │ └── wheelfile.cpython-37.pyc │ │ │ ├── bdist_wheel.py │ │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── convert.cpython-37.pyc │ │ │ │ ├── pack.cpython-37.pyc │ │ │ │ └── unpack.cpython-37.pyc │ │ │ ├── convert.py │ │ │ ├── pack.py │ │ │ └── unpack.py │ │ │ ├── metadata.py │ │ │ ├── pep425tags.py │ │ │ ├── pkginfo.py │ │ │ ├── util.py │ │ │ └── wheelfile.py │ ├── site.py │ ├── sre_compile.py │ ├── sre_constants.py │ ├── sre_parse.py │ ├── stat.py │ ├── struct.py │ ├── tarfile.py │ ├── tempfile.py │ ├── token.py │ ├── tokenize.py │ ├── types.py │ ├── warnings.py │ └── weakref.py ├── Scripts │ ├── activate │ ├── activate.bat │ ├── activate.ps1 │ ├── activate.xsh │ ├── activate_this.py │ ├── deactivate.bat │ ├── easy_install-3.7.exe │ ├── easy_install.exe │ ├── pip.exe │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ ├── python3.dll │ ├── python37.dll │ ├── pythonw.exe │ └── wheel.exe └── tcl │ ├── tcl8.6 │ ├── auto.tcl │ ├── clock.tcl │ ├── encoding │ │ ├── ascii.enc │ │ ├── big5.enc │ │ ├── cp1250.enc │ │ ├── cp1251.enc │ │ ├── cp1252.enc │ │ ├── cp1253.enc │ │ ├── cp1254.enc │ │ ├── cp1255.enc │ │ ├── cp1256.enc │ │ ├── cp1257.enc │ │ ├── cp1258.enc │ │ ├── cp437.enc │ │ ├── cp737.enc │ │ ├── cp775.enc │ │ ├── cp850.enc │ │ ├── cp852.enc │ │ ├── cp855.enc │ │ ├── cp857.enc │ │ ├── cp860.enc │ │ ├── cp861.enc │ │ ├── cp862.enc │ │ ├── cp863.enc │ │ ├── cp864.enc │ │ ├── cp865.enc │ │ ├── cp866.enc │ │ ├── cp869.enc │ │ ├── cp874.enc │ │ ├── cp932.enc │ │ ├── cp936.enc │ │ ├── cp949.enc │ │ ├── cp950.enc │ │ ├── dingbats.enc │ │ ├── ebcdic.enc │ │ ├── euc-cn.enc │ │ ├── euc-jp.enc │ │ ├── euc-kr.enc │ │ ├── gb12345.enc │ │ ├── gb1988.enc │ │ ├── gb2312-raw.enc │ │ ├── gb2312.enc │ │ ├── iso2022-jp.enc │ │ ├── iso2022-kr.enc │ │ ├── iso2022.enc │ │ ├── iso8859-1.enc │ │ ├── iso8859-10.enc │ │ ├── iso8859-13.enc │ │ ├── iso8859-14.enc │ │ ├── iso8859-15.enc │ │ ├── iso8859-16.enc │ │ ├── iso8859-2.enc │ │ ├── iso8859-3.enc │ │ ├── iso8859-4.enc │ │ ├── iso8859-5.enc │ │ ├── iso8859-6.enc │ │ ├── iso8859-7.enc │ │ ├── iso8859-8.enc │ │ ├── iso8859-9.enc │ │ ├── jis0201.enc │ │ ├── jis0208.enc │ │ ├── jis0212.enc │ │ ├── koi8-r.enc │ │ ├── koi8-u.enc │ │ ├── ksc5601.enc │ │ ├── macCentEuro.enc │ │ ├── macCroatian.enc │ │ ├── macCyrillic.enc │ │ ├── macDingbats.enc │ │ ├── macGreek.enc │ │ ├── macIceland.enc │ │ ├── macJapan.enc │ │ ├── macRoman.enc │ │ ├── macRomania.enc │ │ ├── macThai.enc │ │ ├── macTurkish.enc │ │ ├── macUkraine.enc │ │ ├── shiftjis.enc │ │ ├── symbol.enc │ │ └── tis-620.enc │ ├── history.tcl │ ├── http1.0 │ │ ├── http.tcl │ │ └── pkgIndex.tcl │ ├── init.tcl │ ├── msgs │ │ ├── af.msg │ │ ├── af_za.msg │ │ ├── ar.msg │ │ ├── ar_in.msg │ │ ├── ar_jo.msg │ │ ├── ar_lb.msg │ │ ├── ar_sy.msg │ │ ├── be.msg │ │ ├── bg.msg │ │ ├── bn.msg │ │ ├── bn_in.msg │ │ ├── ca.msg │ │ ├── cs.msg │ │ ├── da.msg │ │ ├── de.msg │ │ ├── de_at.msg │ │ ├── de_be.msg │ │ ├── el.msg │ │ ├── en_au.msg │ │ ├── en_be.msg │ │ ├── en_bw.msg │ │ ├── en_ca.msg │ │ ├── en_gb.msg │ │ ├── en_hk.msg │ │ ├── en_ie.msg │ │ ├── en_in.msg │ │ ├── en_nz.msg │ │ ├── en_ph.msg │ │ ├── en_sg.msg │ │ ├── en_za.msg │ │ ├── en_zw.msg │ │ ├── eo.msg │ │ ├── es.msg │ │ ├── es_ar.msg │ │ ├── es_bo.msg │ │ ├── es_cl.msg │ │ ├── es_co.msg │ │ ├── es_cr.msg │ │ ├── es_do.msg │ │ ├── es_ec.msg │ │ ├── es_gt.msg │ │ ├── es_hn.msg │ │ ├── es_mx.msg │ │ ├── es_ni.msg │ │ ├── es_pa.msg │ │ ├── es_pe.msg │ │ ├── es_pr.msg │ │ ├── es_py.msg │ │ ├── es_sv.msg │ │ ├── es_uy.msg │ │ ├── es_ve.msg │ │ ├── et.msg │ │ ├── eu.msg │ │ ├── eu_es.msg │ │ ├── fa.msg │ │ ├── fa_in.msg │ │ ├── fa_ir.msg │ │ ├── fi.msg │ │ ├── fo.msg │ │ ├── fo_fo.msg │ │ ├── fr.msg │ │ ├── fr_be.msg │ │ ├── fr_ca.msg │ │ ├── fr_ch.msg │ │ ├── ga.msg │ │ ├── ga_ie.msg │ │ ├── gl.msg │ │ ├── gl_es.msg │ │ ├── gv.msg │ │ ├── gv_gb.msg │ │ ├── he.msg │ │ ├── hi.msg │ │ ├── hi_in.msg │ │ ├── hr.msg │ │ ├── hu.msg │ │ ├── id.msg │ │ ├── id_id.msg │ │ ├── is.msg │ │ ├── it.msg │ │ ├── it_ch.msg │ │ ├── ja.msg │ │ ├── kl.msg │ │ ├── kl_gl.msg │ │ ├── ko.msg │ │ ├── ko_kr.msg │ │ ├── kok.msg │ │ ├── kok_in.msg │ │ ├── kw.msg │ │ ├── kw_gb.msg │ │ ├── lt.msg │ │ ├── lv.msg │ │ ├── mk.msg │ │ ├── mr.msg │ │ ├── mr_in.msg │ │ ├── ms.msg │ │ ├── ms_my.msg │ │ ├── mt.msg │ │ ├── nb.msg │ │ ├── nl.msg │ │ ├── nl_be.msg │ │ ├── nn.msg │ │ ├── pl.msg │ │ ├── pt.msg │ │ ├── pt_br.msg │ │ ├── ro.msg │ │ ├── ru.msg │ │ ├── ru_ua.msg │ │ ├── sh.msg │ │ ├── sk.msg │ │ ├── sl.msg │ │ ├── sq.msg │ │ ├── sr.msg │ │ ├── sv.msg │ │ ├── sw.msg │ │ ├── ta.msg │ │ ├── ta_in.msg │ │ ├── te.msg │ │ ├── te_in.msg │ │ ├── th.msg │ │ ├── tr.msg │ │ ├── uk.msg │ │ ├── vi.msg │ │ ├── zh.msg │ │ ├── zh_cn.msg │ │ ├── zh_hk.msg │ │ ├── zh_sg.msg │ │ └── zh_tw.msg │ ├── opt0.4 │ │ ├── optparse.tcl │ │ └── pkgIndex.tcl │ ├── package.tcl │ ├── parray.tcl │ ├── safe.tcl │ ├── tclIndex │ ├── tm.tcl │ ├── tzdata │ │ ├── Africa │ │ │ ├── Abidjan │ │ │ ├── Accra │ │ │ ├── Addis_Ababa │ │ │ ├── Algiers │ │ │ ├── Asmara │ │ │ ├── Asmera │ │ │ ├── Bamako │ │ │ ├── Bangui │ │ │ ├── Banjul │ │ │ ├── Bissau │ │ │ ├── Blantyre │ │ │ ├── Brazzaville │ │ │ ├── Bujumbura │ │ │ ├── Cairo │ │ │ ├── Casablanca │ │ │ ├── Ceuta │ │ │ ├── Conakry │ │ │ ├── Dakar │ │ │ ├── Dar_es_Salaam │ │ │ ├── Djibouti │ │ │ ├── Douala │ │ │ ├── El_Aaiun │ │ │ ├── Freetown │ │ │ ├── Gaborone │ │ │ ├── Harare │ │ │ ├── Johannesburg │ │ │ ├── Juba │ │ │ ├── Kampala │ │ │ ├── Khartoum │ │ │ ├── Kigali │ │ │ ├── Kinshasa │ │ │ ├── Lagos │ │ │ ├── Libreville │ │ │ ├── Lome │ │ │ ├── Luanda │ │ │ ├── Lubumbashi │ │ │ ├── Lusaka │ │ │ ├── Malabo │ │ │ ├── Maputo │ │ │ ├── Maseru │ │ │ ├── Mbabane │ │ │ ├── Mogadishu │ │ │ ├── Monrovia │ │ │ ├── Nairobi │ │ │ ├── Ndjamena │ │ │ ├── Niamey │ │ │ ├── Nouakchott │ │ │ ├── Ouagadougou │ │ │ ├── Porto-Novo │ │ │ ├── Sao_Tome │ │ │ ├── Timbuktu │ │ │ ├── Tripoli │ │ │ ├── Tunis │ │ │ └── Windhoek │ │ ├── America │ │ │ ├── Adak │ │ │ ├── Anchorage │ │ │ ├── Anguilla │ │ │ ├── Antigua │ │ │ ├── Araguaina │ │ │ ├── Argentina │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Catamarca │ │ │ │ ├── ComodRivadavia │ │ │ │ ├── Cordoba │ │ │ │ ├── Jujuy │ │ │ │ ├── La_Rioja │ │ │ │ ├── Mendoza │ │ │ │ ├── Rio_Gallegos │ │ │ │ ├── Salta │ │ │ │ ├── San_Juan │ │ │ │ ├── San_Luis │ │ │ │ ├── Tucuman │ │ │ │ └── Ushuaia │ │ │ ├── Aruba │ │ │ ├── Asuncion │ │ │ ├── Atikokan │ │ │ ├── Atka │ │ │ ├── Bahia │ │ │ ├── Bahia_Banderas │ │ │ ├── Barbados │ │ │ ├── Belem │ │ │ ├── Belize │ │ │ ├── Blanc-Sablon │ │ │ ├── Boa_Vista │ │ │ ├── Bogota │ │ │ ├── Boise │ │ │ ├── Buenos_Aires │ │ │ ├── Cambridge_Bay │ │ │ ├── Campo_Grande │ │ │ ├── Cancun │ │ │ ├── Caracas │ │ │ ├── Catamarca │ │ │ ├── Cayenne │ │ │ ├── Cayman │ │ │ ├── Chicago │ │ │ ├── Chihuahua │ │ │ ├── Coral_Harbour │ │ │ ├── Cordoba │ │ │ ├── Costa_Rica │ │ │ ├── Creston │ │ │ ├── Cuiaba │ │ │ ├── Curacao │ │ │ ├── Danmarkshavn │ │ │ ├── Dawson │ │ │ ├── Dawson_Creek │ │ │ ├── Denver │ │ │ ├── Detroit │ │ │ ├── Dominica │ │ │ ├── Edmonton │ │ │ ├── Eirunepe │ │ │ ├── El_Salvador │ │ │ ├── Ensenada │ │ │ ├── Fort_Nelson │ │ │ ├── Fort_Wayne │ │ │ ├── Fortaleza │ │ │ ├── Glace_Bay │ │ │ ├── Godthab │ │ │ ├── Goose_Bay │ │ │ ├── Grand_Turk │ │ │ ├── Grenada │ │ │ ├── Guadeloupe │ │ │ ├── Guatemala │ │ │ ├── Guayaquil │ │ │ ├── Guyana │ │ │ ├── Halifax │ │ │ ├── Havana │ │ │ ├── Hermosillo │ │ │ ├── Indiana │ │ │ │ ├── Indianapolis │ │ │ │ ├── Knox │ │ │ │ ├── Marengo │ │ │ │ ├── Petersburg │ │ │ │ ├── Tell_City │ │ │ │ ├── Vevay │ │ │ │ ├── Vincennes │ │ │ │ └── Winamac │ │ │ ├── Indianapolis │ │ │ ├── Inuvik │ │ │ ├── Iqaluit │ │ │ ├── Jamaica │ │ │ ├── Jujuy │ │ │ ├── Juneau │ │ │ ├── Kentucky │ │ │ │ ├── Louisville │ │ │ │ └── Monticello │ │ │ ├── Knox_IN │ │ │ ├── Kralendijk │ │ │ ├── La_Paz │ │ │ ├── Lima │ │ │ ├── Los_Angeles │ │ │ ├── Louisville │ │ │ ├── Lower_Princes │ │ │ ├── Maceio │ │ │ ├── Managua │ │ │ ├── Manaus │ │ │ ├── Marigot │ │ │ ├── Martinique │ │ │ ├── Matamoros │ │ │ ├── Mazatlan │ │ │ ├── Mendoza │ │ │ ├── Menominee │ │ │ ├── Merida │ │ │ ├── Metlakatla │ │ │ ├── Mexico_City │ │ │ ├── Miquelon │ │ │ ├── Moncton │ │ │ ├── Monterrey │ │ │ ├── Montevideo │ │ │ ├── Montreal │ │ │ ├── Montserrat │ │ │ ├── Nassau │ │ │ ├── New_York │ │ │ ├── Nipigon │ │ │ ├── Nome │ │ │ ├── Noronha │ │ │ ├── North_Dakota │ │ │ │ ├── Beulah │ │ │ │ ├── Center │ │ │ │ └── New_Salem │ │ │ ├── Ojinaga │ │ │ ├── Panama │ │ │ ├── Pangnirtung │ │ │ ├── Paramaribo │ │ │ ├── Phoenix │ │ │ ├── Port-au-Prince │ │ │ ├── Port_of_Spain │ │ │ ├── Porto_Acre │ │ │ ├── Porto_Velho │ │ │ ├── Puerto_Rico │ │ │ ├── Punta_Arenas │ │ │ ├── Rainy_River │ │ │ ├── Rankin_Inlet │ │ │ ├── Recife │ │ │ ├── Regina │ │ │ ├── Resolute │ │ │ ├── Rio_Branco │ │ │ ├── Rosario │ │ │ ├── Santa_Isabel │ │ │ ├── Santarem │ │ │ ├── Santiago │ │ │ ├── Santo_Domingo │ │ │ ├── Sao_Paulo │ │ │ ├── Scoresbysund │ │ │ ├── Shiprock │ │ │ ├── Sitka │ │ │ ├── St_Barthelemy │ │ │ ├── St_Johns │ │ │ ├── St_Kitts │ │ │ ├── St_Lucia │ │ │ ├── St_Thomas │ │ │ ├── St_Vincent │ │ │ ├── Swift_Current │ │ │ ├── Tegucigalpa │ │ │ ├── Thule │ │ │ ├── Thunder_Bay │ │ │ ├── Tijuana │ │ │ ├── Toronto │ │ │ ├── Tortola │ │ │ ├── Vancouver │ │ │ ├── Virgin │ │ │ ├── Whitehorse │ │ │ ├── Winnipeg │ │ │ ├── Yakutat │ │ │ └── Yellowknife │ │ ├── Antarctica │ │ │ ├── Casey │ │ │ ├── Davis │ │ │ ├── DumontDUrville │ │ │ ├── Macquarie │ │ │ ├── Mawson │ │ │ ├── McMurdo │ │ │ ├── Palmer │ │ │ ├── Rothera │ │ │ ├── South_Pole │ │ │ ├── Syowa │ │ │ ├── Troll │ │ │ └── Vostok │ │ ├── Arctic │ │ │ └── Longyearbyen │ │ ├── Asia │ │ │ ├── Aden │ │ │ ├── Almaty │ │ │ ├── Amman │ │ │ ├── Anadyr │ │ │ ├── Aqtau │ │ │ ├── Aqtobe │ │ │ ├── Ashgabat │ │ │ ├── Ashkhabad │ │ │ ├── Atyrau │ │ │ ├── Baghdad │ │ │ ├── Bahrain │ │ │ ├── Baku │ │ │ ├── Bangkok │ │ │ ├── Barnaul │ │ │ ├── Beirut │ │ │ ├── Bishkek │ │ │ ├── Brunei │ │ │ ├── Calcutta │ │ │ ├── Chita │ │ │ ├── Choibalsan │ │ │ ├── Chongqing │ │ │ ├── Chungking │ │ │ ├── Colombo │ │ │ ├── Dacca │ │ │ ├── Damascus │ │ │ ├── Dhaka │ │ │ ├── Dili │ │ │ ├── Dubai │ │ │ ├── Dushanbe │ │ │ ├── Famagusta │ │ │ ├── Gaza │ │ │ ├── Harbin │ │ │ ├── Hebron │ │ │ ├── Ho_Chi_Minh │ │ │ ├── Hong_Kong │ │ │ ├── Hovd │ │ │ ├── Irkutsk │ │ │ ├── Istanbul │ │ │ ├── Jakarta │ │ │ ├── Jayapura │ │ │ ├── Jerusalem │ │ │ ├── Kabul │ │ │ ├── Kamchatka │ │ │ ├── Karachi │ │ │ ├── Kashgar │ │ │ ├── Kathmandu │ │ │ ├── Katmandu │ │ │ ├── Khandyga │ │ │ ├── Kolkata │ │ │ ├── Krasnoyarsk │ │ │ ├── Kuala_Lumpur │ │ │ ├── Kuching │ │ │ ├── Kuwait │ │ │ ├── Macao │ │ │ ├── Macau │ │ │ ├── Magadan │ │ │ ├── Makassar │ │ │ ├── Manila │ │ │ ├── Muscat │ │ │ ├── Nicosia │ │ │ ├── Novokuznetsk │ │ │ ├── Novosibirsk │ │ │ ├── Omsk │ │ │ ├── Oral │ │ │ ├── Phnom_Penh │ │ │ ├── Pontianak │ │ │ ├── Pyongyang │ │ │ ├── Qatar │ │ │ ├── Qyzylorda │ │ │ ├── Rangoon │ │ │ ├── Riyadh │ │ │ ├── Saigon │ │ │ ├── Sakhalin │ │ │ ├── Samarkand │ │ │ ├── Seoul │ │ │ ├── Shanghai │ │ │ ├── Singapore │ │ │ ├── Srednekolymsk │ │ │ ├── Taipei │ │ │ ├── Tashkent │ │ │ ├── Tbilisi │ │ │ ├── Tehran │ │ │ ├── Tel_Aviv │ │ │ ├── Thimbu │ │ │ ├── Thimphu │ │ │ ├── Tokyo │ │ │ ├── Tomsk │ │ │ ├── Ujung_Pandang │ │ │ ├── Ulaanbaatar │ │ │ ├── Ulan_Bator │ │ │ ├── Urumqi │ │ │ ├── Ust-Nera │ │ │ ├── Vientiane │ │ │ ├── Vladivostok │ │ │ ├── Yakutsk │ │ │ ├── Yangon │ │ │ ├── Yekaterinburg │ │ │ └── Yerevan │ │ ├── Atlantic │ │ │ ├── Azores │ │ │ ├── Bermuda │ │ │ ├── Canary │ │ │ ├── Cape_Verde │ │ │ ├── Faeroe │ │ │ ├── Faroe │ │ │ ├── Jan_Mayen │ │ │ ├── Madeira │ │ │ ├── Reykjavik │ │ │ ├── South_Georgia │ │ │ ├── St_Helena │ │ │ └── Stanley │ │ ├── Australia │ │ │ ├── ACT │ │ │ ├── Adelaide │ │ │ ├── Brisbane │ │ │ ├── Broken_Hill │ │ │ ├── Canberra │ │ │ ├── Currie │ │ │ ├── Darwin │ │ │ ├── Eucla │ │ │ ├── Hobart │ │ │ ├── LHI │ │ │ ├── Lindeman │ │ │ ├── Lord_Howe │ │ │ ├── Melbourne │ │ │ ├── NSW │ │ │ ├── North │ │ │ ├── Perth │ │ │ ├── Queensland │ │ │ ├── South │ │ │ ├── Sydney │ │ │ ├── Tasmania │ │ │ ├── Victoria │ │ │ ├── West │ │ │ └── Yancowinna │ │ ├── Brazil │ │ │ ├── Acre │ │ │ ├── DeNoronha │ │ │ ├── East │ │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ │ ├── Atlantic │ │ │ ├── Central │ │ │ ├── East-Saskatchewan │ │ │ ├── Eastern │ │ │ ├── Mountain │ │ │ ├── Newfoundland │ │ │ ├── Pacific │ │ │ ├── Saskatchewan │ │ │ └── Yukon │ │ ├── Chile │ │ │ ├── Continental │ │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ │ ├── GMT │ │ │ ├── GMT+0 │ │ │ ├── GMT+1 │ │ │ ├── GMT+10 │ │ │ ├── GMT+11 │ │ │ ├── GMT+12 │ │ │ ├── GMT+2 │ │ │ ├── GMT+3 │ │ │ ├── GMT+4 │ │ │ ├── GMT+5 │ │ │ ├── GMT+6 │ │ │ ├── GMT+7 │ │ │ ├── GMT+8 │ │ │ ├── GMT+9 │ │ │ ├── GMT-0 │ │ │ ├── GMT-1 │ │ │ ├── GMT-10 │ │ │ ├── GMT-11 │ │ │ ├── GMT-12 │ │ │ ├── GMT-13 │ │ │ ├── GMT-14 │ │ │ ├── GMT-2 │ │ │ ├── GMT-3 │ │ │ ├── GMT-4 │ │ │ ├── GMT-5 │ │ │ ├── GMT-6 │ │ │ ├── GMT-7 │ │ │ ├── GMT-8 │ │ │ ├── GMT-9 │ │ │ ├── GMT0 │ │ │ ├── Greenwich │ │ │ ├── UCT │ │ │ ├── UTC │ │ │ ├── Universal │ │ │ └── Zulu │ │ ├── Europe │ │ │ ├── Amsterdam │ │ │ ├── Andorra │ │ │ ├── Astrakhan │ │ │ ├── Athens │ │ │ ├── Belfast │ │ │ ├── Belgrade │ │ │ ├── Berlin │ │ │ ├── Bratislava │ │ │ ├── Brussels │ │ │ ├── Bucharest │ │ │ ├── Budapest │ │ │ ├── Busingen │ │ │ ├── Chisinau │ │ │ ├── Copenhagen │ │ │ ├── Dublin │ │ │ ├── Gibraltar │ │ │ ├── Guernsey │ │ │ ├── Helsinki │ │ │ ├── Isle_of_Man │ │ │ ├── Istanbul │ │ │ ├── Jersey │ │ │ ├── Kaliningrad │ │ │ ├── Kiev │ │ │ ├── Kirov │ │ │ ├── Lisbon │ │ │ ├── Ljubljana │ │ │ ├── London │ │ │ ├── Luxembourg │ │ │ ├── Madrid │ │ │ ├── Malta │ │ │ ├── Mariehamn │ │ │ ├── Minsk │ │ │ ├── Monaco │ │ │ ├── Moscow │ │ │ ├── Nicosia │ │ │ ├── Oslo │ │ │ ├── Paris │ │ │ ├── Podgorica │ │ │ ├── Prague │ │ │ ├── Riga │ │ │ ├── Rome │ │ │ ├── Samara │ │ │ ├── San_Marino │ │ │ ├── Sarajevo │ │ │ ├── Saratov │ │ │ ├── Simferopol │ │ │ ├── Skopje │ │ │ ├── Sofia │ │ │ ├── Stockholm │ │ │ ├── Tallinn │ │ │ ├── Tirane │ │ │ ├── Tiraspol │ │ │ ├── Ulyanovsk │ │ │ ├── Uzhgorod │ │ │ ├── Vaduz │ │ │ ├── Vatican │ │ │ ├── Vienna │ │ │ ├── Vilnius │ │ │ ├── Volgograd │ │ │ ├── Warsaw │ │ │ ├── Zagreb │ │ │ ├── Zaporozhye │ │ │ └── Zurich │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ │ ├── Antananarivo │ │ │ ├── Chagos │ │ │ ├── Christmas │ │ │ ├── Cocos │ │ │ ├── Comoro │ │ │ ├── Kerguelen │ │ │ ├── Mahe │ │ │ ├── Maldives │ │ │ ├── Mauritius │ │ │ ├── Mayotte │ │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ │ ├── BajaNorte │ │ │ ├── BajaSur │ │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ │ ├── Apia │ │ │ ├── Auckland │ │ │ ├── Bougainville │ │ │ ├── Chatham │ │ │ ├── Chuuk │ │ │ ├── Easter │ │ │ ├── Efate │ │ │ ├── Enderbury │ │ │ ├── Fakaofo │ │ │ ├── Fiji │ │ │ ├── Funafuti │ │ │ ├── Galapagos │ │ │ ├── Gambier │ │ │ ├── Guadalcanal │ │ │ ├── Guam │ │ │ ├── Honolulu │ │ │ ├── Johnston │ │ │ ├── Kiritimati │ │ │ ├── Kosrae │ │ │ ├── Kwajalein │ │ │ ├── Majuro │ │ │ ├── Marquesas │ │ │ ├── Midway │ │ │ ├── Nauru │ │ │ ├── Niue │ │ │ ├── Norfolk │ │ │ ├── Noumea │ │ │ ├── Pago_Pago │ │ │ ├── Palau │ │ │ ├── Pitcairn │ │ │ ├── Pohnpei │ │ │ ├── Ponape │ │ │ ├── Port_Moresby │ │ │ ├── Rarotonga │ │ │ ├── Saipan │ │ │ ├── Samoa │ │ │ ├── Tahiti │ │ │ ├── Tarawa │ │ │ ├── Tongatapu │ │ │ ├── Truk │ │ │ ├── Wake │ │ │ ├── Wallis │ │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── SystemV │ │ │ ├── AST4 │ │ │ ├── AST4ADT │ │ │ ├── CST6 │ │ │ ├── CST6CDT │ │ │ ├── EST5 │ │ │ ├── EST5EDT │ │ │ ├── HST10 │ │ │ ├── MST7 │ │ │ ├── MST7MDT │ │ │ ├── PST8 │ │ │ ├── PST8PDT │ │ │ ├── YST9 │ │ │ └── YST9YDT │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ │ ├── Alaska │ │ │ ├── Aleutian │ │ │ ├── Arizona │ │ │ ├── Central │ │ │ ├── East-Indiana │ │ │ ├── Eastern │ │ │ ├── Hawaii │ │ │ ├── Indiana-Starke │ │ │ ├── Michigan │ │ │ ├── Mountain │ │ │ ├── Pacific │ │ │ ├── Pacific-New │ │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ └── Zulu │ └── word.tcl │ └── tk8.6 │ ├── bgerror.tcl │ ├── button.tcl │ ├── choosedir.tcl │ ├── clrpick.tcl │ ├── comdlg.tcl │ ├── console.tcl │ ├── demos │ ├── README │ ├── anilabel.tcl │ ├── aniwave.tcl │ ├── arrow.tcl │ ├── bind.tcl │ ├── bitmap.tcl │ ├── browse │ ├── button.tcl │ ├── check.tcl │ ├── clrpick.tcl │ ├── colors.tcl │ ├── combo.tcl │ ├── cscroll.tcl │ ├── ctext.tcl │ ├── dialog1.tcl │ ├── dialog2.tcl │ ├── en.msg │ ├── entry1.tcl │ ├── entry2.tcl │ ├── entry3.tcl │ ├── filebox.tcl │ ├── floor.tcl │ ├── fontchoose.tcl │ ├── form.tcl │ ├── goldberg.tcl │ ├── hello │ ├── hscale.tcl │ ├── icon.tcl │ ├── image1.tcl │ ├── image2.tcl │ ├── images │ │ ├── earth.gif │ │ ├── earthmenu.png │ │ ├── earthris.gif │ │ ├── flagdown.xbm │ │ ├── flagup.xbm │ │ ├── gray25.xbm │ │ ├── letters.xbm │ │ ├── noletter.xbm │ │ ├── ouster.png │ │ ├── pattern.xbm │ │ ├── tcllogo.gif │ │ └── teapot.ppm │ ├── items.tcl │ ├── ixset │ ├── knightstour.tcl │ ├── label.tcl │ ├── labelframe.tcl │ ├── license.terms │ ├── mclist.tcl │ ├── menu.tcl │ ├── menubu.tcl │ ├── msgbox.tcl │ ├── nl.msg │ ├── paned1.tcl │ ├── paned2.tcl │ ├── pendulum.tcl │ ├── plot.tcl │ ├── puzzle.tcl │ ├── radio.tcl │ ├── rmt │ ├── rolodex │ ├── ruler.tcl │ ├── sayings.tcl │ ├── search.tcl │ ├── spin.tcl │ ├── square │ ├── states.tcl │ ├── style.tcl │ ├── tclIndex │ ├── tcolor │ ├── text.tcl │ ├── textpeer.tcl │ ├── timer │ ├── toolbar.tcl │ ├── tree.tcl │ ├── ttkbut.tcl │ ├── ttkmenu.tcl │ ├── ttknote.tcl │ ├── ttkpane.tcl │ ├── ttkprogress.tcl │ ├── ttkscale.tcl │ ├── twind.tcl │ ├── unicodeout.tcl │ ├── vscale.tcl │ └── widget │ ├── dialog.tcl │ ├── entry.tcl │ ├── focus.tcl │ ├── fontchooser.tcl │ ├── iconlist.tcl │ ├── icons.tcl │ ├── images │ ├── README │ ├── logo.eps │ ├── logo100.gif │ ├── logo64.gif │ ├── logoLarge.gif │ ├── logoMed.gif │ ├── pwrdLogo.eps │ ├── pwrdLogo100.gif │ ├── pwrdLogo150.gif │ ├── pwrdLogo175.gif │ ├── pwrdLogo200.gif │ ├── pwrdLogo75.gif │ └── tai-ku.gif │ ├── license.terms │ ├── listbox.tcl │ ├── megawidget.tcl │ ├── menu.tcl │ ├── mkpsenc.tcl │ ├── msgbox.tcl │ ├── msgs │ ├── cs.msg │ ├── da.msg │ ├── de.msg │ ├── el.msg │ ├── en.msg │ ├── en_gb.msg │ ├── eo.msg │ ├── es.msg │ ├── fr.msg │ ├── hu.msg │ ├── it.msg │ ├── nl.msg │ ├── pl.msg │ ├── pt.msg │ ├── ru.msg │ └── sv.msg │ ├── obsolete.tcl │ ├── optMenu.tcl │ ├── palette.tcl │ ├── panedwindow.tcl │ ├── pkgIndex.tcl │ ├── safetk.tcl │ ├── scale.tcl │ ├── scrlbar.tcl │ ├── spinbox.tcl │ ├── tclIndex │ ├── tearoff.tcl │ ├── text.tcl │ ├── tk.tcl │ ├── tkfbox.tcl │ ├── ttk │ ├── altTheme.tcl │ ├── aquaTheme.tcl │ ├── button.tcl │ ├── clamTheme.tcl │ ├── classicTheme.tcl │ ├── combobox.tcl │ ├── cursors.tcl │ ├── defaults.tcl │ ├── entry.tcl │ ├── fonts.tcl │ ├── menubutton.tcl │ ├── notebook.tcl │ ├── panedwindow.tcl │ ├── progress.tcl │ ├── scale.tcl │ ├── scrollbar.tcl │ ├── sizegrip.tcl │ ├── spinbox.tcl │ ├── treeview.tcl │ ├── ttk.tcl │ ├── utils.tcl │ ├── vistaTheme.tcl │ ├── winTheme.tcl │ └── xpTheme.tcl │ ├── unsupported.tcl │ └── xmfbox.tcl ├── MAJOR PROJECT_report.pdf ├── Procfile ├── README.md ├── app.py ├── desktop.ini ├── ls ├── major project.pptx ├── requirements.txt ├── static └── style.css ├── templates ├── chart.html └── search.html └── twitter_sentiment_analysis.py /.gitignore: -------------------------------------------------------------------------------- 1 | secret.py 2 | envs 3 | output.csv 4 | test.data 5 | __pycache__ -------------------------------------------------------------------------------- /==16.2.0/Include/internal/hash.h: -------------------------------------------------------------------------------- 1 | #ifndef Py_INTERNAL_HASH_H 2 | #define Py_INTERNAL_HASH_H 3 | 4 | uint64_t _Py_KeyedHash(uint64_t, const char *, Py_ssize_t); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /==16.2.0/Include/internal/import.h: -------------------------------------------------------------------------------- 1 | #ifndef Py_INTERNAL_IMPORT_H 2 | #define Py_INTERNAL_IMPORT_H 3 | 4 | extern const char *_Py_CheckHashBasedPycsMode; 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/__future__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/__future__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/_bootlocale.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/_bootlocale.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/_collections_abc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/_collections_abc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/_weakrefset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/_weakrefset.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/abc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/abc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/base64.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/base64.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/bisect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/bisect.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/codecs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/codecs.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/copy.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/copy.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/copyreg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/copyreg.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/enum.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/enum.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/fnmatch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/fnmatch.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/functools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/functools.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/genericpath.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/genericpath.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/hashlib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/hashlib.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/heapq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/heapq.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/hmac.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/hmac.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/imp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/imp.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/io.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/io.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/keyword.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/keyword.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/linecache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/linecache.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/locale.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/locale.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/ntpath.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/ntpath.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/operator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/operator.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/os.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/os.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/posixpath.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/posixpath.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/random.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/random.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/re.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/re.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/reprlib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/reprlib.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/shutil.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/shutil.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/site.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/site.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/sre_compile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/sre_compile.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/sre_constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/sre_constants.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/sre_parse.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/sre_parse.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/stat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/stat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/struct.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/struct.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/tarfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/tarfile.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/tempfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/tempfile.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/token.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/token.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/tokenize.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/tokenize.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/types.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/types.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/warnings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/warnings.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/__pycache__/weakref.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/__pycache__/weakref.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/collections/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/collections/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/collections/__pycache__/abc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/collections/__pycache__/abc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/collections/abc.py: -------------------------------------------------------------------------------- 1 | from _collections_abc import * 2 | from _collections_abc import __all__ 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/distutils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/distutils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/aliases.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/aliases.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/cp1252.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/cp1252.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/cp437.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/cp437.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/idna.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/idna.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/latin_1.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/latin_1.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/mbcs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/mbcs.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/utf_16_be.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/utf_16_be.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/utf_16_le.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/utf_16_le.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/encodings/__pycache__/utf_8.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/encodings/__pycache__/utf_8.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/importlib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/__pycache__/abc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/importlib/__pycache__/abc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/__pycache__/machinery.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/importlib/__pycache__/machinery.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/importlib/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/importlib/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/no-global-site-packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/no-global-site-packages.txt -------------------------------------------------------------------------------- /==16.2.0/Lib/orig-prefix.txt: -------------------------------------------------------------------------------- 1 | c:\users\abc\appdata\local\programs\python\python37-32 -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip-19.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/download.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/download.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.3) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools-40.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/glibc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/glibc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | wheel = wheel.cli:main 3 | 4 | [distutils.commands] 5 | bdist_wheel = wheel.bdist_wheel:bdist_wheel 6 | 7 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel-0.33.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wheel 2 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__init__.py: -------------------------------------------------------------------------------- 1 | # __variables__ with double-quoted values will be available in setup.py: 2 | __version__ = "0.33.1" 3 | -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/bdist_wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/bdist_wheel.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/metadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/metadata.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/pep425tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/pep425tags.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/pkginfo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/pkginfo.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/__pycache__/wheelfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/__pycache__/wheelfile.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/cli/__pycache__/convert.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/cli/__pycache__/convert.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/cli/__pycache__/pack.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/cli/__pycache__/pack.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Lib/site-packages/wheel/cli/__pycache__/unpack.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Lib/site-packages/wheel/cli/__pycache__/unpack.cpython-37.pyc -------------------------------------------------------------------------------- /==16.2.0/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/easy_install.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/pip.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/pip3.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/python.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/python3.dll -------------------------------------------------------------------------------- /==16.2.0/Scripts/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/python37.dll -------------------------------------------------------------------------------- /==16.2.0/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/pythonw.exe -------------------------------------------------------------------------------- /==16.2.0/Scripts/wheel.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/Scripts/wheel.exe -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/encoding/iso2022-kr.enc: -------------------------------------------------------------------------------- 1 | # Encoding file: iso2022-kr, escape-driven 2 | E 3 | name iso2022-kr 4 | init \x1b$)C 5 | final {} 6 | iso8859-1 \x0f 7 | ksc5601 \x0e 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Abidjan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Abidjan) { 4 | {-9223372036854775808 -968 0 LMT} 5 | {-1830383032 0 0 GMT} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Addis_Ababa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Addis_Ababa) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Asmara: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmara) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Asmera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Asmera) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Bamako: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Bamako) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Bangui: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Bangui) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Banjul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Banjul) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Bissau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Bissau) { 4 | {-9223372036854775808 -3740 0 LMT} 5 | {-1830380260 -3600 0 -01} 6 | {157770000 0 0 GMT} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Blantyre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Blantyre) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Brazzaville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Brazzaville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Bujumbura: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Bujumbura) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Conakry: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Conakry) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Dakar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Dakar) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Dar_es_Salaam: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Dar_es_Salaam) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Djibouti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Djibouti) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Douala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Douala) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Freetown: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Freetown) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Gaborone: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Gaborone) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Harare: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Harare) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Kampala: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Kampala) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Kigali: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Kigali) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Kinshasa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Kinshasa) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Lagos) { 4 | {-9223372036854775808 816 0 LMT} 5 | {-1588464816 3600 0 WAT} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Libreville: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Libreville) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Lome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Luanda: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Luanda) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lubumbashi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lubumbashi) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Lusaka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Maputo)]} { 3 | LoadTimeZoneFile Africa/Maputo 4 | } 5 | set TZData(:Africa/Lusaka) $TZData(:Africa/Maputo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Malabo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Malabo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Maputo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Africa/Maputo) { 4 | {-9223372036854775808 7820 0 LMT} 5 | {-2109291020 7200 0 CAT} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Maseru: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Maseru) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Mbabane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Johannesburg)]} { 3 | LoadTimeZoneFile Africa/Johannesburg 4 | } 5 | set TZData(:Africa/Mbabane) $TZData(:Africa/Johannesburg) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Mogadishu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Africa/Mogadishu) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Niamey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Niamey) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Nouakchott: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Nouakchott) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Ouagadougou: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Ouagadougou) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Porto-Novo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Lagos)]} { 3 | LoadTimeZoneFile Africa/Lagos 4 | } 5 | set TZData(:Africa/Porto-Novo) $TZData(:Africa/Lagos) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Sao_Tome: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Sao_Tome) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Africa/Timbuktu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Africa/Timbuktu) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Anguilla: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Anguilla) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Antigua: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Antigua) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Aruba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Aruba) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Atka: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:America/Atka) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Cayenne: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Cayenne) { 4 | {-9223372036854775808 -12560 0 LMT} 5 | {-1846269040 -14400 0 -04} 6 | {-71092800 -10800 0 -03} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Cayman: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Panama)]} { 3 | LoadTimeZoneFile America/Panama 4 | } 5 | set TZData(:America/Cayman) $TZData(:America/Panama) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Coral_Harbour: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Atikokan)]} { 3 | LoadTimeZoneFile America/Atikokan 4 | } 5 | set TZData(:America/Coral_Harbour) $TZData(:America/Atikokan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Curacao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Curacao) { 4 | {-9223372036854775808 -16547 0 LMT} 5 | {-1826738653 -16200 0 -0430} 6 | {-157750200 -14400 0 AST} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Dominica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Dominica) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Ensenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Ensenada) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Grenada: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Grenada) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Jujuy: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Argentina/Jujuy)]} { 3 | LoadTimeZoneFile America/Argentina/Jujuy 4 | } 5 | set TZData(:America/Jujuy) $TZData(:America/Argentina/Jujuy) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Knox_IN: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:America/Knox_IN) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Kralendijk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Kralendijk) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Lower_Princes: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Curacao)]} { 3 | LoadTimeZoneFile America/Curacao 4 | } 5 | set TZData(:America/Lower_Princes) $TZData(:America/Curacao) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Marigot: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Marigot) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Montreal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:America/Montreal) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Panama: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Panama) { 4 | {-9223372036854775808 -19088 0 LMT} 5 | {-2524502512 -19176 0 CMT} 6 | {-1946918424 -18000 0 EST} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Port_of_Spain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:America/Port_of_Spain) { 4 | {-9223372036854775808 -14764 0 LMT} 5 | {-1825098836 -14400 0 AST} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Porto_Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:America/Porto_Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Santa_Isabel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:America/Santa_Isabel) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Shiprock: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:America/Shiprock) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/St_Kitts: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Kitts) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/St_Lucia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Lucia) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/St_Thomas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/St_Thomas) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Tortola: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Tortola) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/America/Virgin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Port_of_Spain)]} { 3 | LoadTimeZoneFile America/Port_of_Spain 4 | } 5 | set TZData(:America/Virgin) $TZData(:America/Port_of_Spain) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/Mawson: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Mawson) { 4 | {-9223372036854775808 0 0 -00} 5 | {-501206400 21600 0 +06} 6 | {1255809600 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/McMurdo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/McMurdo) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/Rothera: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Rothera) { 4 | {-9223372036854775808 0 0 -00} 5 | {218246400 -10800 0 -03} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/South_Pole: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:Antarctica/South_Pole) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/Syowa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Syowa) { 4 | {-9223372036854775808 0 0 -00} 5 | {-407808000 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Antarctica/Vostok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Antarctica/Vostok) { 4 | {-9223372036854775808 0 0 -00} 5 | {-380073600 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Arctic/Longyearbyen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Arctic/Longyearbyen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Aden: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Aden) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Ashkhabad: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ashgabat)]} { 3 | LoadTimeZoneFile Asia/Ashgabat 4 | } 5 | set TZData(:Asia/Ashkhabad) $TZData(:Asia/Ashgabat) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Bahrain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Qatar)]} { 3 | LoadTimeZoneFile Asia/Qatar 4 | } 5 | set TZData(:Asia/Bahrain) $TZData(:Asia/Qatar) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Bangkok: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Bangkok) { 4 | {-9223372036854775808 24124 0 LMT} 5 | {-2840164924 24124 0 BMT} 6 | {-1570084924 25200 0 +07} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Brunei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Brunei) { 4 | {-9223372036854775808 27580 0 LMT} 5 | {-1383464380 27000 0 +0730} 6 | {-1167636600 28800 0 +08} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Calcutta: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kolkata)]} { 3 | LoadTimeZoneFile Asia/Kolkata 4 | } 5 | set TZData(:Asia/Calcutta) $TZData(:Asia/Kolkata) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Chongqing: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chongqing) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Chungking: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Chungking) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dacca: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dhaka)]} { 3 | LoadTimeZoneFile Asia/Dhaka 4 | } 5 | set TZData(:Asia/Dacca) $TZData(:Asia/Dhaka) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Dubai: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Dubai) { 4 | {-9223372036854775808 13272 0 LMT} 5 | {-1577936472 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Harbin: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:Asia/Harbin) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Istanbul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Asia/Istanbul) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kabul: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kabul) { 4 | {-9223372036854775808 16608 0 LMT} 5 | {-2524538208 14400 0 +04} 6 | {-788932800 16200 0 +0430} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kashgar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Urumqi)]} { 3 | LoadTimeZoneFile Asia/Urumqi 4 | } 5 | set TZData(:Asia/Kashgar) $TZData(:Asia/Urumqi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kathmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Kathmandu) { 4 | {-9223372036854775808 20476 0 LMT} 5 | {-1577943676 19800 0 +0530} 6 | {504901800 20700 0 +0545} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Katmandu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Kathmandu)]} { 3 | LoadTimeZoneFile Asia/Kathmandu 4 | } 5 | set TZData(:Asia/Katmandu) $TZData(:Asia/Kathmandu) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Kuwait: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Riyadh)]} { 3 | LoadTimeZoneFile Asia/Riyadh 4 | } 5 | set TZData(:Asia/Kuwait) $TZData(:Asia/Riyadh) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Macao: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Macau)]} { 3 | LoadTimeZoneFile Asia/Macau 4 | } 5 | set TZData(:Asia/Macao) $TZData(:Asia/Macau) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Muscat: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Dubai)]} { 3 | LoadTimeZoneFile Asia/Dubai 4 | } 5 | set TZData(:Asia/Muscat) $TZData(:Asia/Dubai) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Phnom_Penh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Phnom_Penh) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Qatar: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Qatar) { 4 | {-9223372036854775808 12368 0 LMT} 5 | {-1577935568 14400 0 +04} 6 | {76190400 10800 0 +03} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Rangoon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Yangon)]} { 3 | LoadTimeZoneFile Asia/Yangon 4 | } 5 | set TZData(:Asia/Rangoon) $TZData(:Asia/Yangon) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Riyadh: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Riyadh) { 4 | {-9223372036854775808 11212 0 LMT} 5 | {-719636812 10800 0 +03} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Saigon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ho_Chi_Minh)]} { 3 | LoadTimeZoneFile Asia/Ho_Chi_Minh 4 | } 5 | set TZData(:Asia/Saigon) $TZData(:Asia/Ho_Chi_Minh) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Tel_Aviv: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Asia/Tel_Aviv) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimbu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Thimphu)]} { 3 | LoadTimeZoneFile Asia/Thimphu 4 | } 5 | set TZData(:Asia/Thimbu) $TZData(:Asia/Thimphu) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Thimphu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Thimphu) { 4 | {-9223372036854775808 21516 0 LMT} 5 | {-706341516 19800 0 +0530} 6 | {560025000 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Ujung_Pandang: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Makassar)]} { 3 | LoadTimeZoneFile Asia/Makassar 4 | } 5 | set TZData(:Asia/Ujung_Pandang) $TZData(:Asia/Makassar) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Ulan_Bator: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Ulaanbaatar)]} { 3 | LoadTimeZoneFile Asia/Ulaanbaatar 4 | } 5 | set TZData(:Asia/Ulan_Bator) $TZData(:Asia/Ulaanbaatar) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Urumqi: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Asia/Urumqi) { 4 | {-9223372036854775808 21020 0 LMT} 5 | {-1325483420 21600 0 +06} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Asia/Vientiane: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Bangkok)]} { 3 | LoadTimeZoneFile Asia/Bangkok 4 | } 5 | set TZData(:Asia/Vientiane) $TZData(:Asia/Bangkok) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Atlantic/Faeroe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Faroe)]} { 3 | LoadTimeZoneFile Atlantic/Faroe 4 | } 5 | set TZData(:Atlantic/Faeroe) $TZData(:Atlantic/Faroe) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Atlantic/Jan_Mayen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Oslo)]} { 3 | LoadTimeZoneFile Europe/Oslo 4 | } 5 | set TZData(:Atlantic/Jan_Mayen) $TZData(:Europe/Oslo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Atlantic/South_Georgia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Atlantic/South_Georgia) { 4 | {-9223372036854775808 -8768 0 LMT} 5 | {-2524512832 -7200 0 -02} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Atlantic/St_Helena: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Abidjan)]} { 3 | LoadTimeZoneFile Africa/Abidjan 4 | } 5 | set TZData(:Atlantic/St_Helena) $TZData(:Africa/Abidjan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/ACT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/ACT) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/Canberra: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/Canberra) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/LHI: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Lord_Howe)]} { 3 | LoadTimeZoneFile Australia/Lord_Howe 4 | } 5 | set TZData(:Australia/LHI) $TZData(:Australia/Lord_Howe) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/NSW: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Sydney)]} { 3 | LoadTimeZoneFile Australia/Sydney 4 | } 5 | set TZData(:Australia/NSW) $TZData(:Australia/Sydney) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/North: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Darwin)]} { 3 | LoadTimeZoneFile Australia/Darwin 4 | } 5 | set TZData(:Australia/North) $TZData(:Australia/Darwin) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/Queensland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Brisbane)]} { 3 | LoadTimeZoneFile Australia/Brisbane 4 | } 5 | set TZData(:Australia/Queensland) $TZData(:Australia/Brisbane) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/South: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Adelaide)]} { 3 | LoadTimeZoneFile Australia/Adelaide 4 | } 5 | set TZData(:Australia/South) $TZData(:Australia/Adelaide) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/Tasmania: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Hobart)]} { 3 | LoadTimeZoneFile Australia/Hobart 4 | } 5 | set TZData(:Australia/Tasmania) $TZData(:Australia/Hobart) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/Victoria: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Melbourne)]} { 3 | LoadTimeZoneFile Australia/Melbourne 4 | } 5 | set TZData(:Australia/Victoria) $TZData(:Australia/Melbourne) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Australia/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Australia/Perth)]} { 3 | LoadTimeZoneFile Australia/Perth 4 | } 5 | set TZData(:Australia/West) $TZData(:Australia/Perth) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/Acre: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Rio_Branco)]} { 3 | LoadTimeZoneFile America/Rio_Branco 4 | } 5 | set TZData(:Brazil/Acre) $TZData(:America/Rio_Branco) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/DeNoronha: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Noronha)]} { 3 | LoadTimeZoneFile America/Noronha 4 | } 5 | set TZData(:Brazil/DeNoronha) $TZData(:America/Noronha) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/East: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Sao_Paulo)]} { 3 | LoadTimeZoneFile America/Sao_Paulo 4 | } 5 | set TZData(:Brazil/East) $TZData(:America/Sao_Paulo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Brazil/West: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Manaus)]} { 3 | LoadTimeZoneFile America/Manaus 4 | } 5 | set TZData(:Brazil/West) $TZData(:America/Manaus) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Atlantic: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:Canada/Atlantic) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Winnipeg)]} { 3 | LoadTimeZoneFile America/Winnipeg 4 | } 5 | set TZData(:Canada/Central) $TZData(:America/Winnipeg) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/East-Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/East-Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Toronto)]} { 3 | LoadTimeZoneFile America/Toronto 4 | } 5 | set TZData(:Canada/Eastern) $TZData(:America/Toronto) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Edmonton)]} { 3 | LoadTimeZoneFile America/Edmonton 4 | } 5 | set TZData(:Canada/Mountain) $TZData(:America/Edmonton) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Newfoundland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/St_Johns)]} { 3 | LoadTimeZoneFile America/St_Johns 4 | } 5 | set TZData(:Canada/Newfoundland) $TZData(:America/St_Johns) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Vancouver)]} { 3 | LoadTimeZoneFile America/Vancouver 4 | } 5 | set TZData(:Canada/Pacific) $TZData(:America/Vancouver) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Saskatchewan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:Canada/Saskatchewan) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Canada/Yukon: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Whitehorse)]} { 3 | LoadTimeZoneFile America/Whitehorse 4 | } 5 | set TZData(:Canada/Yukon) $TZData(:America/Whitehorse) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Chile/Continental: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Santiago)]} { 3 | LoadTimeZoneFile America/Santiago 4 | } 5 | set TZData(:Chile/Continental) $TZData(:America/Santiago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Chile/EasterIsland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Easter)]} { 3 | LoadTimeZoneFile Pacific/Easter 4 | } 5 | set TZData(:Chile/EasterIsland) $TZData(:Pacific/Easter) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Cuba: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Havana)]} { 3 | LoadTimeZoneFile America/Havana 4 | } 5 | set TZData(:Cuba) $TZData(:America/Havana) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/EST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:EST) { 4 | {-9223372036854775808 -18000 0 EST} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Egypt: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Cairo)]} { 3 | LoadTimeZoneFile Africa/Cairo 4 | } 5 | set TZData(:Egypt) $TZData(:Africa/Cairo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Dublin)]} { 3 | LoadTimeZoneFile Europe/Dublin 4 | } 5 | set TZData(:Eire) $TZData(:Europe/Dublin) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT) { 4 | {-9223372036854775808 0 0 GMT} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+1) { 4 | {-9223372036854775808 -3600 0 -01} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+10) { 4 | {-9223372036854775808 -36000 0 -10} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+11) { 4 | {-9223372036854775808 -39600 0 -11} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+12) { 4 | {-9223372036854775808 -43200 0 -12} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+2) { 4 | {-9223372036854775808 -7200 0 -02} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+3) { 4 | {-9223372036854775808 -10800 0 -03} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+4) { 4 | {-9223372036854775808 -14400 0 -04} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+5) { 4 | {-9223372036854775808 -18000 0 -05} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+6) { 4 | {-9223372036854775808 -21600 0 -06} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+7) { 4 | {-9223372036854775808 -25200 0 -07} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+8) { 4 | {-9223372036854775808 -28800 0 -08} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT+9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT+9) { 4 | {-9223372036854775808 -32400 0 -09} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-1: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-1) { 4 | {-9223372036854775808 3600 0 +01} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-10: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-10) { 4 | {-9223372036854775808 36000 0 +10} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-11: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-11) { 4 | {-9223372036854775808 39600 0 +11} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-12: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-12) { 4 | {-9223372036854775808 43200 0 +12} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-13: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-13) { 4 | {-9223372036854775808 46800 0 +13} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-14: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-14) { 4 | {-9223372036854775808 50400 0 +14} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-2: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-2) { 4 | {-9223372036854775808 7200 0 +02} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-3: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-3) { 4 | {-9223372036854775808 10800 0 +03} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-4: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-4) { 4 | {-9223372036854775808 14400 0 +04} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-5: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-5) { 4 | {-9223372036854775808 18000 0 +05} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-6: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-6) { 4 | {-9223372036854775808 21600 0 +06} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-7: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-7) { 4 | {-9223372036854775808 25200 0 +07} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-8: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-8) { 4 | {-9223372036854775808 28800 0 +08} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT-9: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/GMT-9) { 4 | {-9223372036854775808 32400 0 +09} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Etc/Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UCT) { 4 | {-9223372036854775808 0 0 UCT} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Etc/UTC) { 4 | {-9223372036854775808 0 0 UTC} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Etc/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Etc/Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Belfast: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Belfast) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Bratislava: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Prague)]} { 3 | LoadTimeZoneFile Europe/Prague 4 | } 5 | set TZData(:Europe/Bratislava) $TZData(:Europe/Prague) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Busingen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Busingen) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Guernsey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Guernsey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Isle_of_Man: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Isle_of_Man) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Jersey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:Europe/Jersey) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Ljubljana: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Ljubljana) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Mariehamn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Helsinki)]} { 3 | LoadTimeZoneFile Europe/Helsinki 4 | } 5 | set TZData(:Europe/Mariehamn) $TZData(:Europe/Helsinki) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Nicosia: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Nicosia)]} { 3 | LoadTimeZoneFile Asia/Nicosia 4 | } 5 | set TZData(:Europe/Nicosia) $TZData(:Asia/Nicosia) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Podgorica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Podgorica) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/San_Marino: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/San_Marino) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Sarajevo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Sarajevo) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Skopje: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Skopje) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Tiraspol: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Chisinau)]} { 3 | LoadTimeZoneFile Europe/Chisinau 4 | } 5 | set TZData(:Europe/Tiraspol) $TZData(:Europe/Chisinau) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Vaduz: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Zurich)]} { 3 | LoadTimeZoneFile Europe/Zurich 4 | } 5 | set TZData(:Europe/Vaduz) $TZData(:Europe/Zurich) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Vatican: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Rome)]} { 3 | LoadTimeZoneFile Europe/Rome 4 | } 5 | set TZData(:Europe/Vatican) $TZData(:Europe/Rome) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Europe/Zagreb: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Belgrade)]} { 3 | LoadTimeZoneFile Europe/Belgrade 4 | } 5 | set TZData(:Europe/Zagreb) $TZData(:Europe/Belgrade) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GB: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GB-Eire: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/London)]} { 3 | LoadTimeZoneFile Europe/London 4 | } 5 | set TZData(:GB-Eire) $TZData(:Europe/London) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT+0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT+0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT-0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT-0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/GMT0: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:GMT0) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Greenwich: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/GMT)]} { 3 | LoadTimeZoneFile Etc/GMT 4 | } 5 | set TZData(:Greenwich) $TZData(:Etc/GMT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/HST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:HST) { 4 | {-9223372036854775808 -36000 0 HST} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Hongkong: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Hong_Kong)]} { 3 | LoadTimeZoneFile Asia/Hong_Kong 4 | } 5 | set TZData(:Hongkong) $TZData(:Asia/Hong_Kong) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Iceland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Atlantic/Reykjavik)]} { 3 | LoadTimeZoneFile Atlantic/Reykjavik 4 | } 5 | set TZData(:Iceland) $TZData(:Atlantic/Reykjavik) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Antananarivo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Antananarivo) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Chagos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Chagos) { 4 | {-9223372036854775808 17380 0 LMT} 5 | {-1988167780 18000 0 +05} 6 | {820436400 21600 0 +06} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Christmas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Christmas) { 4 | {-9223372036854775808 25372 0 LMT} 5 | {-2364102172 25200 0 +07} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Cocos: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Cocos) { 4 | {-9223372036854775808 23260 0 LMT} 5 | {-2209012060 23400 0 +0630} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Comoro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Comoro) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Kerguelen: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Kerguelen) { 4 | {-9223372036854775808 0 0 -00} 5 | {-631152000 18000 0 +05} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Mahe: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Mahe) { 4 | {-9223372036854775808 13308 0 LMT} 5 | {-2006653308 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Maldives: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Maldives) { 4 | {-9223372036854775808 17640 0 LMT} 5 | {-2840158440 17640 0 MMT} 6 | {-315636840 18000 0 +05} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Mayotte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Nairobi)]} { 3 | LoadTimeZoneFile Africa/Nairobi 4 | } 5 | set TZData(:Indian/Mayotte) $TZData(:Africa/Nairobi) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Indian/Reunion: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Indian/Reunion) { 4 | {-9223372036854775808 13312 0 LMT} 5 | {-1848886912 14400 0 +04} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Iran: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tehran)]} { 3 | LoadTimeZoneFile Asia/Tehran 4 | } 5 | set TZData(:Iran) $TZData(:Asia/Tehran) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Israel: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Jerusalem)]} { 3 | LoadTimeZoneFile Asia/Jerusalem 4 | } 5 | set TZData(:Israel) $TZData(:Asia/Jerusalem) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Jamaica: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Jamaica)]} { 3 | LoadTimeZoneFile America/Jamaica 4 | } 5 | set TZData(:Jamaica) $TZData(:America/Jamaica) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Japan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Tokyo)]} { 3 | LoadTimeZoneFile Asia/Tokyo 4 | } 5 | set TZData(:Japan) $TZData(:Asia/Tokyo) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Kwajalein: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Kwajalein)]} { 3 | LoadTimeZoneFile Pacific/Kwajalein 4 | } 5 | set TZData(:Kwajalein) $TZData(:Pacific/Kwajalein) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Libya: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Africa/Tripoli)]} { 3 | LoadTimeZoneFile Africa/Tripoli 4 | } 5 | set TZData(:Libya) $TZData(:Africa/Tripoli) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/MST: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:MST) { 4 | {-9223372036854775808 -25200 0 MST} 5 | } 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Mexico/BajaNorte: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Tijuana)]} { 3 | LoadTimeZoneFile America/Tijuana 4 | } 5 | set TZData(:Mexico/BajaNorte) $TZData(:America/Tijuana) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Mexico/BajaSur: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mazatlan)]} { 3 | LoadTimeZoneFile America/Mazatlan 4 | } 5 | set TZData(:Mexico/BajaSur) $TZData(:America/Mazatlan) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Mexico/General: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Mexico_City)]} { 3 | LoadTimeZoneFile America/Mexico_City 4 | } 5 | set TZData(:Mexico/General) $TZData(:America/Mexico_City) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/NZ: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Auckland)]} { 3 | LoadTimeZoneFile Pacific/Auckland 4 | } 5 | set TZData(:NZ) $TZData(:Pacific/Auckland) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/NZ-CHAT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chatham)]} { 3 | LoadTimeZoneFile Pacific/Chatham 4 | } 5 | set TZData(:NZ-CHAT) $TZData(:Pacific/Chatham) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Navajo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:Navajo) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/PRC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Shanghai)]} { 3 | LoadTimeZoneFile Asia/Shanghai 4 | } 5 | set TZData(:PRC) $TZData(:Asia/Shanghai) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Chuuk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Chuuk) { 4 | {-9223372036854775808 36428 0 LMT} 5 | {-2177489228 36000 0 +10} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Fakaofo: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Fakaofo) { 4 | {-9223372036854775808 -41096 0 LMT} 5 | {-2177411704 -39600 0 -11} 6 | {1325242800 46800 0 +13} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Funafuti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Funafuti) { 4 | {-9223372036854775808 43012 0 LMT} 5 | {-2177495812 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Gambier: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Gambier) { 4 | {-9223372036854775808 -32388 0 LMT} 5 | {-1806678012 -32400 0 -09} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Guadalcanal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Guadalcanal) { 4 | {-9223372036854775808 38388 0 LMT} 5 | {-1806748788 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Johnston: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:Pacific/Johnston) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Majuro: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Majuro) { 4 | {-9223372036854775808 41088 0 LMT} 5 | {-2177493888 39600 0 +11} 6 | {-7988400 43200 0 +12} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Marquesas: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Marquesas) { 4 | {-9223372036854775808 -33480 0 LMT} 5 | {-1806676920 -34200 0 -0930} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Midway: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Midway) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Pago_Pago: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pago_Pago) { 4 | {-9223372036854775808 45432 0 LMT} 5 | {-2445424632 -40968 0 LMT} 6 | {-1861879032 -39600 0 SST} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Palau: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Palau) { 4 | {-9223372036854775808 32276 0 LMT} 5 | {-2177485076 32400 0 +09} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Pitcairn: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pitcairn) { 4 | {-9223372036854775808 -31220 0 LMT} 5 | {-2177421580 -30600 0 -0830} 6 | {893665800 -28800 0 -08} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Pohnpei: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Pohnpei) { 4 | {-9223372036854775808 37972 0 LMT} 5 | {-2177490772 39600 0 +11} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Ponape: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pohnpei)]} { 3 | LoadTimeZoneFile Pacific/Pohnpei 4 | } 5 | set TZData(:Pacific/Ponape) $TZData(:Pacific/Pohnpei) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Port_Moresby: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Port_Moresby) { 4 | {-9223372036854775808 35320 0 LMT} 5 | {-2840176120 35312 0 PMMT} 6 | {-2366790512 36000 0 +10} 7 | } 8 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Saipan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Guam)]} { 3 | LoadTimeZoneFile Pacific/Guam 4 | } 5 | set TZData(:Pacific/Saipan) $TZData(:Pacific/Guam) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:Pacific/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Tahiti: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tahiti) { 4 | {-9223372036854775808 -35896 0 LMT} 5 | {-1806674504 -36000 0 -10} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Tarawa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Tarawa) { 4 | {-9223372036854775808 41524 0 LMT} 5 | {-2177494324 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Truk: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Truk) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Wake: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wake) { 4 | {-9223372036854775808 39988 0 LMT} 5 | {-2177492788 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Wallis: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | 3 | set TZData(:Pacific/Wallis) { 4 | {-9223372036854775808 44120 0 LMT} 5 | {-2177496920 43200 0 +12} 6 | } 7 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Pacific/Yap: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Chuuk)]} { 3 | LoadTimeZoneFile Pacific/Chuuk 4 | } 5 | set TZData(:Pacific/Yap) $TZData(:Pacific/Chuuk) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Poland: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Warsaw)]} { 3 | LoadTimeZoneFile Europe/Warsaw 4 | } 5 | set TZData(:Poland) $TZData(:Europe/Warsaw) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Portugal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Lisbon)]} { 3 | LoadTimeZoneFile Europe/Lisbon 4 | } 5 | set TZData(:Portugal) $TZData(:Europe/Lisbon) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/ROC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Taipei)]} { 3 | LoadTimeZoneFile Asia/Taipei 4 | } 5 | set TZData(:ROC) $TZData(:Asia/Taipei) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/ROK: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Seoul)]} { 3 | LoadTimeZoneFile Asia/Seoul 4 | } 5 | set TZData(:ROK) $TZData(:Asia/Seoul) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Singapore: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Asia/Singapore)]} { 3 | LoadTimeZoneFile Asia/Singapore 4 | } 5 | set TZData(:Singapore) $TZData(:Asia/Singapore) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/AST4: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Puerto_Rico)]} { 3 | LoadTimeZoneFile America/Puerto_Rico 4 | } 5 | set TZData(:SystemV/AST4) $TZData(:America/Puerto_Rico) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/AST4ADT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Halifax)]} { 3 | LoadTimeZoneFile America/Halifax 4 | } 5 | set TZData(:SystemV/AST4ADT) $TZData(:America/Halifax) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/CST6: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Regina)]} { 3 | LoadTimeZoneFile America/Regina 4 | } 5 | set TZData(:SystemV/CST6) $TZData(:America/Regina) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/CST6CDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:SystemV/CST6CDT) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/EST5: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indianapolis)]} { 3 | LoadTimeZoneFile America/Indianapolis 4 | } 5 | set TZData(:SystemV/EST5) $TZData(:America/Indianapolis) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/EST5EDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:SystemV/EST5EDT) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/HST10: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:SystemV/HST10) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/MST7: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:SystemV/MST7) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/MST7MDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:SystemV/MST7MDT) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/PST8: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pitcairn)]} { 3 | LoadTimeZoneFile Pacific/Pitcairn 4 | } 5 | set TZData(:SystemV/PST8) $TZData(:Pacific/Pitcairn) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/PST8PDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:SystemV/PST8PDT) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/YST9: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Gambier)]} { 3 | LoadTimeZoneFile Pacific/Gambier 4 | } 5 | set TZData(:SystemV/YST9) $TZData(:Pacific/Gambier) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/SystemV/YST9YDT: -------------------------------------------------------------------------------- 1 | # created by ../tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:SystemV/YST9YDT) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Turkey: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Istanbul)]} { 3 | LoadTimeZoneFile Europe/Istanbul 4 | } 5 | set TZData(:Turkey) $TZData(:Europe/Istanbul) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/UCT: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UCT)]} { 3 | LoadTimeZoneFile Etc/UCT 4 | } 5 | set TZData(:UCT) $TZData(:Etc/UCT) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Alaska: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Anchorage)]} { 3 | LoadTimeZoneFile America/Anchorage 4 | } 5 | set TZData(:US/Alaska) $TZData(:America/Anchorage) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Aleutian: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Adak)]} { 3 | LoadTimeZoneFile America/Adak 4 | } 5 | set TZData(:US/Aleutian) $TZData(:America/Adak) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Arizona: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Phoenix)]} { 3 | LoadTimeZoneFile America/Phoenix 4 | } 5 | set TZData(:US/Arizona) $TZData(:America/Phoenix) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Central: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Chicago)]} { 3 | LoadTimeZoneFile America/Chicago 4 | } 5 | set TZData(:US/Central) $TZData(:America/Chicago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Eastern: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/New_York)]} { 3 | LoadTimeZoneFile America/New_York 4 | } 5 | set TZData(:US/Eastern) $TZData(:America/New_York) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Hawaii: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Honolulu)]} { 3 | LoadTimeZoneFile Pacific/Honolulu 4 | } 5 | set TZData(:US/Hawaii) $TZData(:Pacific/Honolulu) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Indiana-Starke: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Indiana/Knox)]} { 3 | LoadTimeZoneFile America/Indiana/Knox 4 | } 5 | set TZData(:US/Indiana-Starke) $TZData(:America/Indiana/Knox) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Michigan: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Detroit)]} { 3 | LoadTimeZoneFile America/Detroit 4 | } 5 | set TZData(:US/Michigan) $TZData(:America/Detroit) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Mountain: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Denver)]} { 3 | LoadTimeZoneFile America/Denver 4 | } 5 | set TZData(:US/Mountain) $TZData(:America/Denver) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Pacific: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Pacific-New: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(America/Los_Angeles)]} { 3 | LoadTimeZoneFile America/Los_Angeles 4 | } 5 | set TZData(:US/Pacific-New) $TZData(:America/Los_Angeles) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/US/Samoa: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Pacific/Pago_Pago)]} { 3 | LoadTimeZoneFile Pacific/Pago_Pago 4 | } 5 | set TZData(:US/Samoa) $TZData(:Pacific/Pago_Pago) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/UTC: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:UTC) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Universal: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Universal) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/W-SU: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Europe/Moscow)]} { 3 | LoadTimeZoneFile Europe/Moscow 4 | } 5 | set TZData(:W-SU) $TZData(:Europe/Moscow) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tcl8.6/tzdata/Zulu: -------------------------------------------------------------------------------- 1 | # created by tools/tclZIC.tcl - do not edit 2 | if {![info exists TZData(Etc/UTC)]} { 3 | LoadTimeZoneFile Etc/UTC 4 | } 5 | set TZData(:Zulu) $TZData(:Etc/UTC) 6 | -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/earth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/earth.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/earthmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/earthmenu.png -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/earthris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/earthris.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/ouster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/ouster.png -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/tcllogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/tcllogo.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/demos/images/teapot.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/demos/images/teapot.ppm -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/logo100.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logo64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/logo64.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/logoLarge.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/logoMed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/logoMed.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/pwrdLogo100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/pwrdLogo100.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/pwrdLogo150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/pwrdLogo150.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/pwrdLogo175.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/pwrdLogo175.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/pwrdLogo200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/pwrdLogo200.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/pwrdLogo75.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/pwrdLogo75.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/images/tai-ku.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/==16.2.0/tcl/tk8.6/images/tai-ku.gif -------------------------------------------------------------------------------- /==16.2.0/tcl/tk8.6/msgs/en_gb.msg: -------------------------------------------------------------------------------- 1 | namespace eval ::tk { 2 | ::msgcat::mcset en_gb Color Colour 3 | } 4 | -------------------------------------------------------------------------------- /MAJOR PROJECT_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/MAJOR PROJECT_report.pdf -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /desktop.ini: -------------------------------------------------------------------------------- 1 | [LocalizedFileNames] 2 | major project.pptx=@major project.pptx,0 3 | -------------------------------------------------------------------------------- /ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/ls -------------------------------------------------------------------------------- /major project.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sanghamitra1234/Major-Project-2019/8a008d43af3435162c15be60dca5774a35e033d0/major project.pptx --------------------------------------------------------------------------------