├── README.md ├── __pycache__ └── manage.cpython-36.pyc ├── db.sqlite3 ├── djangoProject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── medicine ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── sidefunctions.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_test.py │ ├── 0003_auto_20210331_2117.py │ ├── 0004_basicdata.py │ ├── 0005_qshistory.py │ ├── 0006_qshistory_user.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_test.cpython-36.pyc │ │ ├── 0003_auto_20210331_2117.cpython-36.pyc │ │ ├── 0004_basicdata.cpython-36.pyc │ │ ├── 0005_qshistory.cpython-36.pyc │ │ ├── 0006_qshistory_user.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── qs │ ├── .idea │ │ ├── .gitignore │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── 医药知识图谱.iml │ ├── __pycache__ │ │ ├── answer_search.cpython-36.pyc │ │ ├── answer_search.cpython-37.pyc │ │ ├── chatbot_graph.cpython-36.pyc │ │ ├── question_classifier.cpython-36.pyc │ │ ├── question_classifier.cpython-37.pyc │ │ ├── question_classifier.cpython-39.pyc │ │ ├── question_parser.cpython-36.pyc │ │ └── question_parser.cpython-37.pyc │ ├── answer_search.py │ ├── build_medicalgraph.py │ ├── chatbot_graph.py │ ├── data │ │ └── medical.json │ ├── dict │ │ ├── check.txt │ │ ├── deny.txt │ │ ├── department.txt │ │ ├── disease.txt │ │ ├── drug.txt │ │ ├── food.txt │ │ ├── producer.txt │ │ └── symptom.txt │ ├── pip │ ├── prepare_data │ │ ├── build_data.py │ │ ├── data_spider.py │ │ └── max_cut.py │ ├── question_classifier.py │ ├── question_parser.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-39.pyc │ │ │ ├── easy_install.py │ │ │ ├── pip-20.2.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── __main__.cpython-39.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── build_env.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── locations.cpython-39.pyc │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ ├── pyproject.cpython-39.pyc │ │ │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ │ │ └── wheel_builder.cpython-39.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── command_context.py │ │ │ │ │ ├── main.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── progress_bars.py │ │ │ │ │ ├── req_command.py │ │ │ │ │ ├── spinners.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── debug.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── installed.py │ │ │ │ │ ├── sdist.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ │ │ └── package_finder.cpython-39.pyc │ │ │ │ │ ├── collector.py │ │ │ │ │ └── package_finder.py │ │ │ │ ├── locations.py │ │ │ │ ├── main.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── direct_url.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ ├── link.py │ │ │ │ │ ├── scheme.py │ │ │ │ │ ├── search_scope.py │ │ │ │ │ ├── selection_prefs.py │ │ │ │ │ ├── target_python.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── network │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ │ │ ├── auth.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── lazy_wheel.py │ │ │ │ │ ├── session.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── xmlrpc.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ │ │ └── prepare.cpython-39.pyc │ │ │ │ │ ├── build │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ │ │ ├── metadata.py │ │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ │ ├── wheel.py │ │ │ │ │ │ └── wheel_legacy.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── install │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ │ ├── legacy.py │ │ │ │ │ │ └── wheel.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolution │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── base.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── legacy │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ └── resolver.py │ │ │ │ │ └── resolvelib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── candidates.py │ │ │ │ │ │ ├── factory.py │ │ │ │ │ │ ├── provider.py │ │ │ │ │ │ ├── requirements.py │ │ │ │ │ │ └── resolver.py │ │ │ │ ├── self_outdated_check.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ │ │ ├── typing.cpython-39.pyc │ │ │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── compatibility_tags.py │ │ │ │ │ ├── datetime.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── direct_url_helpers.py │ │ │ │ │ ├── distutils_args.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── entrypoints.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── filetypes.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── inject_securetransport.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── parallel.py │ │ │ │ │ ├── pkg_resources.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── subprocess.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ ├── unpacking.py │ │ │ │ │ ├── urls.py │ │ │ │ │ ├── virtualenv.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ ├── subversion.py │ │ │ │ │ └── versioncontrol.py │ │ │ │ └── wheel_builder.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── contextlib2.cpython-39.pyc │ │ │ │ ├── distro.cpython-39.pyc │ │ │ │ ├── ipaddress.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ ├── retrying.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ │ └── redis_cache.cpython-39.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-39.pyc │ │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ │ └── core.cpython-39.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-39.pyc │ │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── chardetect.cpython-39.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-39.pyc │ │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ │ └── winterm.cpython-39.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── contextlib2.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ │ └── tarfile.cpython-39.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-39.pyc │ │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ │ └── serializer.cpython-39.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ │ └── whitespace.cpython-39.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-39.pyc │ │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ │ └── fallback.cpython-39.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── ext.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── _typing.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _in_process.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── dirtools.py │ │ │ │ ├── envbuild.py │ │ │ │ ├── meta.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ │ └── spinner.cpython-39.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ │ └── utils.cpython-39.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 │ │ │ │ ├── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ │ └── structs.cpython-39.pyc │ │ │ │ ├── compat │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ │ └── collections_abc.py │ │ │ │ ├── providers.py │ │ │ │ ├── reporters.py │ │ │ │ ├── resolvers.py │ │ │ │ └── structs.py │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── toml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── common.cpython-39.pyc │ │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ │ └── tz.cpython-39.pyc │ │ │ │ ├── common.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── ordered.py │ │ │ │ └── tz.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ └── response.cpython-39.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ │ └── low_level.cpython-39.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-39.pyc │ │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ ├── vendor.txt │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── labels.cpython-39.pyc │ │ │ │ ├── mklabels.cpython-39.pyc │ │ │ │ ├── tests.cpython-39.pyc │ │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── tags.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ ├── pyparsing.py │ │ │ │ └── six.py │ │ │ └── extern │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── setuptools-49.2.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── REQUESTED │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _deprecation_warning.cpython-39.pyc │ │ │ ├── _imp.cpython-39.pyc │ │ │ ├── archive_util.cpython-39.pyc │ │ │ ├── build_meta.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── dep_util.cpython-39.pyc │ │ │ ├── depends.cpython-39.pyc │ │ │ ├── dist.cpython-39.pyc │ │ │ ├── distutils_patch.cpython-39.pyc │ │ │ ├── errors.cpython-39.pyc │ │ │ ├── extension.cpython-39.pyc │ │ │ ├── glob.cpython-39.pyc │ │ │ ├── installer.cpython-39.pyc │ │ │ ├── launch.cpython-39.pyc │ │ │ ├── lib2to3_ex.cpython-39.pyc │ │ │ ├── monkey.cpython-39.pyc │ │ │ ├── msvc.cpython-39.pyc │ │ │ ├── namespaces.cpython-39.pyc │ │ │ ├── package_index.cpython-39.pyc │ │ │ ├── py27compat.cpython-39.pyc │ │ │ ├── py31compat.cpython-39.pyc │ │ │ ├── py33compat.cpython-39.pyc │ │ │ ├── py34compat.cpython-39.pyc │ │ │ ├── sandbox.cpython-39.pyc │ │ │ ├── ssl_support.cpython-39.pyc │ │ │ ├── unicode_utils.cpython-39.pyc │ │ │ ├── version.cpython-39.pyc │ │ │ ├── wheel.cpython-39.pyc │ │ │ └── windows_support.cpython-39.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _distutils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _msvccompiler.cpython-39.pyc │ │ │ │ ├── archive_util.cpython-39.pyc │ │ │ │ ├── bcppcompiler.cpython-39.pyc │ │ │ │ ├── ccompiler.cpython-39.pyc │ │ │ │ ├── cmd.cpython-39.pyc │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── cygwinccompiler.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── dep_util.cpython-39.pyc │ │ │ │ ├── dir_util.cpython-39.pyc │ │ │ │ ├── dist.cpython-39.pyc │ │ │ │ ├── errors.cpython-39.pyc │ │ │ │ ├── extension.cpython-39.pyc │ │ │ │ ├── fancy_getopt.cpython-39.pyc │ │ │ │ ├── file_util.cpython-39.pyc │ │ │ │ ├── filelist.cpython-39.pyc │ │ │ │ ├── log.cpython-39.pyc │ │ │ │ ├── msvc9compiler.cpython-39.pyc │ │ │ │ ├── msvccompiler.cpython-39.pyc │ │ │ │ ├── spawn.cpython-39.pyc │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ ├── text_file.cpython-39.pyc │ │ │ │ ├── unixccompiler.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── versionpredicate.cpython-39.pyc │ │ │ ├── _msvccompiler.py │ │ │ ├── archive_util.py │ │ │ ├── bcppcompiler.py │ │ │ ├── ccompiler.py │ │ │ ├── cmd.py │ │ │ ├── command │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── bdist.cpython-39.pyc │ │ │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ │ ├── clean.cpython-39.pyc │ │ │ │ │ ├── config.cpython-39.pyc │ │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ │ ├── install_data.cpython-39.pyc │ │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ │ ├── install_headers.cpython-39.pyc │ │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ │ └── upload.cpython-39.pyc │ │ │ │ ├── bdist.py │ │ │ │ ├── bdist_dumb.py │ │ │ │ ├── bdist_msi.py │ │ │ │ ├── bdist_rpm.py │ │ │ │ ├── bdist_wininst.py │ │ │ │ ├── build.py │ │ │ │ ├── build_clib.py │ │ │ │ ├── build_ext.py │ │ │ │ ├── build_py.py │ │ │ │ ├── build_scripts.py │ │ │ │ ├── check.py │ │ │ │ ├── clean.py │ │ │ │ ├── config.py │ │ │ │ ├── install.py │ │ │ │ ├── install_data.py │ │ │ │ ├── install_egg_info.py │ │ │ │ ├── install_headers.py │ │ │ │ ├── install_lib.py │ │ │ │ ├── install_scripts.py │ │ │ │ ├── register.py │ │ │ │ ├── sdist.py │ │ │ │ └── upload.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── cygwinccompiler.py │ │ │ ├── debug.py │ │ │ ├── dep_util.py │ │ │ ├── dir_util.py │ │ │ ├── dist.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── fancy_getopt.py │ │ │ ├── file_util.py │ │ │ ├── filelist.py │ │ │ ├── log.py │ │ │ ├── msvc9compiler.py │ │ │ ├── msvccompiler.py │ │ │ ├── spawn.py │ │ │ ├── sysconfig.py │ │ │ ├── text_file.py │ │ │ ├── unixccompiler.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ └── versionpredicate.py │ │ │ ├── _imp.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ordered_set.cpython-39.pyc │ │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ │ └── six.cpython-39.pyc │ │ │ ├── ordered_set.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ │ └── version.cpython-39.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── tags.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-39.pyc │ │ │ │ ├── alias.cpython-39.pyc │ │ │ │ ├── bdist_egg.cpython-39.pyc │ │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ │ ├── build_clib.cpython-39.pyc │ │ │ │ ├── build_ext.cpython-39.pyc │ │ │ │ ├── build_py.cpython-39.pyc │ │ │ │ ├── develop.cpython-39.pyc │ │ │ │ ├── dist_info.cpython-39.pyc │ │ │ │ ├── easy_install.cpython-39.pyc │ │ │ │ ├── egg_info.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ │ ├── install_lib.cpython-39.pyc │ │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ │ ├── py36compat.cpython-39.pyc │ │ │ │ ├── register.cpython-39.pyc │ │ │ │ ├── rotate.cpython-39.pyc │ │ │ │ ├── saveopts.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ ├── setopt.cpython-39.pyc │ │ │ │ ├── test.cpython-39.pyc │ │ │ │ ├── upload.cpython-39.pyc │ │ │ │ └── upload_docs.cpython-39.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 │ │ │ ├── distutils_patch.py │ │ │ ├── errors.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-39.pyc │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── installer.py │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py34compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── easy_install-3.9.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.9.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg ├── sidefunctions.py ├── tests.py └── views.py ├── requirements.txt ├── static ├── css │ ├── aos.css │ ├── bootstrap-datepicker.css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap │ │ ├── bootstrap-reboot.css │ │ └── bootstrap.css │ ├── jquery-ui.css │ ├── jquery.fancybox.min.css │ ├── magnific-popup.css │ ├── mediaelementplayer.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── sb-admin-2.css │ ├── sb-admin-2.min.css │ └── style.css ├── fonts │ ├── flaticon │ │ ├── backup.txt │ │ ├── font │ │ │ ├── Flaticon.eot │ │ │ ├── Flaticon.svg │ │ │ ├── Flaticon.ttf │ │ │ ├── Flaticon.woff │ │ │ ├── Flaticon.woff2 │ │ │ ├── _flaticon.css │ │ │ ├── _flaticon.scss │ │ │ ├── flaticon.css │ │ │ └── flaticon.html │ │ └── license │ │ │ └── license.pdf │ └── icomoon │ │ ├── Read Me.txt │ │ ├── demo-files │ │ ├── demo.css │ │ └── demo.js │ │ ├── demo.html │ │ ├── fonts │ │ ├── icomoon.eot │ │ ├── icomoon.svg │ │ ├── icomoon.ttf │ │ └── icomoon.woff │ │ ├── selection.json │ │ └── style.css ├── gulpfile.js ├── images │ ├── depot_delivery_1.jpg │ ├── depot_hero_1.jpg │ ├── depot_img_1.jpg │ ├── depot_img_2.jpg │ ├── depot_img_3.jpg │ ├── medicine1.jpg │ ├── medicine2.jfif │ ├── medicine3.jpg │ ├── medicine4.jfif │ ├── pa1.jpg │ ├── pa2.jpg │ ├── pa3.jpg │ ├── person_1.jpg │ ├── person_2.jpg │ └── person_3.jpg ├── js │ ├── aos.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap.min.js │ ├── chart-area-demo.js │ ├── chart-bar-demo.js │ ├── chart-pie-demo.js │ ├── datatables-demo.js │ ├── demo │ │ ├── chart-area-demo.js │ │ ├── chart-bar-demo.js │ │ ├── chart-pie-demo.js │ │ └── datatables-demo.js │ ├── jquery-3.3.1.min.js │ ├── jquery-migrate-3.0.1.min.js │ ├── jquery-ui.js │ ├── jquery.animateNumber.min.js │ ├── jquery.countdown.min.js │ ├── jquery.easing.1.3.js │ ├── jquery.fancybox.min.js │ ├── jquery.magnific-popup.min.js │ ├── jquery.stellar.min.js │ ├── jquery.sticky.js │ ├── jquery.waypoints.min.js │ ├── main.js │ ├── mediaelement-and-player.min.js │ ├── owl.carousel.min.js │ ├── popper.min.js │ ├── sb-admin-2.js │ ├── sb-admin-2.min.js │ ├── slick.min.js │ └── typed.js ├── package-lock.json ├── package.json ├── prepros-6.config ├── s.jpg ├── scss │ ├── _buttons.scss │ ├── _cards.scss │ ├── _charts.scss │ ├── _dropdowns.scss │ ├── _error.scss │ ├── _footer.scss │ ├── _global.scss │ ├── _login.scss │ ├── _mixins.scss │ ├── _navs.scss │ ├── _site-base.scss │ ├── _site-blocks.scss │ ├── _site-navbar.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ └── vendor │ │ │ └── _rfs.scss │ ├── navs │ │ ├── _global.scss │ │ ├── _sidebar.scss │ │ └── _topbar.scss │ ├── sb-admin-2.scss │ ├── style.scss │ └── utilities │ │ ├── _animation.scss │ │ ├── _background.scss │ │ ├── _border.scss │ │ ├── _display.scss │ │ ├── _progress.scss │ │ ├── _rotate.scss │ │ └── _text.scss └── vendor │ ├── bootstrap │ ├── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ └── scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.scss │ │ ├── mixins │ │ ├── _alert.scss │ │ ├── _background-variant.scss │ │ ├── _badge.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _deprecate.scss │ │ ├── _float.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid-framework.scss │ │ ├── _grid.scss │ │ ├── _hover.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _nav-divider.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _screen-reader.scss │ │ ├── _size.scss │ │ ├── _table-row.scss │ │ ├── _text-emphasis.scss │ │ ├── _text-hide.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ └── _visibility.scss │ │ ├── utilities │ │ ├── _align.scss │ │ ├── _background.scss │ │ ├── _borders.scss │ │ ├── _clearfix.scss │ │ ├── _display.scss │ │ ├── _embed.scss │ │ ├── _flex.scss │ │ ├── _float.scss │ │ ├── _interactions.scss │ │ ├── _overflow.scss │ │ ├── _position.scss │ │ ├── _screenreaders.scss │ │ ├── _shadows.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ ├── _stretched-link.scss │ │ ├── _text.scss │ │ └── _visibility.scss │ │ └── vendor │ │ └── _rfs.scss │ ├── chart.js │ ├── Chart.bundle.js │ ├── Chart.bundle.min.js │ ├── Chart.js │ └── Chart.min.js │ ├── datatables │ ├── dataTables.bootstrap4.css │ ├── dataTables.bootstrap4.js │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ ├── jquery.dataTables.js │ └── jquery.dataTables.min.js │ ├── fontawesome-free │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.yml │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── package.json │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── perbyte.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uncharted.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wodu.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-user.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-virus.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 │ ├── jquery-easing │ ├── jquery.easing.compatibility.js │ ├── jquery.easing.js │ └── jquery.easing.min.js │ └── jquery │ ├── jquery.js │ ├── jquery.min.js │ ├── jquery.min.map │ ├── jquery.slim.js │ ├── jquery.slim.min.js │ └── jquery.slim.min.map ├── templates ├── index.html ├── login.html ├── passage.html ├── passageindex.html ├── qs.html ├── recommend.html ├── register.html ├── searchresult.html ├── show.html └── single.html └── venv ├── Lib └── site-packages │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── override.cpython-39.pyc │ └── override.py │ ├── distutils-precedence.pth │ ├── pip-21.1.1.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── __main__.cpython-39.pyc │ ├── _internal │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── build_env.cpython-39.pyc │ │ │ ├── cache.cpython-39.pyc │ │ │ ├── configuration.cpython-39.pyc │ │ │ ├── exceptions.cpython-39.pyc │ │ │ ├── main.cpython-39.pyc │ │ │ ├── pyproject.cpython-39.pyc │ │ │ ├── self_outdated_check.cpython-39.pyc │ │ │ └── wheel_builder.cpython-39.pyc │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── autocompletion.cpython-39.pyc │ │ │ │ ├── base_command.cpython-39.pyc │ │ │ │ ├── cmdoptions.cpython-39.pyc │ │ │ │ ├── command_context.cpython-39.pyc │ │ │ │ ├── main.cpython-39.pyc │ │ │ │ ├── main_parser.cpython-39.pyc │ │ │ │ ├── parser.cpython-39.pyc │ │ │ │ ├── progress_bars.cpython-39.pyc │ │ │ │ ├── req_command.cpython-39.pyc │ │ │ │ ├── spinners.cpython-39.pyc │ │ │ │ └── status_codes.cpython-39.pyc │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── command_context.py │ │ │ ├── main.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── completion.cpython-39.pyc │ │ │ │ ├── configuration.cpython-39.pyc │ │ │ │ ├── debug.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ ├── hash.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── install.cpython-39.pyc │ │ │ │ ├── list.cpython-39.pyc │ │ │ │ ├── search.cpython-39.pyc │ │ │ │ ├── show.cpython-39.pyc │ │ │ │ ├── uninstall.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── installed.cpython-39.pyc │ │ │ │ ├── sdist.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── installed.py │ │ │ ├── sdist.py │ │ │ └── wheel.py │ │ ├── exceptions.py │ │ ├── index │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── collector.cpython-39.pyc │ │ │ │ ├── package_finder.cpython-39.pyc │ │ │ │ └── sources.cpython-39.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _distutils.cpython-39.pyc │ │ │ │ ├── _sysconfig.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ └── pkg_resources.cpython-39.pyc │ │ │ ├── base.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── candidate.cpython-39.pyc │ │ │ │ ├── direct_url.cpython-39.pyc │ │ │ │ ├── format_control.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── link.cpython-39.pyc │ │ │ │ ├── scheme.cpython-39.pyc │ │ │ │ ├── search_scope.cpython-39.pyc │ │ │ │ ├── selection_prefs.cpython-39.pyc │ │ │ │ ├── target_python.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── candidate.py │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── link.py │ │ │ ├── scheme.py │ │ │ ├── search_scope.py │ │ │ ├── selection_prefs.py │ │ │ ├── target_python.py │ │ │ └── wheel.py │ │ ├── network │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── download.cpython-39.pyc │ │ │ │ ├── lazy_wheel.cpython-39.pyc │ │ │ │ ├── session.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── xmlrpc.cpython-39.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.py │ │ │ ├── session.py │ │ │ ├── utils.py │ │ │ └── xmlrpc.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── freeze.cpython-39.pyc │ │ │ │ └── prepare.cpython-39.pyc │ │ │ ├── build │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ │ ├── metadata_legacy.cpython-39.pyc │ │ │ │ │ ├── wheel.cpython-39.pyc │ │ │ │ │ └── wheel_legacy.cpython-39.pyc │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── editable_legacy.cpython-39.pyc │ │ │ │ │ ├── legacy.cpython-39.pyc │ │ │ │ │ └── wheel.cpython-39.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ ├── legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── constructors.cpython-39.pyc │ │ │ │ ├── req_file.cpython-39.pyc │ │ │ │ ├── req_install.cpython-39.pyc │ │ │ │ ├── req_set.cpython-39.pyc │ │ │ │ ├── req_tracker.cpython-39.pyc │ │ │ │ └── req_uninstall.cpython-39.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── base.cpython-39.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── candidates.cpython-39.pyc │ │ │ │ ├── factory.cpython-39.pyc │ │ │ │ ├── found_candidates.cpython-39.pyc │ │ │ │ ├── provider.cpython-39.pyc │ │ │ │ ├── reporter.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ └── resolver.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── appdirs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── compatibility_tags.cpython-39.pyc │ │ │ │ ├── datetime.cpython-39.pyc │ │ │ │ ├── deprecation.cpython-39.pyc │ │ │ │ ├── direct_url_helpers.cpython-39.pyc │ │ │ │ ├── distutils_args.cpython-39.pyc │ │ │ │ ├── encoding.cpython-39.pyc │ │ │ │ ├── entrypoints.cpython-39.pyc │ │ │ │ ├── filesystem.cpython-39.pyc │ │ │ │ ├── filetypes.cpython-39.pyc │ │ │ │ ├── glibc.cpython-39.pyc │ │ │ │ ├── hashes.cpython-39.pyc │ │ │ │ ├── inject_securetransport.cpython-39.pyc │ │ │ │ ├── logging.cpython-39.pyc │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packaging.cpython-39.pyc │ │ │ │ ├── parallel.cpython-39.pyc │ │ │ │ ├── pkg_resources.cpython-39.pyc │ │ │ │ ├── setuptools_build.cpython-39.pyc │ │ │ │ ├── subprocess.cpython-39.pyc │ │ │ │ ├── temp_dir.cpython-39.pyc │ │ │ │ ├── unpacking.cpython-39.pyc │ │ │ │ ├── urls.cpython-39.pyc │ │ │ │ ├── virtualenv.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── distutils_args.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── parallel.py │ │ │ ├── pkg_resources.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.py │ │ │ ├── unpacking.py │ │ │ ├── urls.py │ │ │ ├── virtualenv.py │ │ │ └── wheel.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bazaar.cpython-39.pyc │ │ │ │ ├── git.cpython-39.pyc │ │ │ │ ├── mercurial.cpython-39.pyc │ │ │ │ ├── subversion.cpython-39.pyc │ │ │ │ └── versioncontrol.cpython-39.pyc │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ ├── subversion.py │ │ │ └── versioncontrol.py │ │ └── wheel_builder.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appdirs.cpython-39.pyc │ │ │ ├── distro.cpython-39.pyc │ │ │ ├── pyparsing.cpython-39.pyc │ │ │ └── six.cpython-39.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _cmd.cpython-39.pyc │ │ │ │ ├── adapter.cpython-39.pyc │ │ │ │ ├── cache.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── controller.cpython-39.pyc │ │ │ │ ├── filewrapper.cpython-39.pyc │ │ │ │ ├── heuristics.cpython-39.pyc │ │ │ │ ├── serialize.cpython-39.pyc │ │ │ │ └── wrapper.cpython-39.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── file_cache.cpython-39.pyc │ │ │ │ │ └── redis_cache.cpython-39.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-39.pyc │ │ │ │ ├── __main__.cpython-39.pyc │ │ │ │ └── core.cpython-39.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── big5freq.cpython-39.pyc │ │ │ │ ├── big5prober.cpython-39.pyc │ │ │ │ ├── chardistribution.cpython-39.pyc │ │ │ │ ├── charsetgroupprober.cpython-39.pyc │ │ │ │ ├── charsetprober.cpython-39.pyc │ │ │ │ ├── codingstatemachine.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cp949prober.cpython-39.pyc │ │ │ │ ├── enums.cpython-39.pyc │ │ │ │ ├── escprober.cpython-39.pyc │ │ │ │ ├── escsm.cpython-39.pyc │ │ │ │ ├── eucjpprober.cpython-39.pyc │ │ │ │ ├── euckrfreq.cpython-39.pyc │ │ │ │ ├── euckrprober.cpython-39.pyc │ │ │ │ ├── euctwfreq.cpython-39.pyc │ │ │ │ ├── euctwprober.cpython-39.pyc │ │ │ │ ├── gb2312freq.cpython-39.pyc │ │ │ │ ├── gb2312prober.cpython-39.pyc │ │ │ │ ├── hebrewprober.cpython-39.pyc │ │ │ │ ├── jisfreq.cpython-39.pyc │ │ │ │ ├── jpcntx.cpython-39.pyc │ │ │ │ ├── langbulgarianmodel.cpython-39.pyc │ │ │ │ ├── langgreekmodel.cpython-39.pyc │ │ │ │ ├── langhebrewmodel.cpython-39.pyc │ │ │ │ ├── langhungarianmodel.cpython-39.pyc │ │ │ │ ├── langrussianmodel.cpython-39.pyc │ │ │ │ ├── langthaimodel.cpython-39.pyc │ │ │ │ ├── langturkishmodel.cpython-39.pyc │ │ │ │ ├── latin1prober.cpython-39.pyc │ │ │ │ ├── mbcharsetprober.cpython-39.pyc │ │ │ │ ├── mbcsgroupprober.cpython-39.pyc │ │ │ │ ├── mbcssm.cpython-39.pyc │ │ │ │ ├── sbcharsetprober.cpython-39.pyc │ │ │ │ ├── sbcsgroupprober.cpython-39.pyc │ │ │ │ ├── sjisprober.cpython-39.pyc │ │ │ │ ├── universaldetector.cpython-39.pyc │ │ │ │ ├── utf8prober.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── chardetect.cpython-39.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 │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── languages.cpython-39.pyc │ │ │ │ └── languages.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── ansi.cpython-39.pyc │ │ │ │ ├── ansitowin32.cpython-39.pyc │ │ │ │ ├── initialise.cpython-39.pyc │ │ │ │ ├── win32.cpython-39.pyc │ │ │ │ └── winterm.cpython-39.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── database.cpython-39.pyc │ │ │ │ ├── index.cpython-39.pyc │ │ │ │ ├── locators.cpython-39.pyc │ │ │ │ ├── manifest.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── metadata.cpython-39.pyc │ │ │ │ ├── resources.cpython-39.pyc │ │ │ │ ├── scripts.cpython-39.pyc │ │ │ │ ├── util.cpython-39.pyc │ │ │ │ ├── version.cpython-39.pyc │ │ │ │ └── wheel.cpython-39.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── misc.cpython-39.pyc │ │ │ │ │ ├── shutil.cpython-39.pyc │ │ │ │ │ ├── sysconfig.cpython-39.pyc │ │ │ │ │ └── tarfile.cpython-39.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-39.pyc │ │ │ │ ├── _ihatexml.cpython-39.pyc │ │ │ │ ├── _inputstream.cpython-39.pyc │ │ │ │ ├── _tokenizer.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── constants.cpython-39.pyc │ │ │ │ ├── html5parser.cpython-39.pyc │ │ │ │ └── serializer.cpython-39.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _base.cpython-39.pyc │ │ │ │ │ └── py.cpython-39.pyc │ │ │ │ ├── _base.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-39.pyc │ │ │ │ │ ├── lint.cpython-39.pyc │ │ │ │ │ ├── optionaltags.cpython-39.pyc │ │ │ │ │ ├── sanitizer.cpython-39.pyc │ │ │ │ │ └── whitespace.cpython-39.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-39.pyc │ │ │ │ │ ├── genshi.cpython-39.pyc │ │ │ │ │ └── sax.cpython-39.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ │ └── etree_lxml.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── base.cpython-39.pyc │ │ │ │ ├── dom.cpython-39.pyc │ │ │ │ ├── etree.cpython-39.pyc │ │ │ │ ├── etree_lxml.cpython-39.pyc │ │ │ │ └── genshi.cpython-39.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── codec.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── core.cpython-39.pyc │ │ │ │ ├── idnadata.cpython-39.pyc │ │ │ │ ├── intranges.cpython-39.pyc │ │ │ │ ├── package_data.cpython-39.pyc │ │ │ │ └── uts46data.cpython-39.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── ext.cpython-39.pyc │ │ │ │ └── fallback.cpython-39.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── build.cpython-39.pyc │ │ │ │ ├── check.cpython-39.pyc │ │ │ │ ├── colorlog.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── dirtools.cpython-39.pyc │ │ │ │ ├── envbuild.cpython-39.pyc │ │ │ │ ├── meta.cpython-39.pyc │ │ │ │ └── wrappers.cpython-39.pyc │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _in_process.cpython-39.pyc │ │ │ │ └── _in_process.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ └── py31compat.cpython-39.pyc │ │ │ └── py31compat.py │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── bar.cpython-39.pyc │ │ │ │ ├── counter.cpython-39.pyc │ │ │ │ └── spinner.cpython-39.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── __version__.cpython-39.pyc │ │ │ │ ├── _internal_utils.cpython-39.pyc │ │ │ │ ├── adapters.cpython-39.pyc │ │ │ │ ├── api.cpython-39.pyc │ │ │ │ ├── auth.cpython-39.pyc │ │ │ │ ├── certs.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── cookies.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── help.cpython-39.pyc │ │ │ │ ├── hooks.cpython-39.pyc │ │ │ │ ├── models.cpython-39.pyc │ │ │ │ ├── packages.cpython-39.pyc │ │ │ │ ├── sessions.cpython-39.pyc │ │ │ │ ├── status_codes.cpython-39.pyc │ │ │ │ ├── structures.cpython-39.pyc │ │ │ │ └── utils.cpython-39.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 │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── providers.cpython-39.pyc │ │ │ │ ├── reporters.cpython-39.pyc │ │ │ │ ├── resolvers.cpython-39.pyc │ │ │ │ └── structs.cpython-39.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── collections_abc.cpython-39.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _asyncio.cpython-39.pyc │ │ │ │ ├── _utils.cpython-39.pyc │ │ │ │ ├── after.cpython-39.pyc │ │ │ │ ├── before.cpython-39.pyc │ │ │ │ ├── before_sleep.cpython-39.pyc │ │ │ │ ├── compat.cpython-39.pyc │ │ │ │ ├── nap.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── stop.cpython-39.pyc │ │ │ │ ├── tornadoweb.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── compat.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── toml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── decoder.cpython-39.pyc │ │ │ │ ├── encoder.cpython-39.pyc │ │ │ │ ├── ordered.cpython-39.pyc │ │ │ │ └── tz.cpython-39.pyc │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── ordered.py │ │ │ └── tz.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _collections.cpython-39.pyc │ │ │ │ ├── _version.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── connectionpool.cpython-39.pyc │ │ │ │ ├── exceptions.cpython-39.pyc │ │ │ │ ├── fields.cpython-39.pyc │ │ │ │ ├── filepost.cpython-39.pyc │ │ │ │ ├── poolmanager.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ └── response.cpython-39.pyc │ │ │ ├── _collections.py │ │ │ ├── _version.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ ├── _appengine_environ.cpython-39.pyc │ │ │ │ │ ├── appengine.cpython-39.pyc │ │ │ │ │ ├── ntlmpool.cpython-39.pyc │ │ │ │ │ ├── pyopenssl.cpython-39.pyc │ │ │ │ │ ├── securetransport.cpython-39.pyc │ │ │ │ │ └── socks.cpython-39.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ ├── bindings.cpython-39.pyc │ │ │ │ │ │ └── low_level.cpython-39.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-39.pyc │ │ │ │ │ └── six.cpython-39.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ │ └── makefile.cpython-39.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ │ └── _implementation.cpython-39.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── connection.cpython-39.pyc │ │ │ │ ├── proxy.cpython-39.pyc │ │ │ │ ├── queue.cpython-39.pyc │ │ │ │ ├── request.cpython-39.pyc │ │ │ │ ├── response.cpython-39.pyc │ │ │ │ ├── retry.cpython-39.pyc │ │ │ │ ├── ssl_.cpython-39.pyc │ │ │ │ ├── ssltransport.cpython-39.pyc │ │ │ │ ├── timeout.cpython-39.pyc │ │ │ │ ├── url.cpython-39.pyc │ │ │ │ └── wait.cpython-39.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── labels.cpython-39.pyc │ │ │ ├── mklabels.cpython-39.pyc │ │ │ ├── tests.cpython-39.pyc │ │ │ └── x_user_defined.cpython-39.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── appdirs.cpython-39.pyc │ │ │ └── pyparsing.cpython-39.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-39.pyc │ │ │ │ ├── __init__.cpython-39.pyc │ │ │ │ ├── _compat.cpython-39.pyc │ │ │ │ ├── _structures.cpython-39.pyc │ │ │ │ ├── _typing.cpython-39.pyc │ │ │ │ ├── markers.cpython-39.pyc │ │ │ │ ├── requirements.cpython-39.pyc │ │ │ │ ├── specifiers.cpython-39.pyc │ │ │ │ ├── tags.cpython-39.pyc │ │ │ │ ├── utils.cpython-39.pyc │ │ │ │ └── version.cpython-39.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ └── pyparsing.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-39.pyc │ └── tests │ │ └── data │ │ └── my-test-package-source │ │ ├── __pycache__ │ │ └── setup.cpython-39.pyc │ │ └── setup.py │ ├── setuptools-56.1.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ └── top_level.txt │ └── setuptools │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-39.pyc │ ├── _deprecation_warning.cpython-39.pyc │ ├── _imp.cpython-39.pyc │ ├── archive_util.cpython-39.pyc │ ├── build_meta.cpython-39.pyc │ ├── config.cpython-39.pyc │ ├── dep_util.cpython-39.pyc │ ├── depends.cpython-39.pyc │ ├── dist.cpython-39.pyc │ ├── errors.cpython-39.pyc │ ├── extension.cpython-39.pyc │ ├── glob.cpython-39.pyc │ ├── installer.cpython-39.pyc │ ├── launch.cpython-39.pyc │ ├── lib2to3_ex.cpython-39.pyc │ ├── monkey.cpython-39.pyc │ ├── msvc.cpython-39.pyc │ ├── namespaces.cpython-39.pyc │ ├── package_index.cpython-39.pyc │ ├── py34compat.cpython-39.pyc │ ├── sandbox.cpython-39.pyc │ ├── ssl_support.cpython-39.pyc │ ├── unicode_utils.cpython-39.pyc │ ├── version.cpython-39.pyc │ ├── wheel.cpython-39.pyc │ └── windows_support.cpython-39.pyc │ ├── _deprecation_warning.py │ ├── _distutils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── _msvccompiler.cpython-39.pyc │ │ ├── archive_util.cpython-39.pyc │ │ ├── bcppcompiler.cpython-39.pyc │ │ ├── ccompiler.cpython-39.pyc │ │ ├── cmd.cpython-39.pyc │ │ ├── config.cpython-39.pyc │ │ ├── core.cpython-39.pyc │ │ ├── cygwinccompiler.cpython-39.pyc │ │ ├── debug.cpython-39.pyc │ │ ├── dep_util.cpython-39.pyc │ │ ├── dir_util.cpython-39.pyc │ │ ├── dist.cpython-39.pyc │ │ ├── errors.cpython-39.pyc │ │ ├── extension.cpython-39.pyc │ │ ├── fancy_getopt.cpython-39.pyc │ │ ├── file_util.cpython-39.pyc │ │ ├── filelist.cpython-39.pyc │ │ ├── log.cpython-39.pyc │ │ ├── msvc9compiler.cpython-39.pyc │ │ ├── msvccompiler.cpython-39.pyc │ │ ├── py35compat.cpython-39.pyc │ │ ├── py38compat.cpython-39.pyc │ │ ├── spawn.cpython-39.pyc │ │ ├── sysconfig.cpython-39.pyc │ │ ├── text_file.cpython-39.pyc │ │ ├── unixccompiler.cpython-39.pyc │ │ ├── util.cpython-39.pyc │ │ ├── version.cpython-39.pyc │ │ └── versionpredicate.cpython-39.pyc │ ├── _msvccompiler.py │ ├── archive_util.py │ ├── bcppcompiler.py │ ├── ccompiler.py │ ├── cmd.py │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bdist.cpython-39.pyc │ │ │ ├── bdist_dumb.cpython-39.pyc │ │ │ ├── bdist_msi.cpython-39.pyc │ │ │ ├── bdist_rpm.cpython-39.pyc │ │ │ ├── bdist_wininst.cpython-39.pyc │ │ │ ├── build.cpython-39.pyc │ │ │ ├── build_clib.cpython-39.pyc │ │ │ ├── build_ext.cpython-39.pyc │ │ │ ├── build_py.cpython-39.pyc │ │ │ ├── build_scripts.cpython-39.pyc │ │ │ ├── check.cpython-39.pyc │ │ │ ├── clean.cpython-39.pyc │ │ │ ├── config.cpython-39.pyc │ │ │ ├── install.cpython-39.pyc │ │ │ ├── install_data.cpython-39.pyc │ │ │ ├── install_egg_info.cpython-39.pyc │ │ │ ├── install_headers.cpython-39.pyc │ │ │ ├── install_lib.cpython-39.pyc │ │ │ ├── install_scripts.cpython-39.pyc │ │ │ ├── py37compat.cpython-39.pyc │ │ │ ├── register.cpython-39.pyc │ │ │ ├── sdist.cpython-39.pyc │ │ │ └── upload.cpython-39.pyc │ │ ├── bdist.py │ │ ├── bdist_dumb.py │ │ ├── bdist_msi.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── py37compat.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── py35compat.py │ ├── py38compat.py │ ├── spawn.py │ ├── sysconfig.py │ ├── text_file.py │ ├── unixccompiler.py │ ├── util.py │ ├── version.py │ └── versionpredicate.py │ ├── _imp.py │ ├── _vendor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── ordered_set.cpython-39.pyc │ │ └── pyparsing.cpython-39.pyc │ ├── ordered_set.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-39.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── _compat.cpython-39.pyc │ │ │ ├── _structures.cpython-39.pyc │ │ │ ├── _typing.cpython-39.pyc │ │ │ ├── markers.cpython-39.pyc │ │ │ ├── requirements.cpython-39.pyc │ │ │ ├── specifiers.cpython-39.pyc │ │ │ ├── tags.cpython-39.pyc │ │ │ ├── utils.cpython-39.pyc │ │ │ └── version.cpython-39.pyc │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── _typing.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ └── pyparsing.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── alias.cpython-39.pyc │ │ ├── bdist_egg.cpython-39.pyc │ │ ├── bdist_rpm.cpython-39.pyc │ │ ├── build_clib.cpython-39.pyc │ │ ├── build_ext.cpython-39.pyc │ │ ├── build_py.cpython-39.pyc │ │ ├── develop.cpython-39.pyc │ │ ├── dist_info.cpython-39.pyc │ │ ├── easy_install.cpython-39.pyc │ │ ├── egg_info.cpython-39.pyc │ │ ├── install.cpython-39.pyc │ │ ├── install_egg_info.cpython-39.pyc │ │ ├── install_lib.cpython-39.pyc │ │ ├── install_scripts.cpython-39.pyc │ │ ├── py36compat.cpython-39.pyc │ │ ├── register.cpython-39.pyc │ │ ├── rotate.cpython-39.pyc │ │ ├── saveopts.cpython-39.pyc │ │ ├── sdist.cpython-39.pyc │ │ ├── setopt.cpython-39.pyc │ │ ├── test.cpython-39.pyc │ │ ├── upload.cpython-39.pyc │ │ └── upload_docs.cpython-39.pyc │ ├── alias.py │ ├── bdist_egg.py │ ├── bdist_rpm.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 │ ├── errors.py │ ├── extension.py │ ├── extern │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── pip.exe ├── pip3.9.exe ├── pip3.exe ├── python.exe └── pythonw.exe └── pyvenv.cfg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/manage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/__pycache__/manage.cpython-36.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /djangoProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoProject/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /djangoProject/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /djangoProject/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /djangoProject/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /djangoProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/settings.py -------------------------------------------------------------------------------- /djangoProject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/urls.py -------------------------------------------------------------------------------- /djangoProject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/djangoProject/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/manage.py -------------------------------------------------------------------------------- /medicine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /medicine/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /medicine/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /medicine/__pycache__/sidefunctions.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/__pycache__/sidefunctions.cpython-36.pyc -------------------------------------------------------------------------------- /medicine/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /medicine/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /medicine/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/apps.py -------------------------------------------------------------------------------- /medicine/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0001_initial.py -------------------------------------------------------------------------------- /medicine/migrations/0002_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0002_test.py -------------------------------------------------------------------------------- /medicine/migrations/0003_auto_20210331_2117.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0003_auto_20210331_2117.py -------------------------------------------------------------------------------- /medicine/migrations/0004_basicdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0004_basicdata.py -------------------------------------------------------------------------------- /medicine/migrations/0005_qshistory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0005_qshistory.py -------------------------------------------------------------------------------- /medicine/migrations/0006_qshistory_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/migrations/0006_qshistory_user.py -------------------------------------------------------------------------------- /medicine/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/models.py -------------------------------------------------------------------------------- /medicine/qs/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/.idea/.gitignore -------------------------------------------------------------------------------- /medicine/qs/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/.idea/misc.xml -------------------------------------------------------------------------------- /medicine/qs/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/.idea/modules.xml -------------------------------------------------------------------------------- /medicine/qs/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/.idea/vcs.xml -------------------------------------------------------------------------------- /medicine/qs/.idea/医药知识图谱.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/.idea/医药知识图谱.iml -------------------------------------------------------------------------------- /medicine/qs/answer_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/answer_search.py -------------------------------------------------------------------------------- /medicine/qs/build_medicalgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/build_medicalgraph.py -------------------------------------------------------------------------------- /medicine/qs/chatbot_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/chatbot_graph.py -------------------------------------------------------------------------------- /medicine/qs/data/medical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/data/medical.json -------------------------------------------------------------------------------- /medicine/qs/dict/check.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/check.txt -------------------------------------------------------------------------------- /medicine/qs/dict/deny.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/deny.txt -------------------------------------------------------------------------------- /medicine/qs/dict/department.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/department.txt -------------------------------------------------------------------------------- /medicine/qs/dict/disease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/disease.txt -------------------------------------------------------------------------------- /medicine/qs/dict/drug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/drug.txt -------------------------------------------------------------------------------- /medicine/qs/dict/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/food.txt -------------------------------------------------------------------------------- /medicine/qs/dict/producer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/producer.txt -------------------------------------------------------------------------------- /medicine/qs/dict/symptom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/dict/symptom.txt -------------------------------------------------------------------------------- /medicine/qs/pip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/prepare_data/build_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/prepare_data/build_data.py -------------------------------------------------------------------------------- /medicine/qs/prepare_data/data_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/prepare_data/data_spider.py -------------------------------------------------------------------------------- /medicine/qs/prepare_data/max_cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/prepare_data/max_cut.py -------------------------------------------------------------------------------- /medicine/qs/question_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/question_classifier.py -------------------------------------------------------------------------------- /medicine/qs/question_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/question_parser.py -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip-20.2.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip-20.2.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip-20.2.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 0) 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/setuptools-49.2.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/setuptools-49.2.1.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/setuptools-49.2.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/setuptools-49.2.1.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /medicine/qs/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/activate -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/easy_install-3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/easy_install-3.9.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/python.exe -------------------------------------------------------------------------------- /medicine/qs/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /medicine/qs/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/qs/venv/pyvenv.cfg -------------------------------------------------------------------------------- /medicine/sidefunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/sidefunctions.py -------------------------------------------------------------------------------- /medicine/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/tests.py -------------------------------------------------------------------------------- /medicine/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/medicine/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/aos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/aos.css -------------------------------------------------------------------------------- /static/css/bootstrap-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/bootstrap-datepicker.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/jquery-ui.css -------------------------------------------------------------------------------- /static/css/jquery.fancybox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/jquery.fancybox.min.css -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/mediaelementplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/mediaelementplayer.css -------------------------------------------------------------------------------- /static/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/owl.carousel.min.css -------------------------------------------------------------------------------- /static/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/css/sb-admin-2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/sb-admin-2.css -------------------------------------------------------------------------------- /static/css/sb-admin-2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/sb-admin-2.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/flaticon/backup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/backup.txt -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/Flaticon.eot -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/Flaticon.svg -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/Flaticon.ttf -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/Flaticon.woff -------------------------------------------------------------------------------- /static/fonts/flaticon/font/Flaticon.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/Flaticon.woff2 -------------------------------------------------------------------------------- /static/fonts/flaticon/font/_flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/_flaticon.css -------------------------------------------------------------------------------- /static/fonts/flaticon/font/_flaticon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/_flaticon.scss -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/flaticon.css -------------------------------------------------------------------------------- /static/fonts/flaticon/font/flaticon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/font/flaticon.html -------------------------------------------------------------------------------- /static/fonts/flaticon/license/license.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/flaticon/license/license.pdf -------------------------------------------------------------------------------- /static/fonts/icomoon/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/Read Me.txt -------------------------------------------------------------------------------- /static/fonts/icomoon/demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/demo-files/demo.css -------------------------------------------------------------------------------- /static/fonts/icomoon/demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/demo-files/demo.js -------------------------------------------------------------------------------- /static/fonts/icomoon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/demo.html -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/fonts/icomoon.eot -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/fonts/icomoon.svg -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/fonts/icomoon.ttf -------------------------------------------------------------------------------- /static/fonts/icomoon/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/fonts/icomoon.woff -------------------------------------------------------------------------------- /static/fonts/icomoon/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/selection.json -------------------------------------------------------------------------------- /static/fonts/icomoon/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/fonts/icomoon/style.css -------------------------------------------------------------------------------- /static/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/gulpfile.js -------------------------------------------------------------------------------- /static/images/depot_delivery_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/depot_delivery_1.jpg -------------------------------------------------------------------------------- /static/images/depot_hero_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/depot_hero_1.jpg -------------------------------------------------------------------------------- /static/images/depot_img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/depot_img_1.jpg -------------------------------------------------------------------------------- /static/images/depot_img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/depot_img_2.jpg -------------------------------------------------------------------------------- /static/images/depot_img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/depot_img_3.jpg -------------------------------------------------------------------------------- /static/images/medicine1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/medicine1.jpg -------------------------------------------------------------------------------- /static/images/medicine2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/medicine2.jfif -------------------------------------------------------------------------------- /static/images/medicine3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/medicine3.jpg -------------------------------------------------------------------------------- /static/images/medicine4.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/medicine4.jfif -------------------------------------------------------------------------------- /static/images/pa1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/pa1.jpg -------------------------------------------------------------------------------- /static/images/pa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/pa2.jpg -------------------------------------------------------------------------------- /static/images/pa3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/pa3.jpg -------------------------------------------------------------------------------- /static/images/person_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/person_1.jpg -------------------------------------------------------------------------------- /static/images/person_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/person_2.jpg -------------------------------------------------------------------------------- /static/images/person_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/images/person_3.jpg -------------------------------------------------------------------------------- /static/js/aos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/aos.js -------------------------------------------------------------------------------- /static/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/chart-area-demo.js -------------------------------------------------------------------------------- /static/js/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/chart-bar-demo.js -------------------------------------------------------------------------------- /static/js/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/chart-pie-demo.js -------------------------------------------------------------------------------- /static/js/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/datatables-demo.js -------------------------------------------------------------------------------- /static/js/demo/chart-area-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/demo/chart-area-demo.js -------------------------------------------------------------------------------- /static/js/demo/chart-bar-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/demo/chart-bar-demo.js -------------------------------------------------------------------------------- /static/js/demo/chart-pie-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/demo/chart-pie-demo.js -------------------------------------------------------------------------------- /static/js/demo/datatables-demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/demo/datatables-demo.js -------------------------------------------------------------------------------- /static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/js/jquery-migrate-3.0.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery-migrate-3.0.1.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery-ui.js -------------------------------------------------------------------------------- /static/js/jquery.animateNumber.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.animateNumber.min.js -------------------------------------------------------------------------------- /static/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /static/js/jquery.easing.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.easing.1.3.js -------------------------------------------------------------------------------- /static/js/jquery.fancybox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.fancybox.min.js -------------------------------------------------------------------------------- /static/js/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.magnific-popup.min.js -------------------------------------------------------------------------------- /static/js/jquery.stellar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.stellar.min.js -------------------------------------------------------------------------------- /static/js/jquery.sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.sticky.js -------------------------------------------------------------------------------- /static/js/jquery.waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/jquery.waypoints.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/mediaelement-and-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/mediaelement-and-player.min.js -------------------------------------------------------------------------------- /static/js/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/owl.carousel.min.js -------------------------------------------------------------------------------- /static/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/popper.min.js -------------------------------------------------------------------------------- /static/js/sb-admin-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/sb-admin-2.js -------------------------------------------------------------------------------- /static/js/sb-admin-2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/sb-admin-2.min.js -------------------------------------------------------------------------------- /static/js/slick.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/slick.min.js -------------------------------------------------------------------------------- /static/js/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/js/typed.js -------------------------------------------------------------------------------- /static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/package-lock.json -------------------------------------------------------------------------------- /static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/package.json -------------------------------------------------------------------------------- /static/prepros-6.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/prepros-6.config -------------------------------------------------------------------------------- /static/s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/s.jpg -------------------------------------------------------------------------------- /static/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_buttons.scss -------------------------------------------------------------------------------- /static/scss/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_cards.scss -------------------------------------------------------------------------------- /static/scss/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_charts.scss -------------------------------------------------------------------------------- /static/scss/_dropdowns.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_dropdowns.scss -------------------------------------------------------------------------------- /static/scss/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_error.scss -------------------------------------------------------------------------------- /static/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_footer.scss -------------------------------------------------------------------------------- /static/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_global.scss -------------------------------------------------------------------------------- /static/scss/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_login.scss -------------------------------------------------------------------------------- /static/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /static/scss/_navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_navs.scss -------------------------------------------------------------------------------- /static/scss/_site-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_site-base.scss -------------------------------------------------------------------------------- /static/scss/_site-blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_site-blocks.scss -------------------------------------------------------------------------------- /static/scss/_site-navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_site-navbar.scss -------------------------------------------------------------------------------- /static/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_utilities.scss -------------------------------------------------------------------------------- /static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/_variables.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_custom-forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_functions.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/_variables.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_badge.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_float.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_hover.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_text-hide.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/mixins/_visibility.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_align.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_background.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_borders.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_clearfix.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_display.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_embed.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_flex.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_float.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_overflow.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_position.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_shadows.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_sizing.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_spacing.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_text.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/utilities/_visibility.scss -------------------------------------------------------------------------------- /static/scss/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /static/scss/navs/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/navs/_global.scss -------------------------------------------------------------------------------- /static/scss/navs/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/navs/_sidebar.scss -------------------------------------------------------------------------------- /static/scss/navs/_topbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/navs/_topbar.scss -------------------------------------------------------------------------------- /static/scss/sb-admin-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/sb-admin-2.scss -------------------------------------------------------------------------------- /static/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/style.scss -------------------------------------------------------------------------------- /static/scss/utilities/_animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_animation.scss -------------------------------------------------------------------------------- /static/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_background.scss -------------------------------------------------------------------------------- /static/scss/utilities/_border.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_border.scss -------------------------------------------------------------------------------- /static/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_display.scss -------------------------------------------------------------------------------- /static/scss/utilities/_progress.scss: -------------------------------------------------------------------------------- 1 | .progress-sm { 2 | height: .5rem; 3 | } 4 | -------------------------------------------------------------------------------- /static/scss/utilities/_rotate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_rotate.scss -------------------------------------------------------------------------------- /static/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/scss/utilities/_text.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /static/vendor/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /static/vendor/chart.js/Chart.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/chart.js/Chart.bundle.js -------------------------------------------------------------------------------- /static/vendor/chart.js/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/chart.js/Chart.bundle.min.js -------------------------------------------------------------------------------- /static/vendor/chart.js/Chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/chart.js/Chart.js -------------------------------------------------------------------------------- /static/vendor/chart.js/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/chart.js/Chart.min.js -------------------------------------------------------------------------------- /static/vendor/datatables/dataTables.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/datatables/dataTables.bootstrap4.css -------------------------------------------------------------------------------- /static/vendor/datatables/dataTables.bootstrap4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/datatables/dataTables.bootstrap4.js -------------------------------------------------------------------------------- /static/vendor/datatables/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/datatables/jquery.dataTables.js -------------------------------------------------------------------------------- /static/vendor/datatables/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/datatables/jquery.dataTables.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/LICENSE.txt -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/attribution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/attribution.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/all.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/all.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/brands.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/brands.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/fontawesome.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/regular.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/regular.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/solid.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/solid.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/v4-shims.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/js/v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/js/v4-shims.min.js -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_animated.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_core.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_icons.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_larger.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_list.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_mixins.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_shims.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_stacked.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/_variables.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/brands.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/regular.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/solid.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/less/v4-shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/less/v4-shims.less -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/metadata/icons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/metadata/icons.yml -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/metadata/shims.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/metadata/shims.yml -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/package.json -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_animated.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_core.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_icons.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_larger.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_list.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_mixins.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_shims.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_stacked.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/_variables.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/brands.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/regular.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/solid.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/scss/v4-shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/scss/v4-shims.scss -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/sprites/brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/sprites/brands.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/sprites/regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/sprites/regular.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/sprites/solid.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/adn.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/aws.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/aws.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/bity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/bity.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/btc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/btc.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/css3.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/dev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/dev.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/dhl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/dhl.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/digg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/digg.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/ebay.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/ebay.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/edge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/edge.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/ello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/ello.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/etsy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/etsy.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/fly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/fly.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/gg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/gg.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/git.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/grav.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/grav.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/gulp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/gulp.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/hips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/hips.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/hive.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/imdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/imdb.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/java.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/jira.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/js.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/less.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/line.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/lyft.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/lyft.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/mdb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/mdb.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/mix.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/modx.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/neos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/neos.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/node.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/node.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/npm.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/ns8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/ns8.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/osi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/osi.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/php.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/qq.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/qq.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/rev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/rev.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/rust.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/sass.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/sith.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/sith.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/suse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/suse.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/uber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/uber.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/ups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/ups.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/usb.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/usps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/usps.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/vine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/vine.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/vk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/vk.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/vnv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/vnv.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/waze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/waze.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/wix.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/wix.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/wodu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/wodu.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/xbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/xbox.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/xing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/xing.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/yarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/yarn.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/brands/yelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/brands/yelp.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/eye.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/gem.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/hdd.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/map.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/meh.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/regular/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/regular/sun.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ad.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/angry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/angry.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ankh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ankh.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/at.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/atlas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/atlas.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/atom.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/award.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/award.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/baby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/baby.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bacon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bacon.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bahai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bahai.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ban.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bars.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bath.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bed.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/beer.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bell.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bible.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bible.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/blind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/blind.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/blog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/blog.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bold.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bolt.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bomb.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bone.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bong.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bong.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/book.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/box.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/boxes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/boxes.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/brain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/brain.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/broom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/broom.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/brush.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bug.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/burn.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/bus.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/car.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cat.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/chair.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/chair.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/check.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/chess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/chess.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/child.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/child.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/city.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/city.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/clock.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/clone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/clone.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cloud.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/code.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cog.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cogs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cogs.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/coins.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/copy.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/couch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/couch.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/crop.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cross.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/crow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/crow.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/crown.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cube.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cubes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cubes.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/cut.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/deaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/deaf.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dice.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dice.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dizzy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dizzy.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dna.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dna.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dog.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dolly.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dolly.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/dove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/dove.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/drum.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/drum.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/edit.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/egg.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/eject.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/eject.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/eye.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/fan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/fan.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/fax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/fax.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/file.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/fill.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/film.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/fire.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/fish.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/fish.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/flag.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/flask.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/font.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/frog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/frog.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/frown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/frown.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/gavel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/gavel.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/gem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/gem.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ghost.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/gift.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/gifts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/gifts.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/globe.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/grin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/grin.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/hamsa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/hamsa.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/hands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/hands.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/hdd.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/heart.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/hippo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/hippo.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/home.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/horse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/horse.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/hotel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/hotel.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/icons.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/igloo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/igloo.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/image.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/inbox.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/info.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/jedi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/jedi.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/joint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/joint.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/kaaba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/kaaba.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/key.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/kiss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/kiss.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/laugh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/laugh.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/leaf.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/lemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/lemon.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/link.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/list.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/lock.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/lungs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/lungs.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/magic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/magic.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/male.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/map.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/mars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/mars.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/mask.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/medal.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/meh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/meh.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/minus.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/moon.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/mouse.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/music.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/om.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/otter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/otter.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/pager.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/pager.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/paste.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/paste.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/pause.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/paw.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/peace.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/pen.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/phone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/phone.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/pills.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/pills.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/plane.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/play.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/plug.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/plus.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/poll.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/poll.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/poo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/poo.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/poop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/poop.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/pray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/pray.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/print.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/quran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/quran.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/redo.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/reply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/reply.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ring.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ring.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/road.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/road.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/robot.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/route.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/route.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/rss.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ruler.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/save.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/share.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/ship.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sign.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sink.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/skull.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/slash.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/smile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/smile.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/smog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/smog.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sms.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/soap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/soap.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/socks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/socks.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sort.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/spa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/spa.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/stamp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/stamp.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/star.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/stop.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/store.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sun.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/sync.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/table.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tag.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tags.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tags.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tape.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tasks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tasks.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/taxi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/taxi.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/teeth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/teeth.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tenge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tenge.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/th.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/times.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tint.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tired.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tired.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tools.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tools.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tooth.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/torah.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/torah.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/train.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tram.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/trash.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tree.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/truck.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/truck.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tty.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/tv.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/undo.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/user.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/users.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/venus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/venus.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/vest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/vest.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/vial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/vial.svg -------------------------------------------------------------------------------- /static/vendor/fontawesome-free/svgs/solid/vials.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/fontawesome-free/svgs/solid/vials.svg -------------------------------------------------------------------------------- /static/vendor/jquery-easing/jquery.easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery-easing/jquery.easing.js -------------------------------------------------------------------------------- /static/vendor/jquery-easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery-easing/jquery.easing.min.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /static/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/static/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/passage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/passage.html -------------------------------------------------------------------------------- /templates/passageindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/passageindex.html -------------------------------------------------------------------------------- /templates/qs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/qs.html -------------------------------------------------------------------------------- /templates/recommend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/recommend.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/searchresult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/searchresult.html -------------------------------------------------------------------------------- /templates/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/show.html -------------------------------------------------------------------------------- /templates/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/templates/single.html -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/distutils-precedence.pth -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-21.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_internal/cli/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_internal/main.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.12.05" 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.1' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (1, 0, 2) 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/toml/tz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/toml/tz.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.4" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/_vendor/vendor.txt -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pip/py.typed -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-56.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-56.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/_imp.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/errors.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/installer.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/py34compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/py34compat.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/activate -------------------------------------------------------------------------------- /venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.9.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/pip3.9.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhChessOvO/ZeLanChao_KGQA/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------